/**
* Template Name: Arsha
* Template URL: https://bootstrapmade.com/arsha-free-bootstrap-html-template-corporate/
* Updated: Feb 22 2025 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
    --default-font:
        "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
        "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
        "Noto Color Emoji";
    --heading-font: "Jost", sans-serif;
    --nav-font: "Poppins", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --background-color: #ffffff; /* Background color for the entire website, including individual sections */
    --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #37517e; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #47b2e4; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
    --tg-body-font-family: "Inter", sans-serif;
    --tg-heading-font-family: "Outfit", sans-serif;
    --tg-icon-font-family: "Font Awesome 5 Free";
    --tg-body-font-size: 15px;
    --tg-body-line-height: 1.5;
    --tg-heading-line-height: 1.2;
    --tg-body-color: #3e4073;
    --tg-heading-color: #14176c;
    --tg-theme-primary: #83276e;
    --tg-theme-primary-light: rgba(131, 39, 110, 0.5);
    --tg-theme-secondary: #5d224e;
    --tg-color-dark-blue: #5d224e;
    --tg-color-yellow-light: #fef6e6;
    --tg-color-yellow-light-2: #fffbf3;
    --tg-color-yellow-light-3: #f5eacd;
    --tg-color-yellow-light-4: #fde3b0;
    --tg-color-white-default: #ffffff;
    --tg-color-gray-1: #e6eeff;
    --tg-color-gray-2: #b8b9da;
    --tg-color-gray-3: #ecf6fa;
    --tg-color-gray-4: #818298;
    --tg-color-gray-5: #e2e3f1;
    --tg-color-gray-6: #f7f7f8;
    --tg-color-dark: #1c1a4a;
    --tg-color-black-1: #06042e;
    --tg-color-black-2: #161439;
    --tg-border-1: #cfdde2;
    --tg-border-2: #e6e7f3;
    --tg-border-3: #c5c6e4;
    --tg-border-4: #dbe3eb;
    --tg-border-5: #9597c8;
    --tg-border-6: #dadbec;
    --tg-border-7: #e9e9f0;
    --tg-border-8: #e08b00;
    --tg-border-9: #d0d6e1;
    --tg-fw-extra-bold: 800;
    --tg-fw-bold: 700;
    --tg-fw-semi-bold: 600;
    --tg-fw-medium: 500;
    --tg-fw-regular: 400;
    --tg-fw-light: 300;
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
    --nav-color: #ffffff; /* The default color of the main navmenu links */
    --nav-hover-color: #47b2e4; /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #47b2e4; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
    --background-color: #f5f6f8;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #37517e;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #4668a2;
    --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
    display: none;
    background: #df1529;
    color: #ffffff;
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .sent-message {
    display: none;
    color: #ffffff;
    background: #059652;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .loading {
    display: none;
    background: var(--tg-color-dark-blue);
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
}

.php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid var(--accent-color);
    border-top-color: var(--surface-color);
    animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    background-color: var(--contrast-color);
    padding: 15px 0;
    transition: all 0.5s;
    z-index: 997;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 18px;
}

.header .logo {
    line-height: 1;
}

.header .logo img {
    max-height: 60px;
    margin-right: 8px;
}

.header .logo h1 {
    font-size: 30px;
    margin: 0;
    font-weight: 500;
    color: var(--heading-color);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-size: 14px;
    padding: 8px 25px;
    margin: 0 0 0 30px;
    border-radius: 50px;
    transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
    color: var(--contrast-color);
    background: color-mix(in srgb, var(--accent-color), transparent 15%);
}
.header .p_repo {
    text-align: right;
}
.header .p_repo h3 {
    color: var(--tg-theme-primary);
    margin-bottom: 0;
    font-size: 24px;
}
.header .p_repo p {
    color: var(--tg-body-color);
    margin-bottom: 0;
    font-size: 14px;
}
@media (max-width: 1600px) {
    .header .logo img {
        max-height: 56px;
    }
}
@media (max-width: 1199px) {
    .header .p_repo h3 {
        font-size: 22px;
    }
    .header .logo img {
        max-height: 52px;
    }
}
@media (max-width: 991px) {
    .header {
        padding: 12px 0;
    }
    .header .p_repo h3 {
        font-size: 21px;
    }
    .header .logo img {
        max-height: 46px;
    }
}
@media (max-width: 767px) {
    .header {
        padding: 10px 0;
    }
}
@media (max-width: 1200px) {
    .header .btn-getstarted {
        order: 2;
        margin: 0 15px 0 0;
        padding: 6px 15px;
    }

    .header .navmenu {
        order: 3;
    }
}

/* Index Page Header
------------------------------*/
.index-page .header {
    --background-color: rgba(255, 255, 255, 0);
    --heading-color: #ffffff;
    --nav-color: #ffffff;
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
    --background-color: rgba(40, 58, 90, 0.9);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }

    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navmenu li {
        position: relative;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-color);
        padding: 18px 15px;
        font-size: 15px;
        font-family: var(--nav-font);
        font-weight: 400;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }

    .navmenu li:last-child a {
        padding-right: 0;
    }

    .navmenu li:hover > a,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-hover-color);
    }

    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--nav-dropdown-background-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu .dropdown ul li {
        min-width: 200px;
    }

    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: var(--nav-dropdown-color);
    }

    .navmenu .dropdown ul a i {
        font-size: 12px;
    }

    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover > a {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .dropdown:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden;
    }

    .navmenu .dropdown .dropdown:hover > ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible;
    }

    .navmenu .megamenu {
        position: static;
    }

    .navmenu .megamenu ul {
        margin: 0;
        padding: 10px;
        background: var(--nav-dropdown-background-color);
        box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
        position: absolute;
        top: 130%;
        left: 0;
        right: 0;
        visibility: hidden;
        opacity: 0;
        display: flex;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
    }

    .navmenu .megamenu ul li {
        flex: 1;
    }

    .navmenu .megamenu ul li a,
    .navmenu .megamenu ul li:hover > a {
        padding: 10px 20px;
        font-size: 15px;
        color: var(--nav-dropdown-color);
    }

    .navmenu .megamenu ul li a:hover,
    .navmenu .megamenu ul li .active,
    .navmenu .megamenu ul li .active:hover {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .megamenu:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navmenu .dd-box-shadow {
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-mobile-background-color);
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-dropdown-color);
        padding: 10px 20px;
        font-family: var(--nav-font);
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: color-mix(
            in srgb,
            var(--accent-color),
            transparent 90%
        );
    }

    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        background-color: var(--accent-color);
        color: var(--contrast-color);
    }

    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        transform: rotate(180deg);
    }

    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: var(--nav-dropdown-background-color);
        border: 1px solid
            color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: none;
        transition: all 0.5s ease-in-out;
    }

    .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }

    .navmenu .dropdown > .dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
    }

    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, 0.8);
        transition: 0.3s;
    }

    .mobile-nav-active .navmenu > ul {
        display: block;
    }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
    background-color: var(--tg-theme-primary);
    font-size: 14px;
    padding: 30px 0;
    position: relative;
}

.footer .footer-newsletter {
    background-color: color-mix(in srgb, var(--heading-color), transparent 95%);
    padding: 50px 0;
}

.footer .footer-newsletter h4 {
    font-size: 24px;
    color: var(--contrast-color);
}

.footer .footer-newsletter .newsletter-form {
    margin-top: 30px;
    margin-bottom: 15px;
    padding: 6px 8px;
    position: relative;
    background-color: color-mix(
        in srgb,
        var(--background-color),
        transparent 50%
    );
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    transition: 0.3s;
    border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form:focus-within {
    border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type="email"] {
    border: 0;
    padding: 4px;
    width: 100%;
    background-color: color-mix(
        in srgb,
        var(--background-color),
        transparent 50%
    );
    color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type="email"]:focus-visible {
    outline: none;
}

.footer .footer-newsletter .newsletter-form input[type="submit"] {
    border: 0;
    font-size: 16px;
    padding: 0 20px;
    margin: -7px -8px -7px 0;
    background: var(--accent-color);
    color: var(--contrast-color);
    transition: 0.3s;
    border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form input[type="submit"]:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .footer-top {
    padding-top: 50px;
}

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-right: 10px;
    transition: 0.3s;
}
.footer .social-links a:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.footer h4 {
    font-size: 24px;
    font-weight: bold;
    position: relative;
    color: var(--contrast-color);
}
.footer p {
    color: var(--contrast-color);
}
.footer .footer-links p {
    margin-bottom: 0;
}
.footer .footer-links p a {
    color: var(--contrast-color);
}
.footer .footer-links p a:hover {
    text-decoration: underline;
}
.footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-links ul i {
    margin-right: 3px;
    font-size: 12px;
    line-height: 0;
    color: var(--accent-color);
}

.footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.footer .footer-links ul li:first-child {
    padding-top: 0;
}

.footer .footer-links ul a {
    display: inline-block;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    line-height: 1;
}

.footer .footer-links ul a:hover {
    color: var(--accent-color);
}
.footer .footer-about a {
    margin-bottom: 20px;
}
.about_sherni {
    margin-top: 20px;
}
.about_sherni a img {
    margin-bottom: 20px;
}
.footer .footer-about a img {
    filter: brightness(0) invert(1);
}
.footer .footer-contact p {
    margin-bottom: 5px;
}
.footer .footer-contact p:last-child {
    margin-bottom: 0;
}
.footer .copyright {
    padding-top: 25px;
    padding-bottom: 25px;
    border-top: 1px solid
        color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
    margin-bottom: 0;
}

.footer .credits {
    margin-top: 6px;
    font-size: 13px;
}

@media (max-width: 1600px) {
    .footer h4 {
        font-size: 23px;
    }
}
@media (max-width: 1199px) {
    .footer h4 {
        font-size: 22px;
    }
}
@media (max-width: 991px) {
    .footer h4 {
        font-size: 21px;
    }
}
@media (max-width: 767px) {
    .footer h4 {
        font-size: 20px;
    }
}
@media (max-width: 575px) {
    .footer {
        padding: 20px 0;
    }
    .footer h4 {
        font-size: 18px;
    }
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: var(--background-color);
    transition: all 0.6s ease-out;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #ffffff;
    border-color: var(--tg-theme-primary-light) transparent
        var(--tg-theme-primary-light) transparent;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: -15px;
    z-index: 99999;
    background-color: var(--tg-theme-primary);
    width: 44px;
    height: 44px;
    border-radius: 50px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 24px;
    color: var(--contrast-color);
    line-height: 0;
}

.scroll-top:hover {
    background-color: var(--tg-theme-secondary);
    color: var(--contrast-color);
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
    bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    background-color: var(--tg-body-color);
    padding: 20px 0;
    position: relative;
}

.page-title h1 {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    color: var(--contrast-color);
}

.page-title .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0 0 10px 0;
    margin: 0;
    font-size: 14px;
}

