@import url("https://fonts.googleapis.com/css2?family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&family=Noto+Serif+Tibetan:wght@100..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

:root {
    /* Backgrounds */
    --bg-main: #f9f5ee; /* warm cream, close to Tibetan wall paint */
    --bg-secondary: #efe5d6; /* muted beige for sections */
    --bg-contrast: #fffdf8; /* almost white for cards */
    --section-bg-maroon: #6f1a34;
    /* Text */
    --text-primary: #2c2c2c; /* near black for best readability */
    --text-secondary: #5a4e40; /* muted earthy brown */
    --text-tertiary: #6f7b7b; /* soft cool balance */
    --text-heading: #8b1e3f; /* Tibetan maroon / deep red */
    --text-muted: #8e8e8e; /* for helper text */
    /* Links */
    --link-color: #8b1e3f; /* strong maroon */
    --link-hover: #4a8b8b; /* elegant Tibetan turquoise */
    /* Accents / symbolic */
    --accent-gold: #c9a34e; /* gold (prosperity) */
    --accent-turquoise: #4a8b8b; /* turquoise (protection) */
    --accent-maroon: #8b1e3f; /* repeated for harmony */
    --accent-dark-blue: #384e77; /* occasional deep blue */
    /* Cards & Containers */
    --card-bg-primary: #f9f4f3; /* light warm cream */
    --card-bg-secondary: #f3ebe0; /* light beige */
    --card-bg-highlight: #ede2d0; /* highlight / active */
    /* Dividers & Borders */
    --divider-gold: #c9a34e;
    --divider-slate: #b5bfbf;
    --divider-muted: #dadada;
    /* Buttons */
    --btn-primary-bg: #8b1e3f; /* maroon */
    --btn-primary-hover: #a93d4d; /* slightly lighter maroon */
    --btn-secondary-bg: #4a8b8b; /* turquoise */
    --btn-secondary-hover: #5aa3a3;
    --btn-accent-bg: #c9a34e; /* gold */
    --btn-accent-hover: #d9b75f;
    /* Alerts & Status */
    --success: #4f8a4f;
    --success-bg: #e5f4e5;
    --warning: #c9822e;
    --warning-bg: #fff5e6;
    --error: #b93e3e;
    --error-bg: #fdeaea;
    /* Scrollbar & Other */
    --scrollbar-thumb: #6f7b7b; /* neutral so it blends */
}

/* Loader covers whole screen */
#page-loader {
    position: fixed;
    inset: 0;
/*    background: url("/images/Seal_of_Sikkim.svg") center/contain no-repeat;*/
/*    animation: breathe 1s ease-in-out infinite alternate;*/
    margin: 20%;
    z-index: 9999;
}

/* Breathing keyframes */
@keyframes breathe {
    from {
        opacity: 1;
        scale: 100%;
    }

    to {
        opacity: 0.8;
        scale: 97.5%;
    }
}

/* Page content hidden initially */
#page-content {
    opacity: 0;
    transition: opacity 0.75s ease;
}

#page-content.visible {
    opacity: 1;
}

/* For Chrome, Safari and Opera */
body::-webkit-scrollbar {
    display: none;
}

/* For Firefox */
html,
body {
    scrollbar-width: none; /* Firefox */
    scroll-behavior: smooth;
}

.custom-scroll {
    overflow-y: auto;
    scrollbar-width: thin; /* Firefox: thin scrollbar */
    scrollbar-color: transparent transparent; /* Firefox: hidden by default */
}

    /* WebKit (Chrome, Safari, Edge) */
    .custom-scroll::-webkit-scrollbar {
        width: 2px; /* thinner scrollbar (was 4px) */
    }

    .custom-scroll::-webkit-scrollbar-thumb {
        background-color: transparent; /* hidden by default */
        border-radius: 1px; /* thinner thumb */
        transition: background-color 0.2s ease;
    }

    .custom-scroll:hover::-webkit-scrollbar-thumb {
        background-color: #6f7b7b; /* show thumb on hover */
    }

    .custom-scroll::-webkit-scrollbar-track {
        background: transparent; /* invisible track */
    }

.tibeta {
    font-family: "Merriweather", sans-serif;
}

.contained {
    margin-left: auto;
    margin-right: auto;
    max-width: 1280px;
}

body {
    line-height: 1.7;
    /* font-family: "Nunito Sans", sans-serif; */
    font-family: "Roboto", sans-serif;
    -webkit-font-smoothing: antialiased;
    color: #555;
    font-size: 15px;
}