.page-title .breadcrumbs ol li + li {
    padding-left: 10px;
}
.page-title .breadcrumbs ol li.current {
    color: var(--contrast-color);
}
.page-title .breadcrumbs ol li + li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    color: var(--contrast-color);
}
.page-title .breadcrumbs ol li a {
    color: var(--contrast-color);
}
/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 88px;
    overflow: clip;
}

@media (max-width: 1199px) {
    section,
    .section {
        padding: 40px 0;
        scroll-margin-top: 0;
    }
}

@media (max-width: 991px) {
    section,
    .section {
        padding: 30px 0;
        scroll-margin-top: 0;
    }
}
@media (max-width: 767px) {
    section,
    .section {
        padding: 20px 0;
        scroll-margin-top: 0;
    }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    text-align: center;
    padding-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    text-transform: uppercase;
    position: relative;
}

.section-title h2:before {
    content: "";
    position: absolute;
    display: block;
    width: 160px;
    height: 1px;
    background: color-mix(in srgb, var(--default-color), transparent 60%);
    left: 0;
    right: 0;
    bottom: 1px;
    margin: auto;
}

.section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.section-title p {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    width: 100%;
    min-height: 80vh;
    position: relative;
    padding: 120px 0 60px 0;
    display: flex;
    align-items: center;
}

.hero h1 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
}

.hero p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin: 5px 0 30px 0;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 600;
}

.hero .btn-get-started {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px 12px 28px;
    border-radius: 50px;
    transition: 0.5s;
}

.hero .btn-get-started:hover {
    color: var(--contrast-color);
    background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero .btn-watch-video {
    font-size: 16px;
    transition: 0.5s;
    margin-left: 25px;
    color: var(--default-color);
    font-weight: 600;
}

.hero .btn-watch-video i {
    color: var(--contrast-color);
    font-size: 32px;
    transition: 0.3s;
    line-height: 0;
    margin-right: 8px;
}

.hero .btn-watch-video:hover {
    color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
    color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero .animated {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 640px) {
    .hero h1 {
        font-size: 28px;
        line-height: 36px;
    }

    .hero p {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }

    .hero .btn-get-started,
    .hero .btn-watch-video {
        font-size: 13px;
    }
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
    padding: 12px 0;
}

.clients .swiper {
    padding: 10px 0;
}

.clients .swiper-wrapper {
    height: auto;
}

.clients .swiper-slide img {
    transition: 0.3s;
    padding: 0 10px;
}

.clients .swiper-slide img:hover {
    transform: scale(1.1);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about ul {
    list-style: none;
    padding: 0;
}

.about ul li {
    padding-bottom: 5px;
    display: flex;
    align-items: center;
}

.about ul i {
    font-size: 20px;
    padding-right: 4px;
    color: var(--accent-color);
}

.about .read-more {
    color: var(--accent-color);
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 8px 28px;
    border-radius: 5px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--accent-color);
}

.about .read-more i {
    font-size: 18px;
    margin-left: 5px;
    line-height: 0;
    transition: 0.3s;
}

.about .read-more:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.about .read-more:hover i {
    transform: translate(5px, 0);
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us {
    padding: 30px 0;
}

.why-us .content h3 {
    font-weight: 400;
    font-size: 34px;
}

.why-us .content p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.why-us .faq-container .faq-item {
    background-color: var(--surface-color);
    position: relative;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.why-us .faq-container .faq-item:last-child {
    margin-bottom: 0;
}

.why-us .faq-container .faq-item h3 {
    font-weight: 500;
    font-size: 17px;
    line-height: 24px;
    margin: 0 30px 0 0;
    transition: 0.3s;
    cursor: pointer;
}

.why-us .faq-container .faq-item h3 span {
    color: var(--accent-color);
    padding-right: 5px;
    font-weight: 600;
}

.why-us .faq-container .faq-item h3:hover {
    color: var(--accent-color);
}

.why-us .faq-container .faq-item .faq-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: 0.3s ease-in-out;
    visibility: hidden;
    opacity: 0;
}

.why-us .faq-container .faq-item .faq-content p {
    margin-bottom: 0;
    overflow: hidden;
}

.why-us .faq-container .faq-item .faq-icon {
    position: absolute;
    top: 22px;
    left: 20px;
    font-size: 22px;
    line-height: 0;
    transition: 0.3s;
    color: var(--accent-color);
}

.why-us .faq-container .faq-item .faq-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 16px;
    line-height: 0;
    transition: 0.3s;
    cursor: pointer;
}

.why-us .faq-container .faq-item .faq-toggle:hover {
    color: var(--accent-color);
}

.why-us .faq-container .faq-active h3 {
    color: var(--accent-color);
}

.why-us .faq-container .faq-active .faq-content {
    grid-template-rows: 1fr;
    visibility: visible;
    opacity: 1;
    padding-top: 10px;
}

.why-us .faq-container .faq-active .faq-toggle {
    transform: rotate(90deg);
    color: var(--accent-color);
}

.why-us .why-us-img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-us .why-us-img img {
    max-height: 70%;
}

/*--------------------------------------------------------------
# Skills Section
--------------------------------------------------------------*/
.skills .content h3 {
    font-size: 2rem;
    font-weight: 700;
}

.skills .content p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.skills .content p:last-child {
    margin-bottom: 0;
}

.skills .content ul {
    list-style: none;
    padding: 0;
}

.skills .content ul li {
    padding-bottom: 10px;
}

.skills .progress {
    height: 60px;
    display: block;
    background: none;
    border-radius: 0;
}

.skills .progress .skill {
    color: var(--default-color);
    padding: 0;
    margin: 0 0 6px 0;
    text-transform: uppercase;
    display: block;
    font-weight: 600;
    font-family: var(--heading-font);
}

.skills .progress .skill .val {
    float: right;
    font-style: normal;
}

.skills .progress-bar-wrap {
    background: color-mix(in srgb, var(--heading-color), transparent 90%);
    height: 10px;
}

.skills .progress-bar {
    width: 1px;
    height: 10px;
    transition: 0.9s;
    background-color: var(--heading-color);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
    background-color: var(--surface-color);
    box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
    padding: 50px 30px;
    transition: all ease-in-out 0.4s;
    height: 100%;
}

.services .service-item .icon {
    margin-bottom: 10px;
}

.services .service-item .icon i {
    color: var(--accent-color);
    font-size: 36px;
    transition: 0.3s;
}

.services .service-item h4 {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 20px;
}

.services .service-item h4 a {
    color: var(--heading-color);
    transition: ease-in-out 0.3s;
}

.services .service-item p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.services .service-item:hover {
    transform: translateY(-10px);
}

.services .service-item:hover h4 a {
    color: var(--accent-color);
}

/*--------------------------------------------------------------
# Work Process Section
--------------------------------------------------------------*/
.work-process .steps-item {
    background: var(--surface-color);
    border-radius: 20px;
    height: 100%;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 5px 20px
        color-mix(in srgb, var(--default-color), transparent 92%);
}

.work-process .steps-item .steps-image {
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}

.work-process .steps-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px
        color-mix(in srgb, var(--accent-color), transparent 85%);
}

.work-process .steps-item:hover .steps-number {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.work-process .steps-item:hover .steps-image img {
    transform: scale(1.1);
}

.work-process .steps-image {
    position: relative;
    height: 280px;
}

.work-process .steps-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.work-process .steps-content {
    position: relative;
    padding: 40px 30px 30px;
}

.work-process .steps-content .steps-number {
    position: absolute;
    left: 30px;
    top: -30px;
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 50%;
    font-family: var(--heading-font);
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.work-process .steps-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.work-process .steps-content p {
    font-size: 15px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 25px;
}

.work-process .steps-features .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.work-process .steps-features .feature-item:last-child {
    margin-bottom: 0;
}

.work-process .steps-features .feature-item i {
    color: var(--accent-color);
    font-size: 18px;
    margin-right: 10px;
}

.work-process .steps-features .feature-item span {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 15%);
}

@media (max-width: 1199px) {
    .work-process .steps-image {
        height: 240px;
    }

    .work-process .steps-content {
        padding: 35px 25px 25px;
    }

    .work-process .steps-content h3 {
        font-size: 22px;
    }
}

@media (max-width: 991px) {
    .work-process .steps-item {
        margin-bottom: 30px;
    }

    .work-process .steps-image {
        height: 220px;
    }

    .work-process .steps-content {
        padding: 30px 20px 20px;
    }

    .work-process .steps-content .steps-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
        left: 25px;
        top: -25px;
    }

    .work-process .steps-content h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .work-process .steps-content p {
        font-size: 14px;
        margin-bottom: 20px;
    }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
    padding: 120px 0;
    position: relative;
    clip-path: inset(0);
}

.call-to-action img {
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.call-to-action:before {
    content: "";
    background: color-mix(in srgb, var(--background-color), transparent 35%);
    position: absolute;
    inset: 0;
    z-index: 2;
}

.call-to-action .container {
    position: relative;
    z-index: 3;
}

.call-to-action h3 {
    color: var(--default-color);
    font-size: 28px;
    font-weight: 700;
}

.call-to-action p {
    color: var(--default-color);
}

.call-to-action .cta-btn {
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    border: 2px solid var(--contrast-color);
    color: var(--contrast-color);
}

.call-to-action .cta-btn:hover {
    background: var(--accent-color);
    border: 2px solid var(--accent-color);
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
    padding: 0;
    margin: 0 auto 20px auto;
    list-style: none;
    text-align: center;
}

.portfolio .portfolio-filters li {
    cursor: pointer;
    display: inline-block;
    padding: 8px 20px 10px 20px;
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 5px;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    font-family: var(--heading-font);
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
    color: var(--contrast-color);
    background-color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
    margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
    margin-right: 0;
}

@media (max-width: 575px) {
    .portfolio .portfolio-filters li {
        font-size: 14px;
        margin: 0 0 10px 0;
    }
}

.portfolio .portfolio-item {
    position: relative;
    overflow: hidden;
}

.portfolio .portfolio-item .portfolio-info {
    opacity: 0;
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: -100%;
    z-index: 3;
    transition: all ease-in-out 0.5s;
    background: color-mix(in srgb, var(--background-color), transparent 10%);
    padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
    font-size: 18px;
    font-weight: 600;
    padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 14px;
    margin-bottom: 0;
    padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
    position: absolute;
    right: 50px;
    font-size: 24px;
    top: calc(50% - 14px);
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    transition: 0.3s;
    line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
    color: var(--accent-color);
}

.portfolio .portfolio-item .portfolio-info .details-link {
    right: 14px;
    font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
    opacity: 1;
    bottom: 0;
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
    width: 100%;
    background-color: var(--surface-color);
    position: relative;
    border-radius: 5px;
    transition: 0.5s;
    padding: 30px;
    height: 100%;
    box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);
}

@media (max-width: 468px) {
    .team .team-member {
        flex-direction: column;
        justify-content: center !important;
        align-items: center !important;
    }
}

.team .team-member .pic {
    overflow: hidden;
    width: 150px;
    border-radius: 50%;
    flex-shrink: 0;
}

.team .team-member .pic img {
    transition: ease-in-out 0.3s;
}
.team .team-member .member-info {
    position: relative;
    width: 100%;
}
.team .team-member .member-info .p_title {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    max-width: calc(100% - 150px);
}
.team .team-member .member-info h5 a {
    color: var(--tg-color-dark);
    font-size: 1.4rem !important;
}

.team .team-member .member-info .pub_info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 5px 0;
    flex-wrap: wrap;
}
.team .team-member .member-info .pub_info p {
    color: var(--tg-color-black-1);
    font-size: 14px;
    margin: 0;
    display: block;
}
.team .team-member .member-info .pub_info p i {
    margin-right: 5px;
    font-size: 14px;
    color: var(--heading-color);
}
.team .team-member .member-info .authors {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 5px;
    row-gap: 10px;
    margin-bottom: 5px !important;
}
.team .team-member .member-info .authors h5 {
    margin-bottom: 0;
    color: var(--tg-color-dark);
    font-size: 14px;
}
.team .team-member .member-info .authors .author_info {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}
.team .team-member .member-info .authors .author_info::before {
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    height: 20px;
    width: 1px;
    background-color: var(--tg-color-dark-blue);
    z-index: 1;
}
.team .team-member .member-info .authors .author_info:last-child:before {
    content: none;
}
.team .team-member .member-info .authors .author_info p {
    margin: 0;
}
.team .team-member .member-info .authors .author_info p a {
    color: var(--tg-color-dark);
    font-size: 13px;
    line-height: 1;
}
.team .team-member .member-info .authors .author_info p a:hover {
    color: var(--tg-color-dark-blue);
}
.team .team-member .member-info .authors .author_info a {
    display: block;
    line-height: 1;
}
.team .team-member .member-info .authors .author_info a img {
    height: 20px;
    width: 20px;
}
.authors-inline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
}