p {
    font-weight: 400;
    color: #555;
    font-size: 15px;
    line-height: 1.7;
    font-family: "Nunito Sans", sans-serif;
    font-family: "Poppins", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    color: #333;
    font-family: "Noto Serif Tibetan", sans-serif;
    /* font-family: "Merriweather", sans-serif; */
    font-weight: 800;
    /* line-height: 1.2; */
}

h1,
.h1 {
    font-size: 52px;
}

h2,
.h2 {
    font-size: 36px;
}

h3,
.h3 {
    font-size: 24px;
}

h4,
.h4 {
    font-size: 18px;
}

h5,
.h5 {
    font-size: 15px;
}

h6,
.h6 {
    font-size: 13px;
}

/* Button style */
.poppins {
    font-family: "Poppins", sans-serif;
}

.btn {
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    padding: 10px 22px;
    border-radius: 50px;
    border: 1px solid;
    position: relative;
    z-index: 1;
    transition: 0.2s ease;
}

    .btn:hover,
    .btn:active,
    .btn:focus {
        outline: 0;
        box-shadow: none !important;
    }

.btn-primary {
    background: #8b1e3f;
    color: #fff;
    border-color: #8b1e3f;
}

    .btn-primary:active,
    .btn-primary:hover,
    .btn-primary.focus,
    .btn-primary.active {
        background: #c9a34e !important;
        border-color: #c9a34e !important;
    }

.btn-outline-primary {
    background: transparent;
    color: #8b1e3f;
    border-color: #8b1e3f;
}

    .btn-outline-primary:active,
    .btn-outline-primary:hover,
    .btn-outline-primary.focus,
    .btn-outline-primary.active {
        background: #c9a34e !important;
        border-color: #c9a34e !important;
        color: #fff;
    }

body {
    background-color: #faf6f0;
    overflow-x: hidden;
}

::-moz-selection {
    background: #2ec458;
    color: #fff;
}

::selection {
    background: #2ec458;
    color: #fff;
}

/* preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

img {
    vertical-align: middle;
    border: 0;
}

a,
a:hover,
a:focus {
    text-decoration: none;
}

a,
button,
select {
    font-family: "Poppins", sans-serif;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: 0.2s ease;
}

    a:focus,
    button:focus,
    select:focus {
        outline: 0;
    }

    a:hover {
        color: #c9a34e;
    }

.slick-slide {
    outline: 0;
}

hr {
    margin: 40px 0;
}

.shadow,
.promotion,
.logo-list li,
.widget {
    box-shadow: 0px 25px 65px rgba(0, 0, 0, 0.05) !important;
}

.mark,
mark {
    padding: 0;
    background-color: transparent;
    border-bottom: 3px solid #8b1e3f;
    color: #8b1e3f;
}

.section {
    padding-top: 100px;
    padding-bottom: 100px;
}

.section-sm {
    padding-top: 80px;
    padding-bottom: 80px;
}

.section-title {
    position: relative;
    text-transform: uppercase;
    margin-bottom: 30px;
    letter-spacing: 0.06em;
}

    .section-title::before {
        position: absolute;
        left: 0;
        bottom: -8px;
        content: "";
        height: 2px;
        width: 60px;
        background-color: #8b1e3f;
    }

.bg-cover {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.border-primary {
    border-color: #ebebeb !important;
}

.circle-list {
    list-style: none;
    padding-left: 0;
}

    .circle-list li {
        padding-left: 20px;
        position: relative;
        margin-bottom: 10px;
    }

        .circle-list li:last-child {
            margin-bottom: 0;
        }

        .circle-list li::before {
            position: absolute;
            content: "";
            height: 10px;
            width: 10px;
            border: 1px solid #8b1e3f;
            left: 0;
            top: 7px;
            border-radius: 50px;
        }

/* badge */
.badge {
    border-radius: 0;
    position: absolute;
    width: 150px;
    transform: rotate(45deg);
    right: -45px;
    top: 20px;
    text-transform: uppercase;
}

.badge-primary {
    background-color: #8b1e3f;
}

/* overlay */
.overlay {
    position: relative;
}

    .overlay::before {
        position: absolute;
        content: "";
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
        background: #000;
        opacity: 0.5;
    }

.bg-primary {
    background: #8b1e3f !important;
}

.text-primary {
    color: #8b1e3f !important;
}

.text-default {
    color: #555 !important;
}

.border-default {
    border-color: #ebebeb !important;
}