.authors-inline a {
    text-decoration: none;
}
.doi,
.o_status {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 5px 0;
}
.o_status {
    margin-bottom: 0;
}
.o_status h5,
.doi h5 {
    margin-bottom: 0;
    color: var(--tg-color-dark);
    font-size: 14px;
}
.o_status .status,
.status-red {
    background-color: var(--tg-border-2);
    color: var(--tg-color-dark);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 10px;
}
.doi .doi_info {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: var(--tg-color-dark);
}
.doi .doi_info span {
    display: inline-block;
    width: 15px;
    height: 15px;
    line-height: 1;
    margin-right: 5px;
}
.doi .doi_info span img {
    width: 100%;
    height: 100%;
}
.o_status .status {
    background-color: #198754;
    color: var(--contrast-color);
}
.status-red {
    background-color: #dc3545;
    color: var(--contrast-color);
}
.doi .doi_info:hover {
    text-decoration: underline;
}
.p_type {
   border: 1px solid #82266d;
  color: #82266d;
  padding: 3px 10px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
}
.access {
    position: absolute;
    right: 30px;
    top: 30px;
    background-color: var(--heading-color);
    color: var(--contrast-color);
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 12px;
}
.access i {
    margin-right: 5px;
}

.all_citations {
    position: absolute;
    right: 30px;
    bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

.scopus,
.crossref {
    display: flex;
    align-items: center;
    gap: 5px;
    border: 1px solid var(--tg-color-dark);
    padding: 3px 10px;
    border-radius: 20px;
}

.scopus p,
.crossref p {
    margin: 0;
}

.crossref p,
.crossref span,
.scopus p,
.scopus span {
    color: var(--tg-color-dark);
    font-weight: 500;
    font-size: 12px;
    line-height: 1;
}
.crossref .icon,
.scopus .icon {
    height: 20px;
    width: 20px;
    line-height: 1;
}
.crossref img,
.scopus img {
    width: 100%;
    height: 100%;
}
.team .team-member .social {
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: start;
    width: 100%;
}

@media (max-width: 468px) {
    .team .team-member .social {
        justify-content: center;
    }
}

.team .team-member .social a {
    background: color-mix(in srgb, var(--default-color), transparent 94%);
    transition: ease-in-out 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    width: 36px;
    height: 36px;
}

.team .team-member .social a i {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-size: 16px;
    margin: 0 2px;
}

.team .team-member .social a:hover {
    background: var(--accent-color);
}

.team .team-member .social a:hover i {
    color: var(--contrast-color);
}

.team .team-member .social a + a {
    margin-left: 8px;
}
@media (max-width: 1600px) {
    .team .team-member {
        padding: 25px;
    }
    .access {
        right: 25px;
        top: 25px;
    }
    .all_citations {
        right: 25px;
        bottom: 25px;
    }
}
@media (max-width: 1199px) {
    .team .team-member {
        padding: 20px;
    }
    .team .team-member h4 {
        font-size: 19px;
    }

    .access {
        right: 20px;
        top: 20px;
    }
    .all_citations {
        right: 20px;
        bottom: 20px;
    }
    .team .team-member .member-info .authors .author_info a img {
        height: 19px;
        width: 19px;
    }
    .doi,
    .o_status,
    .team .team-member .member-info .authors {
        gap: 15px;
    }
    .team .team-member .member-info .authors .author_info::before {
        right: -10px;
        height: 18px;
    }
}
@media (max-width: 991px) {
    .team .team-member h4 {
        font-size: 18px;
    }
    .crossref i,
    .crossref p,
    .crossref span,
    .scopus i,
    .scopus p,
    .scopus span {
        font-size: 13px;
    }
    .team .team-member .member-info .authors .author_info a img {
        height: 18px;
        width: 18px;
    }
    .doi,
    .o_status,
    .team .team-member .member-info .authors {
        gap: 12px;
    }
    .team .team-member .member-info .authors .author_info::before {
        right: -8px;
        height: 17px;
    }
}
@media (max-width: 767px) {
    .team .team-member {
        padding: 15px;
    }
    .team .team-member .member-info .p_title {
        max-width: 100%;
        width: 100%;
        gap: 5px;
    }
    .team .team-member .member-info .p_title h3 {
        width: 100%;
    }
    .team .team-member .member-info .p_title h3 a {
        display: block;
        width: 100%;
    }
    .access {
        display: inline-block;
        position: static;
        font-size: 10px;
        margin-top: 10px;
    }
    .all_citations {
        position: static;
        justify-content: center;
        border-top: 1px solid var(--tg-border-5);
        margin-top: 10px;
        padding-top: 10px;
        gap: 10px;
    }
    .team .team-member h4 {
        font-size: 17px;
    }
    .o_status h5,
    .doi h5,
    .team .team-member .member-info .authors h5 {
        font-size: 13px;
    }
    .team .team-member .member-info .authors .author_info a img {
        height: 17px;
        width: 17px;
    }
    .team .team-member .member-info .authors .author_info::before {
        right: -6px;
        height: 16px;
    }
}
@media (max-width: 575px) {
    .team .team-member h4 {
        font-size: 16px;
    }
    .doi,
    .o_status {
        gap: 10px;
    }

    .team .team-member .member-info .authors {
        gap: 10px;
        row-gap: 5px;
    }
    .o_status h5,
    .doi h5,
    .crossref i,
    .crossref p,
    .crossref span,
    .scopus i,
    .scopus p,
    .scopus span {
        font-size: 12px;
    }
    .team .team-member .member-info .authors .author_info p a {
        font-size: 12px;
    }

    .team .team-member .member-info .authors h5 {
        font-size: 12px;
    }
    .team .team-member .member-info .authors .author_info a img {
        height: 16px;
        width: 16px;
    }
    .team .team-member .member-info .p_title {
        row-gap: 0px;
        column-gap: 10px;
    }
    .team .team-member .member-info .pub_info {
        row-gap: 5px;
    }
}
/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
    background-color: var(--surface-color);
    box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--background-color);
    padding: 60px 40px;
    height: 100%;
    border-radius: 5px;
}

.pricing h3 {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 20px;
}

.pricing h4 {
    color: var(--accent-color);
    font-size: 48px;
    font-weight: 400;
    font-family: var(--heading-font);
    margin-bottom: 0;
}

.pricing h4 sup {
    font-size: 28px;
}

.pricing h4 span {
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 18px;
}

.pricing ul {
    padding: 20px 0;
    list-style: none;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    text-align: left;
    line-height: 20px;
}

.pricing ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.pricing ul i {
    color: #059652;
    font-size: 24px;
    padding-right: 3px;
}

.pricing ul .na {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na i {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na span {
    text-decoration: line-through;
}

.pricing .buy-btn {
    color: var(--accent-color);
    display: inline-block;
    padding: 8px 35px 10px 35px;
    border-radius: 50px;
    transition: none;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--heading-font);
    transition: 0.3s;
    border: 1px solid var(--accent-color);
}

.pricing .buy-btn:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.pricing .featured {
    border-top-color: var(--accent-color);
}

.pricing .featured .buy-btn {
    background: var(--accent-color);
    color: var(--contrast-color);
}

@media (max-width: 992px) {
    .pricing .box {
        max-width: 60%;
        margin: 0 auto 30px auto;
    }
}

@media (max-width: 767px) {
    .pricing .box {
        max-width: 80%;
        margin: 0 auto 30px auto;
    }
}

@media (max-width: 420px) {
    .pricing .box {
        max-width: 100%;
        margin: 0 auto 30px auto;
    }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .section-header {
    margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
    overflow: hidden;
}

.testimonials .testimonial-item {
    text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
    width: 120px;
    border-radius: 50%;
    border: 4px solid var(--background-color);
    margin: 0 auto;
}

.testimonials .testimonial-item h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin: 0 0 15px 0;
}

.testimonials .testimonial-item .stars {
    margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
    color: #ffc107;
    margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: color-mix(in srgb, var(--accent-color), transparent 50%);
    font-size: 26px;
    line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
    transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 auto 15px auto;
}

.testimonials .swiper-wrapper {
    height: auto;
}

.testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    opacity: 1;
    background-color: color-mix(in srgb, var(--default-color), transparent 85%);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
}

@media (min-width: 992px) {
    .testimonials .testimonial-item p {
        width: 80%;
    }
}

/*--------------------------------------------------------------
# Faq 2 Section
--------------------------------------------------------------*/
.faq-2 .faq-container {
    margin-top: 15px;
}

.faq-2 .faq-container .faq-item {
    background-color: var(--surface-color);
    position: relative;
    padding: 20px;
    margin-bottom: 20px;
    overflow: hidden;
}

.faq-2 .faq-container .faq-item:last-child {
    margin-bottom: 0;
}

.faq-2 .faq-container .faq-item h3 {
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    margin: 0 30px 0 32px;
    transition: 0.3s;
    cursor: pointer;
}

.faq-2 .faq-container .faq-item h3 span {
    color: var(--accent-color);
    padding-right: 5px;
}

.faq-2 .faq-container .faq-item h3:hover {
    color: var(--accent-color);
}

.faq-2 .faq-container .faq-item .faq-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: 0.3s ease-in-out;
    visibility: hidden;
    opacity: 0;
}

.faq-2 .faq-container .faq-item .faq-content p {
    margin-bottom: 0;
    overflow: hidden;
}

.faq-2 .faq-container .faq-item .faq-icon {
    position: absolute;
    top: 22px;
    left: 20px;
    font-size: 20px;
    line-height: 0;
    transition: 0.3s;
    color: var(--accent-color);
}

.faq-2 .faq-container .faq-item .faq-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 16px;
    line-height: 0;
    transition: 0.3s;
    cursor: pointer;
}

.faq-2 .faq-container .faq-item .faq-toggle:hover {
    color: var(--accent-color);
}

.faq-2 .faq-container .faq-active h3 {
    color: var(--accent-color);
}

.faq-2 .faq-container .faq-active .faq-content {
    grid-template-rows: 1fr;
    visibility: visible;
    opacity: 1;
    padding-top: 10px;
}

.faq-2 .faq-container .faq-active .faq-toggle {
    transform: rotate(90deg);
    color: var(--accent-color);
}

/*--------------------------------------------------------------
# Subscribe Section
--------------------------------------------------------------*/
.subscribe .container {
    padding: 80px 80px 0 80px;
    background: color-mix(in srgb, var(--default-color), transparent 96%);
    border-radius: 15px;
}

@media (max-width: 992px) {
    .subscribe .container {
        padding: 60px 60px 0 60px;
    }
}

@media (max-width: 575px) {
    .subscribe .container {
        padding: 25px 15px 0 15px;
        border-radius: 0;
    }
}

.subscribe .cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.subscribe .cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.subscribe .cta-form .form-control {
    height: 50px;
    border-radius: 25px 0 0 25px;
    border: 1px solid var(--accent-color);
    padding-left: 20px;
}

.subscribe .cta-form .form-control:focus {
    box-shadow: none;
    border-color: var(--accent-color);
}