.form-control:focus {
    outline: 0;
    box-shadow: none;
}

.st0 {
    fill: #8b1e3f;
}

.sidebar-home {
    margin-top: 47px;
}

@media (max-width: 991px) {
    .sidebar-home {
        margin-top: 0;
    }
}

.sidebar-inner {
    margin-top: 65px;
}

@media (max-width: 991px) {
    .sidebar-inner {
        margin-top: 0;
    }
}

:root {
    --bg-main: #f9f5ee;
    --text-primary: #2c2c2c;
    --text-secondary: #5a4e40;
    --link-color: #8b1e3f;
    --accent-gold: #c9a34e;
    --accent-turquoise: #4a8b8b;
}

body {
    background-color: var(--bg-main);
    font-family: "Roboto", sans-serif;
    color: var(--text-secondary);
    line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Noto Serif Tibetan", serif;
    color: var(--text-primary);
    font-weight: 800;
    /* line-height: 1.2; */
}

.custom-scroll {
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: transparent transparent;
}

    .custom-scroll::-webkit-scrollbar {
        width: 6px;
    }

    .custom-scroll::-webkit-scrollbar-thumb {
        background-color: transparent;
        border-radius: 4px;
        transition: background-color 0.2s ease;
    }

    .custom-scroll:hover::-webkit-scrollbar-thumb {
        background-color: #6f7b7b;
    }

    .custom-scroll::-webkit-scrollbar-track {
        background: transparent;
    }

.navigation.nav-bg {
    /* background-color: #fff; */
}

.dropdown-menu {
    display: none;
    position: absolute;
    background: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    z-index: 50;
    min-width: 200px;
    border-radius: 0.5rem;
    overflow: hidden;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
    display: block;
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1rem;
    color: #333;
    transition: all 0.2s;
}

    .dropdown-item:hover {
        background-color: #f9fafb;
        color: var(--link-color);
    }

.mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

    .mobile-menu.open {
        max-height: 1000px;
    }

.notification-card {
    border-left: 4px solid var(--accent-turquoise);
    transition: all 0.3s ease;
}

    .notification-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    }

.leader-card {
    border-left: 4px solid var(--accent-turquoise);
    transition: all 0.3s ease;
}

    .leader-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    }

.footer-border {
    position: absolute;
    top: -75px;
    width: 100%;
    stroke: var(--primary);
}

/* search */
.search-bar {
    position: relative;
    background-color: #f9f9f9;
}

    .search-bar input {
        background-color: transparent;
        border: 1px solid #ebebeb;
        height: 40px;
        padding-left: 15px;
        position: relative;
        border-radius: 5px;
        z-index: 1;
    }

        .search-bar input:focus {
            border-color: #8b1e3f;
            outline: 0;
        }

        .search-bar input::-moz-placeholder {
            font-size: 90%;
        }

        .search-bar input::placeholder {
            font-size: 90%;
        }

@media (max-width: 991px) {
    .search-bar input {
        width: 40px;
        padding-left: 30px;
    }

        .search-bar input:focus {
            padding-left: 10px;
            width: 200px;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            height: 50px;
            right: 0;
            background-color: #f9f9f9;
        }
}

.search-bar::before {
    position: absolute;
    font-family: "themify";
    content: "\e610";
    font-size: 15px;
    right: 13px;
    top: 50%;
    transform: translateY(-50%);
}

.banner {
    background-image: url(../images/backgrounds/banner-bg.svg);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 80px 0 10px;
}

@media (max-width: 705px) {
    .banner {
        padding: 100px 0 100px;
    }
}

/* .banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
} */

.banner .container {
    position: relative;
    z-index: 1;
}

.banner-shape-1 {
    position: absolute;
    left: 20%;
    top: 25%;
}

    .banner-shape-1 .path {
        fill: #8b1e3f;
    }

.banner-shape-2 {
    position: absolute;
    right: 20%;
    top: 25%;
}

    .banner-shape-2 .path {
        fill: #8b1e3f;
    }

.banner-shape-3 {
    position: absolute;
    right: 25%;
    bottom: 15%;
}

    .banner-shape-3 .path {
        fill: #8b1e3f;
    }

.banner-border {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    stroke: #8b1e3f;
}

.post-title {
    font-family: "Nunito Sans", sans-serif;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 17px;
    white-space: nowrap;
    overflow: hidden;
}

.social-icons {
    margin-bottom: 0;
}

    .social-icons li {
        color: #777;
        font-size: 14px;
    }

        .social-icons li a {
            display: block;
            color: inherit;
            padding: 5px;
        }

            .social-icons li a:hover {
                color: #c9a34e;
            }