.subscribe .cta-form .btn {
    height: 50px;
    border-radius: 0 25px 25px 0;
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 0 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.subscribe .cta-form .btn:hover {
    background-color: color-mix(in srgb, var(--accent-color), black 10%);
    border-color: color-mix(in srgb, var(--accent-color), black 10%);
}

@media (max-width: 575px) {
    .subscribe .cta-form .btn {
        padding: 0 15px;
    }
}

@media (max-width: 991px) {
    .subscribe .cta-content {
        text-align: center;
        margin-bottom: 2rem;
    }

    .subscribe .cta-image {
        text-align: center;
    }
}

/*--------------------------------------------------------------
# Recent Blog Postst Section
--------------------------------------------------------------*/
.recent-blog-post .post-item {
    background: var(--surface-color);
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.recent-blog-postst .post-item .post-img img {
    transition: 0.5s;
}

.recent-blog-postst .post-item .post-date {
    position: absolute;
    right: 0;
    bottom: 0;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    text-transform: uppercase;
    font-size: 13px;
    padding: 6px 12px;
    font-weight: 500;
}

.recent-blog-postst .post-item .post-content {
    padding: 30px;
}

.recent-blog-postst .post-item .post-title {
    color: var(--heading-color);
    font-size: 20px;
    font-weight: 700;
    transition: 0.3s;
    margin-bottom: 15px;
}

.recent-blog-postst .post-item .meta i {
    font-size: 16px;
    color: var(--accent-color);
}

.recent-blog-postst .post-item .meta span {
    font-size: 15px;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.recent-blog-postst .post-item hr {
    color: color-mix(in srgb, var(--default-color), transparent 80%);
    margin: 20px 0;
}

.recent-blog-postst .post-item .readmore {
    display: flex;
    align-items: center;
    font-weight: 600;
    line-height: 1;
    transition: 0.3s;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.recent-blog-postst .post-item .readmore i {
    line-height: 0;
    margin-left: 6px;
    font-size: 16px;
}

.recent-blog-postst .post-item:hover .post-title,
.recent-blog-postst .post-item:hover .readmore {
    color: var(--accent-color);
}

.recent-blog-postst .post-item:hover .post-img img {
    transform: scale(1.1);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-wrap {
    background-color: var(--surface-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    border-top: 3px solid var(--accent-color);
    border-bottom: 3px solid var(--accent-color);
    padding: 30px;
    height: 100%;
}

@media (max-width: 575px) {
    .contact .info-wrap {
        padding: 20px;
    }
}

.contact .info-item {
    margin-bottom: 40px;
}

.contact .info-item i {
    font-size: 20px;
    color: var(--accent-color);
    background: color-mix(in srgb, var(--accent-color), transparent 92%);
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    margin-right: 15px;
}

.contact .info-item h3 {
    padding: 0;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.contact .info-item p {
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
}

.contact .info-item:hover i {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.contact .php-email-form {
    background-color: var(--surface-color);
    height: 100%;
    padding: 30px;
    border-top: 3px solid var(--accent-color);
    border-bottom: 3px solid var(--accent-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px) {
    .contact .php-email-form {
        padding: 20px;
    }
}

.contact .php-email-form input[type="text"],
.contact .php-email-form input[type="email"],
.contact .php-email-form textarea {
    font-size: 14px;
    padding: 10px 15px;
    box-shadow: none;
    border-radius: 0;
    color: var(--default-color);
    background-color: color-mix(
        in srgb,
        var(--background-color),
        transparent 50%
    );
    border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type="text"]:focus,
.contact .php-email-form input[type="email"]:focus,
.contact .php-email-form textarea:focus {
    border-color: var(--accent-color);
}

.contact .php-email-form input[type="text"]::placeholder,
.contact .php-email-form input[type="email"]::placeholder,
.contact .php-email-form textarea::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type="submit"] {
    color: var(--contrast-color);
    background: var(--accent-color);
    border: 0;
    padding: 10px 30px;
    transition: 0.4s;
    border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 25%);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
    width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.portfolio-details
    .portfolio-details-slider
    .swiper-pagination
    .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: color-mix(in srgb, var(--default-color), transparent 85%);
    opacity: 1;
}

.portfolio-details
    .portfolio-details-slider
    .swiper-pagination
    .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
    background-color: var(--surface-color);
    padding: 30px;
    box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid
        color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
    margin-top: 10px;
}

.portfolio-details .portfolio-description {
    padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
    padding: 0;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
    background-color: var(--surface-color);
    padding: 10px 30px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    margin-bottom: 20px;
}

.service-details .services-list a {
    display: block;
    line-height: 1;
    padding: 8px 0 8px 15px;
    border-left: 3px solid
        color-mix(in srgb, var(--default-color), transparent 70%);
    margin: 20px 0;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    transition: 0.3s;
}

.service-details .services-list a.active {
    color: var(--heading-color);
    font-weight: 700;
    border-color: var(--accent-color);
}

.service-details .services-list a:hover {
    border-color: var(--accent-color);
}

.service-details .services-img {
    margin-bottom: 20px;
}

.service-details h3 {
    font-size: 26px;
    font-weight: 700;
}

.service-details h4 {
    font-size: 20px;
    font-weight: 700;
}

.service-details p {
    font-size: 15px;
}

.service-details ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.service-details ul li {
    padding: 5px 0;
    display: flex;
    align-items: center;
}

.service-details ul i {
    font-size: 20px;
    margin-right: 8px;
    color: var(--accent-color);
}

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts article {
    background-color: var(--surface-color);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    padding: 30px;
    height: 100%;
}
.blog-posts h2 {
    font-size: 30px;
    font-weight: 700;
    color: var(--tg-heading-color);
}
.blog-posts .post-img {
    max-height: 440px;
    margin: -30px -30px 0 -30px;
    overflow: hidden;
}

.blog-posts .title {
    font-size: 24px;
    font-weight: 700;
    padding: 0;
    margin: 30px 0;
}

.blog-posts .title a {
    color: var(--heading-color);
    transition: 0.3s;
}

.blog-posts .title a:hover {
    color: var(--accent-color);
}

.blog-posts .meta-top {
    margin-top: 20px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-posts .meta-top ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
    padding: 0;
    margin: 0;
}

.blog-posts .meta-top ul li + li {
    padding-left: 20px;
}

.blog-posts .meta-top i {
    font-size: 16px;
    margin-right: 8px;
    line-height: 0;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-posts .meta-top a {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-size: 14px;
    display: inline-block;
    line-height: 1;
}

.blog-posts .content {
    margin-top: 20px;
}

.blog-posts .content .read-more {
    text-align: right;
}

.blog-posts .content .read-more a {
    background: var(--accent-color);
    color: var(--contrast-color);
    display: inline-block;
    padding: 8px 30px;
    transition: 0.3s;
    font-size: 14px;
    border-radius: 4px;
}

.blog-posts .content .read-more a:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Pagination 2 Section
--------------------------------------------------------------*/
.pagination-2 {
    padding-top: 0;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.pagination-2 ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
}

.pagination-2 li {
    margin: 0 5px;
    transition: 0.3s;
}

.pagination-2 li a {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    padding: 7px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    background-color: var(--tg-theme-primary);
}

.pagination-2 li a.active,
.pagination-2 li a:hover {
    background-color: var(--tg-theme-primary);
    color: var(--contrast-color);
}

.pagination-2 li a.active a,
.pagination-2 li a:hover a {
    color: var(--contrast-color);
}
@media (max-width: 1199px) {
    .pagination-2 li a {
        padding: 6px 12px;
    }
}
@media (max-width: 991px) {
    .pagination-2 li a {
        padding: 5px 10px;
    }
}
@media (max-width: 767px) {
    .pagination-2 li a {
        padding: 4px 10px;
    }
}
@media (max-width: 575px) {
    .pagination-2 li a {
        padding: 3px 10px;
    }
}
/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
    max-width: 1000px;
    margin: 0 auto;
}

.blog-details .hero-img {
    position: relative;
    width: 100%;
    height: 500px;
    margin: 0 auto 3rem;
    border-radius: 16px;
    overflow: hidden;
}

.blog-details .hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-details .hero-img .meta-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.blog-details .hero-img .meta-overlay .meta-categories .category {
    color: var(--contrast-color);
    background-color: var(--accent-color);
    padding: 0.4rem 1rem;
    border-radius: 30px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-details .hero-img .meta-overlay .meta-categories .category:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.blog-details .hero-img .meta-overlay .meta-categories .divider {
    color: var(--contrast-color);
    margin: 0 0.75rem;
}

.blog-details .hero-img .meta-overlay .meta-categories .reading-time {
    color: var(--contrast-color);
    font-size: 0.9rem;
}

.blog-details .hero-img .meta-overlay .meta-categories .reading-time i {
    margin-right: 0.3rem;
}
@media (max-width: 768px) {
    .blog-details .hero-img {
        height: 350px;
        margin-top: -30px;
        margin-bottom: 2rem;
    }
}

.blog-details .article-content {
    padding: 0 1rem;
}

.blog-details .article-content .content-header {
    margin-bottom: 3rem;
}

.blog-details .article-content .content-header .title {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    font-weight: 700;
    color: var(--heading-color);
}

@media (max-width: 768px) {
    .blog-details .article-content .content-header .title {
        font-size: 2rem;
    }
}

.blog-details .article-content .content-header .author-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid
        color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .article-content .content-header .author-info .author-details {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.blog-details
    .article-content
    .content-header
    .author-info
    .author-details
    .author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.blog-details
    .article-content
    .content-header
    .author-info
    .author-details
    .info
    h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--heading-color);
}

.blog-details
    .article-content
    .content-header
    .author-info
    .author-details
    .info
    .role {
    font-size: 0.9rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.blog-details .article-content .content-header .author-info .post-meta {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 0.95rem;
}

.blog-details .article-content .content-header .author-info .post-meta i {
    margin-right: 0.3rem;
}

.blog-details
    .article-content
    .content-header
    .author-info
    .post-meta
    .divider {
    margin: 0 0.75rem;
}

.blog-details .article-content .content {
    font-size: 1.15rem;
    line-height: 1.8;
    color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.blog-details .article-content .content .lead {
    font-size: 1.3rem;
    color: var(--heading-color);
    margin-bottom: 2rem;
    font-weight: 500;
}

.blog-details .article-content .content h2 {
    font-size: 2rem;
    color: var(--heading-color);
    margin: 3rem 0 1.5rem;
}

.blog-details .article-content .content p {
    margin-bottom: 1.5rem;
}

.blog-details .article-content .content ul {
    margin-bottom: 2rem;
    padding-left: 1.2rem;
}

.blog-details .article-content .content ul li {
    margin-bottom: 0.75rem;
    position: relative;
}

.blog-details .article-content .content .content-image {
    margin: 2.5rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.blog-details .article-content .content .content-image.right-aligned {
    float: right;
    max-width: 450px;
    margin: 1rem 0 2rem 2rem;
}

@media (max-width: 768px) {
    .blog-details .article-content .content .content-image.right-aligned {
        float: none;
        max-width: 100%;
        margin: 2rem 0;
    }
}

.blog-details .article-content .content .content-image img {
    width: 100%;
    height: auto;
}

.blog-details .article-content .content .content-image figcaption {
    padding: 1rem;
    text-align: center;
    font-size: 0.9rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    background-color: color-mix(in srgb, var(--surface-color), transparent 50%);
}

.blog-details .article-content .content .highlight-box {
    background: color-mix(in srgb, var(--accent-color), transparent 95%);
    border-radius: 12px;
    padding: 2rem;
    margin: 2.5rem 0;
}

.blog-details .article-content .content .highlight-box h3 {
    color: var(--heading-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.blog-details .article-content .content .highlight-box .trend-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-details .article-content .content .highlight-box .trend-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.blog-details .article-content .content .highlight-box .trend-list li i {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-right: 1rem;
}

.blog-details .article-content .content .highlight-box .trend-list li span {
    color: var(--heading-color);
    font-weight: 500;
}

.blog-details .article-content .content .content-grid {
    margin: 3rem 0;
}

.blog-details .article-content .content .content-grid .info-card {
    background: var(--surface-color);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.blog-details .article-content .content .content-grid .info-card:hover {
    transform: translateY(-5px);
}

.blog-details .article-content .content .content-grid .info-card i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.blog-details .article-content .content .content-grid .info-card h4 {
    color: var(--heading-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.blog-details .article-content .content .content-grid .info-card p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

.blog-details .article-content .content blockquote {
    position: relative;
    margin: 3rem 0;
    padding: 2rem 3rem;
    background: var(--surface-color);
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
}
.blog-details .article-content .content blockquote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 8rem;
    color: color-mix(in srgb, var(--accent-color), transparent 85%);
    font-family: serif;
    line-height: 1;
}

.blog-details .article-content .content blockquote p {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--heading-color);
    margin: 0 0 1rem;
    position: relative;
}

.blog-details .article-content .content blockquote cite {
    font-style: normal;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 0.95rem;
    display: block;
}

.blog-details .article-content .meta-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid
        color-mix(in srgb, var(--default-color), transparent 90%);
    display: grid;
    gap: 2rem;
}

.blog-details .article-content .meta-bottom h4 {
    color: var(--heading-color);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.blog-details .article-content .meta-bottom .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.blog-details .article-content .meta-bottom .tags .tag {
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-details .article-content .meta-bottom .tags .tag:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.blog-details .article-content .meta-bottom .social-links {
    display: flex;
    gap: 1rem;
}

.blog-details .article-content .meta-bottom .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.blog-details .article-content .meta-bottom .social-links a:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
    transform: translateY(-2px);
}

.blog-details .article-content .meta-bottom .social-links a i {
    font-size: 1.2rem;
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
    padding: 20px 0;
}

.blog-comments .comments-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid
        color-mix(in srgb, var(--default-color), transparent 92%);
}

.blog-comments .comments-header .title {
    color: var(--heading-color);
    font-size: 32px;
    font-weight: 700;
    font-family: var(--heading-font);
    margin: 0;
}

.blog-comments .comments-header .comments-stats {
    background: color-mix(in srgb, var(--default-color), transparent 95%);
    padding: 8px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-comments .comments-header .comments-stats .count {
    font-size: 18px;
    font-weight: 700;
}

.blog-comments .comments-header .comments-stats .label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-comments .comments-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.blog-comments .comment-thread {
    position: relative;
}

.blog-comments .comment-thread:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 25px;
    top: 80px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(
        to bottom,
        color-mix(in srgb, var(--accent-color), transparent 40%),
        color-mix(in srgb, var(--accent-color), transparent 90%)
    );
    z-index: 0;
}

@media (min-width: 768px) {
    .blog-comments .comment-thread:not(:last-child)::after {
        left: 35px;
    }
}

.blog-comments .comment-box {
    position: relative;
    transition: all 0.3s ease;
}

.blog-comments .comment-box.reply {
    margin-left: 50px;
    margin-top: 25px;
}

@media (min-width: 768px) {
    .blog-comments .comment-box.reply {
        margin-left: 70px;
    }
}

.blog-comments .comment-wrapper {
    display: flex;
    gap: 20px;
    position: relative;
}

.blog-comments .avatar-wrapper {
    position: relative;
    flex-shrink: 0;
}

.blog-comments .avatar-wrapper img {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    object-fit: cover;
    border: 3px solid var(--surface-color);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

@media (min-width: 768px) {
    .blog-comments .avatar-wrapper img {
        width: 70px;
        height: 70px;
    }
}

.blog-comments .avatar-wrapper img:hover {
    transform: scale(1.05);
}

.blog-comments .avatar-wrapper .status-indicator {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #4caf50;
    border: 2px solid var(--surface-color);
    z-index: 1;
}

.blog-comments .comment-content {
    flex: 1;
    background-color: var(--surface-color);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.blog-comments .comment-content:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.blog-comments .comment-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.blog-comments .comment-header .user-info h4 {
    color: var(--heading-color);
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 5px;
}

.blog-comments .comment-header .user-info .time-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-comments .comment-header .user-info .time-badge i {
    font-size: 13px;
}

.blog-comments .comment-header .engagement .likes {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
    border-radius: 20px;
    color: var(--accent-color);
    font-size: 14px;
    font-weight: 500;
}

.blog-comments .comment-header .engagement .likes i {
    font-size: 13px;
}

.blog-comments .comment-body p {
    color: var(--default-color);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-comments .comment-actions {
    display: flex;
    gap: 15px;
}

.blog-comments .comment-actions .action-btn {
    background: none;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-comments .comment-actions .action-btn i {
    font-size: 15px;
    transition: all 0.3s ease;
}

.blog-comments .comment-actions .action-btn:hover {
    color: var(--accent-color);
    background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.blog-comments .comment-actions .action-btn:hover.like-btn i {
    transform: scale(1.2);
    color: #ff4b6e;
}

.blog-comments .comment-actions .action-btn:hover.reply-btn i {
    transform: translateX(-3px);
}

.blog-comments .comment-actions .action-btn:hover.share-btn i {
    transform: translateY(-2px);
}

.blog-comments .comment-actions .action-btn.like-btn.active {
    color: #ff4b6e;
}

.blog-comments .replies-container {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

@media (max-width: 768px) {
    .blog-comments .comments-header {
        margin-bottom: 30px;
    }

    .blog-comments .comments-header .title {
        font-size: 24px;
    }

    .blog-comments .comments-header .comments-stats {
        padding: 6px 15px;
    }

    .blog-comments .comments-header .comments-stats .count {
        font-size: 20px;
    }

    .blog-comments .comments-header .comments-stats .label {
        font-size: 12px;
    }

    .blog-comments .comment-content {
        padding: 20px;
    }

    .blog-comments .comment-header .user-info h4 {
        font-size: 16px;
    }

    .blog-comments .comment-header .user-info .time-badge {
        font-size: 13px;
    }

    .blog-comments .comment-body p {
        font-size: 14px;
    }

    .blog-comments .comment-actions .action-btn {
        padding: 6px 12px;
        font-size: 13px;
    }
}

/*--------------------------------------------------------------
# Blog Comment Form Section
--------------------------------------------------------------*/
.blog-comment-form {
    max-width: 900px;
    margin: 30px auto 0 auto;
    padding-top: 10px;
}

.blog-comment-form form {
    padding: 2rem;
    background-color: var(--surface-color);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-comment-form .form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.blog-comment-form .form-header h3 {
    color: var(--heading-color);
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.blog-comment-form .form-header p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 0.9375rem;
}

.blog-comment-form .input-group {
    margin-bottom: 1rem;
    position: relative;
}

.blog-comment-form .input-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--heading-color);
    font-weight: 500;
    font-size: 0.875rem;
}

.blog-comment-form .input-group input,
.blog-comment-form .input-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-radius: 8px;
    background-color: var(--surface-color);
    color: var(--default-color);
    font-size: 0.9375rem;
    transition: all 0.2s ease;
}

.blog-comment-form .input-group input::placeholder,
.blog-comment-form .input-group textarea::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.blog-comment-form .input-group input:hover,
.blog-comment-form .input-group textarea:hover {
    border-color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.blog-comment-form .input-group input:focus,
.blog-comment-form .input-group textarea:focus {
    outline: none;
    border-color: var(--tg-theme-primary);
    box-shadow: 0 0 0 4px
        color-mix(in srgb, var(--tg-theme-primary), transparent 90%);
}

.blog-comment-form .input-group input:invalid:not(:placeholder-shown),
.blog-comment-form .input-group textarea:invalid:not(:placeholder-shown) {
    border-color: #dc3545;
}

.blog-comment-form
    .input-group
    input:invalid:not(:placeholder-shown)
    + .error-text,
.blog-comment-form
    .input-group
    textarea:invalid:not(:placeholder-shown)
    + .error-text {
    opacity: 1;
    transform: translateY(0);
}

.blog-comment-form .input-group textarea {
    min-height: 120px;
    resize: vertical;
}

.blog-comment-form .input-group .error-text {
    position: absolute;
    bottom: -20px;
    left: 0;
    color: #dc3545;
    font-size: 0.75rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.2s ease;
}

.blog-comment-form button[type="submit"] {
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 0.875rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-comment-form button[type="submit"]:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 15%);
    transform: translateY(-2px);
}

.blog-comment-form button[type="submit"]:active {
    transform: translateY(0);
}

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

    .blog-comment-form .form-header h3 {
        font-size: 1.5rem;
    }

    .blog-comment-form button[type="submit"] {
        width: 100%;
        padding: 0.875rem 1rem;
    }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
    /* Add your styles here */
}

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
    padding: 80px 0;
    margin: 0 auto;
}

.error-404 .error-icon {
    font-size: 5rem;
    color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-code {
    font-size: clamp(6rem, 15vw, 12rem);
    font-weight: 800;
    color: color-mix(in srgb, var(--heading-color), transparent 10%);
    font-family: var(--heading-font);
    line-height: 1;
}

.error-404 .error-title {
    font-size: 2rem;
    color: var(--heading-color);
    font-weight: 600;
}

.error-404 .error-text {
    font-size: 1.1rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    max-width: 600px;
    margin: 0 auto;
}

.error-404 .search-box {
    max-width: 500px;
    margin: 0 auto;
}

.error-404 .search-box .input-group {
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.error-404 .search-box .form-control {
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    color: var(--default-color);
    background-color: var(--surface-color);
    border-radius: 50px;
}

.error-404 .search-box .form-control:focus {
    box-shadow: none;
    border-color: var(--accent-color);
}

.error-404 .search-box .form-control::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.error-404 .search-box .search-btn {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border: none;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.error-404 .search-box .search-btn:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-action .btn-primary {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    background-color: var(--accent-color);
    border: none;
    color: var(--contrast-color);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.error-404 .error-action .btn-primary:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .error-404 {
        padding: 60px 0;
    }

    .error-404 .error-code {
        font-size: clamp(4rem, 12vw, 8rem);
    }

    .error-404 .error-title {
        font-size: 1.5rem;
    }

    .error-404 .error-text {
        font-size: 1rem;
        padding: 0 20px;
    }

    .error-404 .search-box {
        margin: 0 20px;
    }
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
    margin: 0 0 0 0;
}

.widget-title {
    color: var(--heading-color);
    font-size: 18px;
    font-weight: 600;
    padding: 0;
    margin: 0 0 15px 0;
}
.widget-title i {
    margin-right: 5px;
}
.widget-item {
    margin-bottom: 10px;
    background-color: var(--contrast-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    padding: 15px;
    border-radius: 5px;
}
.widgets-container .widget-item:last-child {
    margin-bottom: 0;
}
.search-widget form {
    padding: 3px 5px;
    position: relative;
    transition: 0.3s;
}
.search-widget form .form-group {
    margin-bottom: 5px;
}
.search-widget form .form-group > label {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding: 5px 10px;
    cursor: pointer;
    transition: 0.4s;
}
.search-widget form .form-group label:hover {
    background-color: var(--tg-border-2);
}

.search-widget form .form-group input[type="checkbox"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 1px solid var(--heading-color);
    border-radius: 2px;
    cursor: pointer;
    accent-color: var(--contrast-color);
}

.search-widget form .form-group input[type="checkbox"]:checked {
    position: relative;
    background-color: var(--heading-color);
    border-color: var(--tg-body-color);
}
.search-widget form .form-group input[type="checkbox"]:checked::after {
    content: "✓";
    color: var(--contrast-color); /* ← you control tick color here */
    font-size: 12px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.search-widget form .form-group label {
    color: var(--tg-body-color);
    font-size: 14px;
    font-weight: 500;
}
.search-widget form .form-group span {
    color: var(--contrast-color);
    display: inline-block;
    height: 25px;
    line-height: 25px;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    padding: 0px 8px;
    margin-left: auto;
    background-color: var(--tg-body-color);
    border-radius: 8px;
}
.search-widget form input[type="text"] {
    border: 0;
    padding: 4px 10px;
    border-radius: 4px;
    width: calc(100% - 40px);
    background-color: var(--background-color);
    color: var(--default-color);
}

.search-widget form input[type="text"]:focus {
    outline: none;
}

.search-widget form button i {
    line-height: 0;
}

.search-widget form:is(:focus-within) {
    border-color: var(--accent-color);
}

.recent-posts-widget .post-item {
    display: flex;
    margin-bottom: 15px;
}

.recent-posts-widget .post-item:last-child {
    margin-bottom: 0;
}

.recent-posts-widget .post-item img {
    width: 80px;
    margin-right: 15px;
}

.recent-posts-widget .post-item h4 {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
    color: var(--default-color);
    transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
    color: var(--accent-color);
}

.recent-posts-widget .post-item time {
    display: block;
    font-style: italic;
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.categories-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.categories-widget ul li {
    padding-bottom: 10px;
}

.categories-widget ul li:last-child {
    padding-bottom: 0;
}

.categories-widget ul a {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    transition: 0.3s;
}

.categories-widget ul a:hover {
    color: var(--accent-color);
}

.categories-widget ul a span {
    padding-left: 5px;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 14px;
}

.tags-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tags-widget ul li {
    display: inline-block;
}

.tags-widget ul a {
    background-color: color-mix(in srgb, var(--default-color), transparent 94%);
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    border-radius: 50px;
    font-size: 14px;
    padding: 5px 15px;
    margin: 0 6px 8px 0;
    display: inline-block;
    transition: 0.3s;
}

.tags-widget ul a:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.tags-widget ul a span {
    padding-left: 5px;
    color: color-mix(in srgb, var(--default-color), transparent 60%);
    font-size: 14px;
}

.sidebar {
    position: fixed;
    left: 0;
    top: 87px;
    max-width: 350px;
    width: 350px;
    max-height: calc(100vh - 87px);
    height: 100%;
    overflow-y: auto;
    z-index: 9;
    padding: 30px 20px;
    background-color: var(--tg-theme-primary);
    border-right: 2px solid #f1f1f1;
}
.all_repo {
    width: calc(100% - 350px);
    margin-left: auto;
    padding: 0 30px;
}

.sidebar h2 {
    color: var(--contrast-color);
    font-size: 20px;
    font-weight: 700;
}
.btn-clear-filter {
    background-color: transparent;
    color: var(--contrast-color);
    width: 100%;
    border: 1px solid var(--contrast-color);
}
.btn-clear-filter i {
    margin-right: 5px;
}
.btn-clear-filter:hover {
    background-color: var(--contrast-color);
    color: var(--tg-heading-color);
}
.form-select,
input[type="search"] {
    width: 100%;
    padding: 11px 20px;
    font-size: 16px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid var(--tg-border-1);
    transition:
        border-color 0.15s ease-in-out,
        box-shadow 0.15s ease-in-out;
    color: var(--tg-color-gray-4);
}
input[type="search"] {
    padding-left: 40px;
}
.form-select:focus,
input[type="search"]:focus {
    border-color: var(--tg-border-5);
    outline: unset;
    box-shadow: 0 0 6px 2px var(--tg-border-5);
}

.search_field {
    position: relative;
}
.search_field i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: var(--tg-color-gray-4);
}

/* Main box */
.select2-container--default .select2-selection--single {
    width: 100%;
    height: 48px;
    border-radius: 6px;
    border: 1px solid var(--tg-border-1);
    padding: 8px 40px 8px 15px;
    transition: all 0.3s ease;
}

/* Hover */
.select2-container--default .select2-selection--single:hover {
    border-color: var(--tg-border-5);
}

/* Focus */
.select2-container--default.select2-container--focus
    .select2-selection--single {
    border-color: var(--tg-border-5);
    outline: unset;
    box-shadow: 0 0 6px 2px var(--tg-border-5);
}

/* Text */
.select2-container--default .select2-selection__rendered {
    line-height: 30px;
    font-size: 15px;
    color: var(--heading-color);
}

/* Arrow */
.select2-container--default .select2-selection__arrow {
    height: 100%;
    right: 10px !important;
    top: 50% !important;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Dropdown */
.select2-dropdown {
    border-radius: 12px;
    border: 1px solid #9597c8;
    box-shadow: 0 10px 25px rgba(70, 104, 162, 0.5);
}

/* Dropdown options */
.select2-results__option {
    padding: 10px 15px;
    font-size: 14px;
}
.select2-results__options {
    max-height: none !important;
    overflow-y: visible !important;
}
/* Hover option */
.select2-results__option--highlighted {
    background-color: #3e4073 !important;
    color: var(--contrast-color) !important;
}
.select2-results__option .dropdown-header {
    color: var(--tg-color-dark);
    font-size: 18px;
    padding: 10px 5px;
}
.select2-results__option {
    font-size: 16px;
    color: var(--tg-body-color) !important;
}
.select2-results__option--highlighted {
    background-color: transparent !important;
}
/* Now CSS applies only to this dropdown */
.my-special-dropdown
    .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: var(--tg-theme-primary) !important;
    color: var(--contrast-color) !important;
}
.dropdown-value {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--heading-color);
    padding: 6px 8px;
    margin-top: 10px;
    border-radius: 6px;
    transition: background 0.2s ease;
}

.select2-results__option--highlighted .dropdown-value {
    background-color: var(--tg-theme-primary);
    color: var(--contrast-color);
}

.r_shown {
    color: var(--tg-color-gray-4);
    font-size: 14px;
    font-weight: 500;
}

@media (max-width: 1600px) {
    .sidebar {
        max-width: 320px;
        width: 320px;
    }
    .form-select,
    input[type="search"] {
        padding: 10px 19px;
        font-size: 15px;
    }
    input[type="search"] {
        padding-left: 40px;
    }
    .select2-container--default .select2-selection--single {
        height: 44.5px;
        font-size: 15px;
    }
    .all_repo {
        width: calc(100% - 320px);
        padding: 0 25px;
    }
    .blog-posts h2 {
        font-size: 28px;
    }
}
@media (max-width: 1199px) {
    .sidebar {
        max-width: 300px;
        width: 300px;
    }
    .form-select,
    input[type="search"] {
        padding: 9px 18px;
        font-size: 14px;
    }
    input[type="search"] {
        padding-left: 40px;
    }
    .select2-container--default .select2-selection--single {
        height: 41px;
        font-size: 14px;
    }
    .select2-container--default
        .select2-selection--single
        .select2-selection__rendered {
        line-height: 1.5;
    }
    .all_repo {
        width: calc(100% - 300px);
        padding: 0 20px;
    }
    .blog-posts h2 {
        font-size: 26px;
    }
}
@media (max-width: 991px) {
    .sidebar {
        max-width: 280px;
        width: 280px;
    }
    .all_repo {
        width: calc(100% - 280px);
        padding: 0 20px;
    }
    .blog-posts h2 {
        font-size: 24px;
    }
    .form-select,
    input[type="search"] {
        padding: 8px 17px;
    }
    input[type="search"] {
        padding-left: 40px;
    }
    .select2-container--default .select2-selection--single {
        height: 39px;
        font-size: 14px;
    }
}
@media (max-width: 767px) {
    .sidebar {
        position: static;
        top: unset;
        left: unset;
        max-width: 100%;
        width: 100%;
        height: auto;
        overflow: hidden;
        border-right: none;
        padding: 20px 10px;
        transition:
            max-height 0.25s,
            opacity 0.25s visibility 0.25s;
    }
    .widgets-container {
        height: 0;
        padding: 0;
        width: 0;
        opacity: 0;
        /* visibility: hidden; */
        max-height: 0;
        transition:
            max-height 0.25s,
            opacity 0.25s visibility 0.25s;
    }
    .widgets-container.get_height {
        visibility: visible;
        padding: 15px;
        width: 100%;
        opacity: 1;
        max-height: 1000px;
        height: 100%;
    }
    .sidebar.sidebar_get_height {
        max-height: 1000px;
        height: auto;
    }
    .sidebar h2 {
        font-size: 16px;
        margin-bottom: 0;
    }
    .sidebar h2 i {
        background-color: var(--contrast-color);
        color: var(--tg-border-8);
        padding: 5px 10px;
        cursor: pointer;
        margin-right: 10px;
        margin-bottom: 0;
        font-size: 16px;
    }
    .sidebar h2 i:hover {
        background-color: var(--contrast-color);
        color: var(--tg-theme-primary);
    }
    .all_repo {
        width: 100%;
        padding: 0 20px;
    }
    .blog-posts h2 {
        font-size: 24px;
    }
    .p_repo {
        display: none;
    }
    .form-select,
    input[type="search"] {
        padding: 7px 16px;
    }
    input[type="search"] {
        padding-left: 40px;
    }
    .select2-container--default .select2-selection--single {
        height: 37px;
    }
    .select2-container--default
        .select2-selection--single
        .select2-selection__rendered {
        line-height: 1.2;
    }
}
@media (max-width: 575px) {
    .form-select,
    input[type="search"] {
        padding: 6px 14px;
    }
    input[type="search"] {
        padding-left: 30px;
    }
    .search_field i {
        font-size: 14px;
        left: 10px;
    }
    .select2-container--default .select2-selection--single {
        height: 34px;
        padding: 8px 20px 8px 10px;
    }
    .select2-container .select2-selection--single .select2-selection__rendered {
        padding-right: 0;
        padding-left: 0;
    }
    .select2-container--default
        .select2-selection--single
        .select2-selection__rendered {
        line-height: 1;
        font-size: 14px;
    }
}
.view-all-btn {
    display: block;
    margin-top: 10px;
    background-color: var(--tg-theme-primary);
    border: 1px solid transparent;
    color: var(--contrast-color);
    padding: 6px 12px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
    margin: 0 auto;
    transition: all 0.25s;
}

.view-all-btn:hover {
    background-color: transparent;
    color: var(--tg-theme-primary);
    border-color: var(--tg-theme-primary);
}

/* Sherni Scholar Page */
.sherni_scholar {
    height: 630px;
}
.sherni_scholar .container {
    height: 100%;
}
.s_scholar {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.s_schr_logo {
    margin-bottom: 30px;
    height: 74px;
    overflow: hidden;
}
.s_schr_logo img {
    width: 100%;
    height: 100%;
}
.search_scholar {
    width: 800px;
}
.search_scholar form .form-group {
    position: relative;
    display: flex;
    align-items: center;
}
.search_scholar form .form-group input {
    width: 100%;
    padding: 17px 25px;
    padding-right: 80px;
    border-radius: 30px;
    font-size: 18px;
    line-height: 1;
    border-color: var(--tg-theme-primary);
    color: var(--tg-theme-primary);
}

.form-select,
#searchInput {
    border-color: var(--tg-theme-primary);
    color: var(--tg-theme-primary);
}

.search_scholar form .form-group input::placeholder {
    color: var(--tg-theme-primary);
}
.search_scholar form .form-group input:focus {
    border-color: var(--tg-border-7);
}
.search_scholar form .form-group button {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    width: 70px;
    border: none;
    background-color: var(--tg-theme-primary);
    color: var(--contrast-color);
    border-radius: 0 30px 30px 0;
}
.search_scholar form .form-group button i {
    font-size: 24px;
}
.search_scholar form .form-group button:hover,
.search_scholar form .form-group button:focus {
    background-color: var(--tg-border-5);
}
.search_scholar form .form-group input:focus a {
    background-color: var(--tg-border-5);
}

@media (max-width: 1600px) {
    .s_schr_logo {
        height: 70px;
    }
    .search_scholar {
        width: 750px;
    }
    .search_scholar form .form-group input {
        padding: 16px 25px;
        padding-right: 80px;
        font-size: 17px;
    }
    .search_scholar form .form-group button {
        height: 57px;
        width: 70px;
    }
    .search_scholar form .form-group button i {
        font-size: 23px;
    }
}
@media (max-width: 1199px) {
    .crossref {
        padding: 8px 4px !important;
    }

    .sherni_scholar {
        height: calc(100vh - 25px);
    }
    .s_schr_logo {
        margin-bottom: 25px;
        height: 65px;
    }
    .search_scholar {
        width: 700px;
    }
    .search_scholar form .form-group input {
        padding: 15px 25px;
        padding-right: 80px;
        font-size: 16px;
    }
    .search_scholar form .form-group button i {
        font-size: 23px;
    }
    .search_scholar form .form-group button {
        height: 54px;
        width: 70px;
    }
    .search_scholar form .form-group button i {
        font-size: 22px;
    }
}
@media (max-width: 991px) {
    .sherni_scholar {
        height: calc(100vh - 25px);
    }
    .s_schr_logo {
        margin-bottom: 20px;
        height: 60px;
    }
    .search_scholar {
        width: 600px;
    }
    .search_scholar form .form-group input {
        padding: 13px 25px;
        padding-right: 75px;
        font-size: 15px;
    }
    .search_scholar form .form-group button {
        height: 48px;
        width: 66px;
    }
    .search_scholar form .form-group button i {
        font-size: 20px;
    }
}
@media (max-width: 767px) {
    .sherni_scholar {
        height: calc(100vh - 25px);
    }
    .s_schr_logo {
        height: 55px;
    }
    .search_scholar {
        width: 500px;
    }
    .search_scholar form .form-group input {
        padding: 12px 25px;
        padding-right: 75px;
    }
    .search_scholar form .form-group button {
        height: 46px;
        width: 64px;
    }
    .search_scholar form .form-group button i {
        font-size: 18px;
    }
}
@media (max-width: 575px) {
    .s_schr_logo {
        height: 50px;
    }
    .search_scholar {
        width: 100%;
    }
    .search_scholar form .form-group input {
        padding: 11px 20px;
        padding-right: 60px;
        border-radius: 20px;
    }
    .search_scholar form .form-group button {
        height: 44px;
        width: 50px;
        border-radius: 0 20px 20px 0;
    }
    .search_scholar form .form-group button i {
        font-size: 18px;
    }
}

@media (max-width: 350px) {
    .logo2 img {
        display: none;
    }
}
/* Sherni Scholar Page */

/* ── Access Banner ──────────────────────────────────── */
.access-banner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 24px;
    font-size: 0.84rem;
    border-bottom: 1px solid transparent;
    border-radius: 8px;
}

.access-banner.allowed {
    background: linear-gradient(90deg, #f5e9f5 0%, #fdf5fd 100%);
    border-color: #c97dc9;
    color: #4a0a4a;
}

.access-banner.denied {
    background: linear-gradient(90deg, #fdf0f8 0%, #fff5fc 100%);
    border-color: #d4a0c8;
    color: #4a0a4a;
}

.access-banner .ab-icon {
    font-size: 1.35rem;
    flex-shrink: 0;
    color: #6b0f6b;
}

.access-banner .ab-member {
    font-weight: 700;
    color: #6b0f6b;
}

.access-banner .ab-sep {
    opacity: 0.4;
    margin: 0 4px;
}

.access-banner .ab-caption {
    opacity: 0.9;
    color: #3a083a;
}

.access-banner .ab-ip {
    margin-left: auto;
    font-size: 0.76rem;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 20px;
    white-space: nowrap;
}

.access-banner.allowed .ab-ip {
    background: #6b0f6b;
    color: #fff;
}

.access-banner.denied .ab-ip {
    background: #83276e;
    color: #fff;
}

/* ── Active Filters — SIDEBAR BADGES (above Filter Publication) ── */
#sidebarActiveFilters {
    display: none;
    margin-bottom: 10px;
    padding: 10px 12px;
    background: #faf5ff;
    border: 1px solid #e9d5ff;
    border-radius: 10px;
}

#sidebarActiveFilters.has-filters {
    display: block;
}

.saf-title {
    font-size: 0.7rem;
    font-weight: 800;
    color: #7e22ce;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 7px;
}

.saf-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.saf-clear {
    margin-top: 8px;
    font-size: 0.72rem;
    color: #7c3aed;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
}

.saf-clear:hover {
    color: #5b21b6;
}

/* ── Filter badge tag ───────────────────────────────── */
.filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border-radius: 20px;
    padding: 3px 10px 3px 8px;
    font-size: 0.73rem;
    font-weight: 600;
    line-height: 1.4;
    white-space: nowrap;
    color: #fff;
}

.filter-tag.tag-year {
    background: #6b0f6b;
}

.filter-tag.tag-type {
    background: #1e40af;
}

.filter-tag.tag-onos {
    background: #166534;
}

.filter-tag.tag-citation {
    background: #7e0202;
}

.filter-tag.tag-publisher {
    background: #7e7c02;
}

.filter-tag.tag-journal {
    background: #7e4602;
}
.filter-tag.tag-doi {
    background: #ff04d9;
}

.filter-tag .tag-x {
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1;
    opacity: 0.75;
    transition: opacity 0.15s;
    margin-left: 1px;
}

.filter-tag .tag-x:hover {
    opacity: 1;
}

/* ── Results Toolbar ────────────────────────────────── */
#resultsToolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    padding: 8px 2px;
    margin-bottom: 10px;
}

.toolbar-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.results-count {
    font-size: 0.85rem;
    color: #374151;
    font-weight: 500;
    white-space: nowrap;
}

.results-count strong {
    color: #6b0f6b;
    font-weight: 700;
}

.results-count .rc-ms {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-left: 6px;
}

/* Sort inline with results count */
.sort-inline-wrap {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.83rem;
    color: #6b7280;
    white-space: nowrap;
}

.sort-inline-wrap label {
    font-weight: 600;
    color: #374151;
    margin: 0;
}

.sort-inline-wrap select {
    padding: 4px 10px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 0.82rem;
    color: #1f2937;
    background: #fff;
    cursor: pointer;
    outline: none;
}

.sort-inline-wrap select:focus {
    border-color: #6b0f6b;
    box-shadow: 0 0 0 2px #ede9fe;
}

.per-page-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.83rem;
    color: #6b7280;
    white-space: nowrap;
}

.per-page-wrap label {
    font-weight: 600;
    color: #374151;
    margin: 0;
}

.per-page-wrap select {
    padding: 3px 8px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 0.82rem;
    color: #1f2937;
    background: #fff;
    cursor: pointer;
    outline: none;
}

.per-page-wrap select:focus {
    border-color: #6b0f6b;
    box-shadow: 0 0 0 2px #ede9fe;
}

/* ── Scrollable filter card ─────────────────────────── */
.filter-scroll-body {
    max-height: 220px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 4px;
}

.filter-scroll-body::-webkit-scrollbar {
    width: 4px;
}

.filter-scroll-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.filter-scroll-body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.4);
    border-radius: 4px;
}

/* ── Refine button ──────────────────────────────────── */
.btn-refine {
    width: 100%;
    margin-top: 10px;
    background-color: #fff;
    color: #6a0f6a;
    border: 1px solid #6a0f6a;
    border-radius: 6px;
    padding: 7px 0;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition:
        background 0.2s,
        color 0.2s;
}

.btn-refine:hover {
    background-color: #6a0f6a;
    color: #fff;
}

.btn-refine:disabled {
    background-color: rgba(255, 255, 255, 0.4);
    color: rgba(107, 15, 107, 0.5);
    cursor: not-allowed;
}
.btn-clear-filter {
    padding: 7px 0;
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1px solid #374151;
    border-radius: 5px;
    background: #f3f4f6;
    color: #374151;
    transition: all 0.2s;
}
@keyframes fsk-shimmer {
    0% {
        background-position: -400px 0;
    }
    100% {
        background-position: 400px 0;
    }
}
.Access-Badge{
    background-color: #f5e9f5;
  padding: 7px;
  border: 1px solid #81266d;
  color: #81266c;
  border-radius: 20px;
  font-weight: 600;
}
.sticky-search {
    position: sticky;
    top: 80px;
    z-index: 1000;
    background: #ffffff;
    padding: 10px 0;
}
.filter-skeleton .fsk-row {
    height: 38px;
    margin-bottom: 8px;
    border-radius: 6px;
    background: linear-gradient(
        90deg,
        var(--bs-light, #f0f0f0) 25%,
        #e8e8e8 50%,
        var(--bs-light, #f0f0f0) 75%
    );
    background-size: 400px 100%;
    animation: fsk-shimmer 1.3s infinite;
}
.btn-clear-filter:hover {
background: #C6C7C8;
  border-color: #595959;
  color: #131313;
}
/* ── Active / pending filter rows ───────────────────── */
.active-filter label {
    font-weight: 600;
    color: #fff;
}

.widget-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 8px;
    margin-top: 6px;
    display: flex;
    gap: 2px;
}

.form-group label {
    cursor: pointer;
    width: 100%;
    padding: 3px 0;
}

.filter-label {
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.85);
}

.filter-count {
    font-size: 0.78rem;
    color: rgba(0, 0, 0, 0.6);
    white-space: nowrap;
    margin-left: 6px;
}

.active-filter .filter-label {
    color: rgba(0, 0, 0, 0.6);
}

.active-filter .filter-count {
    color: rgba(0, 0, 0, 0.6);
}

/* ── ONOS badge on result card ──────────────────────── */
.badge-onos {
    display: inline-flex;
    align-items: center;
    background-color: #f5e9f5;
    color: #6b0f6b;
    border: 1px solid #c97dc9;
    border-radius: 20px;
    padding: 3px 12px;
    font-size: 0.75rem;
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.badge-onos i {
    color: #6b0f6b;
    margin-right: 4px;
}

/* ── Citation box ───────────────────────────────────── */
.crossref {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    border: 1px solid #d1c4d1;
    padding: 8px 14px;
    border-radius: 12px;
    background: #fdf5fd;
    min-width: 72px;
    text-align: center;
}

.crossref .citation-number {
    font-size: 1.4rem;
    font-weight: 800;
    color: #6b0f6b;
    line-height: 1;
}

.crossref p {
    margin: 0;
    font-size: 0.72rem;
    font-weight: 500;
    color: #83276e;
    letter-spacing: 0.02em;
}

.crossref .icon {
    height: 16px;
    width: 16px;
    line-height: 1;
    margin-bottom: 2px;
}

.crossref img {
    width: 100%;
    height: 100%;
}

/* ── Title truncation ───────────────────────────────── */
.p_title h4 {
    margin: 0;
}

.title-text {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.2s;
}

.title-text.expanded {
    display: block;
    -webkit-line-clamp: unset;
    overflow: visible;
}

.title-toggle-btn {
    background: none;
    border: none;
    color: #6b0f6b;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    padding: 2px 0;
    text-decoration: underline;
    display: none;
}

.title-toggle-btn.visible {
    display: inline-block;
}

.title-toggle-btn:hover {
    color: #4a0a4a;
}

/* ── Authors inline comma separated ────────────────── */
.authors-inline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
}

.authors-inline a {
    text-decoration: none;
}

.author-separator {
    color: #6b7280;
    margin-right: 4px;
    font-size: 0.85rem;
}

/* ── Pagination ─────────────────────────────────────── */
#pagination-2 .page-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
    padding: 20px 0 10px;
}

#pagination-2 .page-nav a,
#pagination-2 .page-nav span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 8px;
    border-radius: 8px;
    font-size: 0.84rem;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #374151;
    transition: all 0.15s;
    text-decoration: none;
}

#pagination-2 .page-nav a:hover {
    background: #6b0f6b;
    color: #fff;
    border-color: #6b0f6b;
}

#pagination-2 .page-nav a.active {
    background: #6b0f6b;
    color: #fff;
    border-color: #6b0f6b;
}

#pagination-2 .page-nav span.ellipsis {
    border: none;
    background: transparent;
    cursor: default;
    color: #9ca3af;
}

/* ── Search Button ──────────────────────────────────── */
.btn-search {
    height: 100%;
    padding: 0 22px;
    background-color: #6a0f6a;
    color: #fff;
    border: 1px solid #6a0f6a;
    border-radius: 0 6px 6px 0;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
    transition: background 0.2s;
    flex-shrink: 0;
}
.footer__top-two .footer-link-list .list-wrap li span {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin: 3px 0 0 0;
    font-weight: 700;
}
.btn-search:hover {
    background-color: #fff;
    color: #6a0f6a;
}

.btn-search:active {
    background-color: #2a052a;
}

.search-input-group {
    display: flex;
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    overflow: hidden;
}

.search-input-group .search_field {
    flex: 1;
    border: none;
    border-radius: 0;
    min-width: 0;
}

.search-input-group .search_field input {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}

/* ── Responsive toolbar ─────────────────────────────── */
@media (max-width: 767px) {
    #resultsToolbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .toolbar-left {
        gap: 10px;
        flex-direction: column;
        align-items: flex-start;
    }

    .sort-inline-wrap select {
        max-width: 180px;
    }

    .btn-search .btn-search-text {
        display: none;
    }

    .btn-search {
        padding: 0 16px;
    }
}

@media (max-width: 575px) {
    .access-banner {
        padding: 8px 12px;
        gap: 8px;
        flex-wrap: wrap;
    }

    .access-banner .ab-ip {
        margin-left: 0;
        margin-top: 4px;
    }
}
#globalLoader {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999999;
    background: rgba(11, 11, 11, 0.078);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

#globalLoader.active {
    display: flex;
}

.gl-spinner {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 4px solid #e8d5e8;
    border-top-color: #9b3a8c; /* match your theme's pink/purple */
    animation: _gl_spin 0.75s linear infinite;
    flex-shrink: 0;
}

.gl-text {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    color: #6b3fa0;
    letter-spacing: 0.3px;
}

@keyframes _gl_spin {
    to {
        transform: rotate(360deg);
    }
}