.post-slider {
    overflow: hidden;
}

    .post-slider:hover .prevArrow {
        left: 10px;
    }

    .post-slider:hover .nextArrow {
        right: 10px;
    }

.slider-sm .slick-arrow {
    height: 35px;
    width: 35px;
    line-height: 35px;
}

.slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9;
    height: 50px;
    width: 50px;
    line-height: 50px;
    border-radius: 50%;
    background: rgba(79, 214, 117, 0.5);
    color: #fff;
    border: 0;
}

@media (max-width: 575px) {
    .slick-arrow {
        display: none;
    }
}

.slick-arrow:focus {
    outline: 0;
}

.slick-arrow:hover {
    background: #c9a34e;
}

.prevArrow {
    left: -60px;
}

.nextArrow {
    right: -60px;
}

.widget {
    margin-bottom: 30px;
    padding: 15px;
    border-radius: 5px;
    border-top: 6px solid #8b1e3f;
    background-color: #fff;
}

.widget-title {
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #333;
    text-align: center;
    font-size: 15px;
    letter-spacing: 0.06em;
}

.widget-search {
    position: relative;
}

    .widget-search input {
        border: 1px solid transparent;
        width: 100%;
        height: 40px;
        border-radius: 50px;
        background-color: #f9f9f9;
        padding-left: 20px;
        transition: 0.2s ease;
    }

        .widget-search input:focus {
            border-color: #8b1e3f;
            outline: 0;
        }

        .widget-search input::-moz-placeholder {
            font-size: 90%;
        }

        .widget-search input::placeholder {
            font-size: 90%;
        }

    .widget-search i {
        color: #333;
        position: absolute;
        right: 15px;
        top: 15px;
        font-size: 12px;
    }

.widget-about {
    text-align: center;
}

    .widget-about img {
        height: 170px;
        width: 170px;
        -o-object-fit: cover;
        object-fit: cover;
        border-radius: 50%;
        display: block;
        margin: 0 auto 10px;
        border: 5px solid transparent;
        box-shadow: 0 0 0 2px #8b1e3f;
    }

@media (max-width: 1200px) {
    .widget-about img {
        height: 150px;
        width: 150px;
    }
}

.widget-author .media {
    position: relative;
    padding: 15px 0;
}

    .widget-author .media img {
        height: 70px;
        width: 70px;
        -o-object-fit: cover;
        object-fit: cover;
        border-radius: 50%;
    }

    .widget-author .media:not(:last-child) {
        border-bottom: 1px solid #ebebeb;
    }

.widget-categories a {
    position: relative;
    padding-left: 15px;
}

    .widget-categories a::before {
        position: absolute;
        content: "#";
        color: #8b1e3f;
        left: 0;
        top: 0;
    }

.widget-list li {
    padding: 7px 0;
}

    .widget-list li:not(:last-child) {
        border-bottom: 1px solid #ebebeb;
    }

    .widget-list li a {
        color: #333;
    }

        .widget-list li a:hover {
            color: #8b1e3f;
        }

.widget-list-inline li {
    margin-bottom: 10px;
}

    .widget-list-inline li a {
        padding: 2px 15px;
        border: 1px solid #8b1e3f;
        border-radius: 30px;
        display: block;
        color: #555;
    }

        .widget-list-inline li a:hover {
            border-color: #8b1e3f;
            background: #8b1e3f;
            color: #fff;
        }

.widget-social {
    display: flex;
    justify-content: space-around;
}

    .widget-social a {
        padding: 10px;
        font-size: 20px;
        color: #777;
    }

        .widget-social a:hover {
            color: #8b1e3f;
        }

.footer {
    padding: 120px 0 50px;
    background-image: url(../images/backgrounds/footer-bg.svg);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.footer-list a {
    display: block;
    color: #333;
    padding: 5px;
}

    .footer-list a:hover {
        color: #8b1e3f;
    }

.footer-border {
    position: absolute;
    top: -75px;
    width: 100%;
    stroke: #8b1e3f;
}

.instagram-post img {
    height: 200px;
    width: 200px;
    -o-object-fit: contain;
    object-fit: contain;
    margin: auto;
}

.instagram-slider .slick-slide {
    transition: all 0.3s ease;
    opacity: 0.6;
    transform: scale(0.6);
}

.instagram-slider .slick-center {
    opacity: 1;
    transform: scale(1);
}
