:root {
    --primary-color: #FED44C;
    --white-text: #FFF;
    --black-background: #000;
    --gray-1: #2D2D2D;
    --gray-2: #818181;
    --gray-3: #ACACAC;
    --gray-4: #BEBEBE;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary-color) !important;
}

.dropdown-toggle .dropdown-menu {
    display: block;
}

.btn:focus {
    box-shadow: none;
}

.dropdown .btn:focus {
    box-shadow: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
label {
    margin: 0;
}

.inqure-btn:hover {
    background-color: var(--primary-color) !important;
}

input:focus {
    outline: none;
}

a {
    color: var(--white-text);
}

a:hover {
    text-decoration: none;
    color: var(--white-text);
}

body {
    font-family: 'Josefin Sans';
    background-color: var(--black-background);
    background-size: cover;
    background-repeat: no-repeat;
}

.outer {
    display: flex;
    align-items: center;
}

.no-padding {
    padding-left: 0;
    padding-right: 0;
}

.slick-arrow {
    content: "";
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 9;
}

.slick-prev::before {
    display: none;
}

.slick-next::before {
    display: none;
}

.slick-prev::after {
    position: absolute;
    content: url('../icon/left-arrow.png');
}

.slick-next::after {
    position: absolute;
    content: url('../icon/right-arrow.png');
}

.slick-prev {
    left: 0px;
}

.slick-next {
    right: 0px;
}

.section-space {
    margin-top: 100px;
}

.main-title {
    width: 100%;
}

.main-title h2 {
    color: var(--white-text);
    font-size: 30px;
    font-weight: 400;
    line-height: 35px;
    margin-bottom: 10px;
    text-align: center;
    width: 100%;
}

.section-p {
    color: var(--gray-3);
    font-size: 20px;
    font-bold: 600;
    line-height: 24px;
}

/* .description {
    color: var(--gray-3);
    font-size: 15px;
    line-height: 24px;
} */
.description {
    color: #eee;
    font-size: 1.14em;
    margin-bottom: 1.2em;
    line-height: 1.8;
    letter-spacing: 0.02em;

}

.description strong {
    display: inline-block;
    margin-top: 2em;
    color: #ffc107;
    font-weight: bold;
}

.grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.mobile-scrollbar::-webkit-scrollbar {
    height: 6px;
}

.mobile-scrollbar::-webkit-scrollbar-thumb {
    background: #FFD700;
    border-radius: 999px;
}

.grid-box {
    background: rgba(17, 24, 39, 0.95);
    border-radius: 0.5rem;
    padding: 2rem;
    border: 1px solid rgba(75, 85, 99, 0.5);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.grid-title {
    color: #fbbf24;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.grid-dot {
    width: 12px;
    height: 12px;
    background: #fbbf24;
    border-radius: 50%;
    margin-right: 1rem;
}

.grid-text {
    color: #f9fafb;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 500;
}

.section-content {
    width: 100%;
    text-align: center;
}

figure label img {
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    width: 25px !important;
    margin-top: -490px;
    margin-left: 200px;
    border-radius: 100%;
}

/* Back To Top=================================================================================================== */
@-webkit-keyframes border-transform {

    0%,
    100% {
        border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    }

    14% {
        border-radius: 40% 60% 54% 46% / 49% 60% 40% 51%;
    }

    28% {
        border-radius: 54% 46% 38% 62% / 49% 70% 30% 51%;
    }

    42% {
        border-radius: 61% 39% 55% 45% / 61% 38% 62% 39%;
    }

    56% {
        border-radius: 61% 39% 67% 33% / 70% 50% 50% 30%;
    }

    70% {
        border-radius: 50% 50% 34% 66% / 56% 68% 32% 44%;
    }

    84% {
        border-radius: 46% 54% 50% 50% / 35% 61% 39% 65%;
    }
}

/* #Progress
================================================== */

.progress-wrap {
    position: fixed;
    right: 20px;
    bottom: 30px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

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

.progress-wrap::after {
    position: absolute;
    font-family: 'unicons';
    content: '\2191';
    text-align: center;
    line-height: 46px;
    font-size: 24px;
    color: var(--primary-color);
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap::before {
    position: absolute;
    font-family: 'unicons';
    content: '\e84b';
    font-family: 'Font Awesome';
    text-align: center;
    line-height: 46px;
    font-size: 24px;
    opacity: 0;
    /* background: black; */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 2;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap:hover::before {
    opacity: 1;
}

.progress-wrap svg path {
    fill: none;
}

.progress-wrap svg.progress-circle path {
    stroke: var(--primary-color);
    /* stroke: rgba(0, 0, 0, 0.2); */
    stroke-width: 4;
    box-sizing: border-box;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

/* Same anchor corner as .progress-wrap */
.whatsapp-fab {
    position: fixed;
    right: 20px;
    /* same as .progress-wrap */
    bottom: 30px;
    /* same as .progress-wrap */
    width: 46px;
    /* same size as progress-wrap */
    height: 46px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    z-index: 9999;
    /* below .progress-wrap (which is 10000) so it won’t overlap it */
    transform: translateY(-58px);
    /* places WA just ABOVE the progress button (46px + 12px gap) */
}

.whatsapp-fab:hover {
    background: #20ba5a;
    transform: translateY(-58px) scale(1.06);
    box-shadow: 0 12px 26px rgba(0, 0, 0, .2);
}

.whatsapp-fab svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}


.menu_students {
    list-style: none;
    margin-bottom: 1rem;
}

.menu-title {
    text-decoration: none;
    color: #333;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #f8f9fa1f;

}

.menu-title h5 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.unorderlist {
    list-style: none;
    margin: 0;
    padding: 1rem;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 5px 5px;
    background: rgba(255, 255, 255, 0);
}

.no-padding {
    padding-left: 10px;
}

.reg_student {
    list-style: none;
}

.price-slider-container {
    padding: 1rem 0;
}

.range-slider {
    position: relative;
    width: 100%;
    height: 40px;
    margin: 2rem 0;
}

.slider-track {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
}

.slider-fill {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 6px;
    background: linear-gradient(90deg, #007bff, #0056b3);
    border-radius: 3px;
}

.range-input {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    pointer-events: none;
}

.range-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #007bff;
    border: 3px solid white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    pointer-events: all;
    position: relative;
}

.range-input::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #007bff;
    border: 3px solid white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    pointer-events: all;
}

.range-input::-webkit-slider-track {
    background: transparent;
}

.range-input::-moz-range-track {
    background: transparent;
}

.price-values {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #666;
}

.price-inputs {
    margin-top: 1rem;
}

.d-flex {
    display: flex;
}

.justify-content-between {
    justify-content: space-between;
}

.gap-2 {
    gap: 0.5rem;
}

.form-control {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    width: 100%;
}

.form-control-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.775rem;
}

.btn {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
    border: 1px solid transparent;
    border-radius: 0.375rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.775rem;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    color: white;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.mt-2 {
    margin-top: 0.5rem;
}

.w-100 {
    width: 100%;
}

@media (max-width: 768px) {
    .range-slider {
        margin: 1rem 0;
    }
}


/* Menu-Mobile============================================================================================ */
.menu {
    height: 100%;
    width: 100vw;
    position: fixed;
    z-index: 9999999;
    top: 0;
    left: 0;
    background-color: var(--black-background);
    display: none;
    text-align: left;
    padding: 10px 15px;
}

.menu .menu-item {
    padding: 8px 8px 8px 50px;
    font-size: 20px;
    color: var(--white-text) !important;
    display: block;
    transition: 0.3s;
    margin-bottom: 20px;
    overflow: hidden !important;
}

.menu-item.active {
    color: var(--primary-color) !important;
}

.menu .closebtn {
    font-size: 36px;
    margin-left: 50px;
    border: none;
    background-color: transparent;
    color: var(--white-text);
}

.menu .dropdown {
    margin-left: 35px;
    margin-bottom: 20px;
}

.dropdown-toggle {
    font-size: 20px;
}

.show {
    background-color: transparent;
    color: var(--white-text);
    font-size: 24px;
    cursor: pointer;
    border: none;
}

.services .dropdown-menu {
    margin-top: -5px !important;
    border: none;
}

/* Start Header============================================================================================================= */
.header-container {
    padding: 20px 15px;
}

.logo {
    width: 80px;
    height: auto;
}

.nav-mobile svg {
    fill: var(--white-text);
}

.nav-mobile select {
    color: var(--white-text);
    background-color: transparent;
    border: none;
}

.navbar {
    display: none !important;
}

.menu-item {
    color: var(--primary-color) !important;
}

.nav-item.active a {
    color: var(--primary-color) !important;
}

.nav-item a {
    color: var(--white-text) !important;
    font-size: 14px;
    font-weight: 400;
}

.nav-item a:hover {
    color: var(--primary-color) !important;
}

.lang a {
    border-left: 1px solid var(--gray-2);
    border-right: 1px solid var(--gray-2);
}

.lang img {
    width: 18px;
    height: auto;
}

.login-register a {
    border-right: 1px solid var(--gray-2);
    color: var(--primary-color) !important;
}

.inqure-btn {
    background-color: var(--primary-color);
    color: var(--black-background);
    border-radius: 122px;
    padding: 10px 30px;
}

.navbar-right a {
    padding: 0px 15px !important;
}

.inquire-btn a {
    padding-right: 0 !important;
}

.navbar-mid a {
    padding: 0px 10px !important;
}

/* Mega Menu=============================================== */
.product-item {
    padding: 0px 10px !important;
    font-size: 14px !important;
}

.dropdown-menu {
    display: none;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.gems .dropdown-menu {
    top: 20px;
    left: -140px;
    padding: 30px 50px !important;
    border-radius: none !important;
    width: 65vw;
    background-color: var(--gray-1);
}

.products-dropdown-left {
    border-right: 1px solid var(--gray-2);
    padding-right: 50px;
}

.products-dropdown-right {
    padding-left: 50px;
    padding-top: 60px;
}

.products-dropdown-left h6 a {
    color: var(--primary-color) !important;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    padding: 0px !important;
}

.products-dropdown-left .col-xl-4 {
    margin-top: 30px;
}

.products-dropdown-left .col-xl-4 a {
    color: #676767;
    font-size: 16px;
    font-weight: 400;
}

.products-dropdown-right {
    text-align: center;
}

.products-dropdown-right img {
    width: 300px;
}

.products-dropdown-right p {
    text-align: center;
    color: var(--white-text);
    font-size: 14px;
    font-weight: 400;
    margin-top: 20px;
}

/* End Header============================================================================================================= */

/* Start Main Slider Section========================================================================================================= */

.main-slider h6 {
    font-size: 14px;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 0;
}

.main-slider h1 {
    font-size: 40px;
    font-weight: 400;
    color: var(--white-text);
}

.main-slider p {
    font-size: 14px;
    font-weight: 400;
    color: var(--gray-3);
    line-height: 25px;
}

.main-slider p span {
    font-size: 20px;
    font-weight: 400;
    color: var(--white-text);
}

.main-slider-item button {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 122px;
    padding: 10px 30px;
    margin-top: 20px;
}

.main-slider-item button:hover {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 122px;
    padding: 10px 30px;
    margin-top: 20px;
}

.main-slider .slick-next {
    right: 75px;
    top: 45%;
}

.main-slider .slick-prev {
    display: none !important;
    left: -80px;
    top: 45%;
}

.lock-price-div {
    color: var(--white-text);
    margin-top: -110px;
    z-index: 999;
    top: 0px;
}

/* .main-slider .lock-price-div {
    margin-top: 300px;
    margin-left: -220px;
} */

.lock-div {
    margin-right: 15px;
}

.lock-div img {
    width: 40px;
}

.price-div {
    padding: 20px 40px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50px;
    font-size: 10px;
}

.price-div span {
    font-size: 14px;
}

/* End Main Slider Section========================================================================================================= */

/* Start Explore Our Collection Section========================================================================================== */



/* Isotope====================================================================================================*/

.arrival {
    border-radius: 22px 0 0 22px;
}

.featured {
    border-radius: 0 22px 22px 0;
}

.btn-group-div .line-left {
    display: none;
    width: 50px;
    background: linear-gradient(to right, var(--black-background) 0%, var(--black-background) 30%, var(--gray-1) 50%, var(--gray-1) 100%);
}

.btn-group-div .line-right {
    display: none;
    width: 50px;
    background: linear-gradient(to left, var(--black-background) 0%, var(--black-background) 30%, var(--gray-1) 50%, var(--gray-1) 100%);
}

.isotope-toolbar .btn-group {
    background-color: #252426 !important;
    border-radius: 22px;
}

.isotope-toolbar .btn-group button {
    border: none;
    padding: 10px 15px;
    background-color: transparent;
}

.btn-group .btn {
    font-size: 9px;
}

.btn-group .active {
    border-radius: 50px !important;
    border: 1px solid var(--primary-color) !important;
    color: var(--primary-color) !important;
    background-color: var(--gray-1) !important;
}

.isotope-box {
    position: relative;
    flex: 1;
}

.isotope-toolbar {
    margin: 50px 0px;
    text-align: center;
    width: auto;
}

.isotope-item {
    padding-bottom: 20px !important;
}

.item-detail {
    margin-top: 10px;
    text-align: center;
}

.best-seller-slider-item a label img {
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    width: 25px !important;
    border-radius: 100%;
    margin-top: -255px;
    margin-left: 220px;
}

.product p {
    color: var(--gray-4);
    font-size: 15px;
    line-height: 22px;
}

.product h6 {
    color: var(--white-text);
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 10px;
}

.product h5 {
    color: var(--primary-color);
    font-size: 15px;
    line-height: 28px;
    border-top: 1px solid;
    border-image: linear-gradient(to right, var(--black-background) 0%, var(--black-background) 30%, var(--gray-2) 49%, var(--gray-2) 50%, var(--black-background) 70%, var(--black-background) 100%) 1;
}

.product h4 {
    color: #8D3737;
    font-size: 12px;
    line-height: 16px;
    text-decoration: line-through;
}

.product-img {
    width: 100%;
    border-radius: 16px;
}

figure {
    overflow: hidden;
    text-align: center;
    -webkit-perspective: 50em;
    perspective: 50em;
}

figure * {
    -webkit-box-sizing: padding-box;
    box-sizing: padding-box;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

.view-all {
    font-size: 15px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 122px;
    padding: 10px 30px;
}

.view-all:hover {
    font-size: 15px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 122px;
    padding: 10px 30px;
}

/* End Explore Our Collection Section========================================================================================== */

/* Start Select a Gem Section================================================================================================== */

.select-gem-section {
    background-repeat: no-repeat;
    background-size: cover;
    height: 600px;
}

.select-gem-div {
    text-align: center !important;
}

.select-gem-div .description {
    color: #DEDEDE;
}

.watch-now-btn {
    background-color: var(--primary-color);
    color: var(--black-background);
    border-radius: 122px;
    padding: 14px 25px;
    margin: 20px 0px;
}

.watch-now-btn:hover {
    background-color: var(--primary-color);
    color: var(--black-background);
    border-radius: 122px;
    padding: 14px 25px;
    margin: 20px 0px;
}


/* End Select a Gem Section================================================================================================== */

/* Start Best Seller Section===================================================================================================== */

.best-seller-section {
    text-align: center;
}

.best-seller-slider-item {
    margin-top: 30px
}

.best-seller-slider {
    margin-bottom: 0 !important;
}

/* End Best Seller Section===================================================================================================== */

/* Start Why Invest in Gems Section=============================================================================================== */

.best-seller-section .description,
.explore-collection-section .description {
    width: 75%;
}

.why-invest-section .card {
    background-color: #252426;
    color: var(--white-text);
    margin-top: 20px;
    border-radius: 10px;
}

.why-invest-section svg {
    margin-right: 10px;
}

.why-invest-section button {
    margin-top: 25px;
}

.card-content h6 {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
}

.card-content p {
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
}

.why-invest-right {
    margin-top: 30px;
}

.why-invest-right img {
    width: 100%;
}

.why-invest-right-div-1 label {
    color: var(--primary-color);
    background-color: rgba(255, 243, 204, 0.3);
    padding: 10px 20px;
    border-radius: 170px;
    z-index: 999;
    position: absolute;
    top: 15px;
    left: 30px;
}

.why-invest-right-div-1 .lock-price-div {
    position: absolute;
    top: 150px;
    left: 20px;
}


.why-invest-right-div-2 label {
    color: var(--primary-color);
    background-color: rgba(255, 243, 204, 0.3);
    padding: 10px 20px;
    border-radius: 170px;
    z-index: 999;
    position: absolute;
    top: 155px;
    left: 30px;
}

.why-invest-right-div-2 .lock-price-div {
    position: absolute;
    top: 290px;
    left: 20px;
}

.why-invest-right-div-1 {
    margin-bottom: 15px;
}

/* End Why Invest in Gems Section=============================================================================================== */

/* Start News Blog Section==========================================================================================================  */

.news-blog-section .description {
    width: 75%;
}


/* End News Blog Section========================================================================================================== */

.news-blog-slider {
    margin-top: 40px;
}

.news-blog-slider .news-blog-slider-item {
    margin: 0px 20px !important;
}

.news-blog-slider-item h6 {
    color: var(--primary-color);
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
}

.news-blog-slider-item h5 {
    color: var(--white-text);
    font-size: 16px;
    line-height: 24px;
}

.news-blog-slider-item img {
    width: 100%;
    margin: 10px 0px;
}

.news-blog-slider-item p {
    color: var(--gray-4);
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 5px;
}

/* Start Why Choose Section============================================================================================================ */

.why-choose-section-left img {
    width: 100%;
    margin-top: 30px;
}

.why-choose-section-left img {
    width: 100%;
    margin-bottom: 20px;
}

.why-choose-div h5 {
    text-transform: uppercase;
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 400;
    line-height: 26px;
}

.why-choose-div p {
    color: var(--gray-4);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.why-choose-div {
    margin: 0px 15px;
}

.why-choose-section-right {
    padding-left: 0px;
}

.why-choose-section-right-top div {
    margin-bottom: 20px;
}

.why-choose-section-right-bottom img {
    margin-top: 10px;
}

/* End Why Choose Section============================================================================================================ */

/* Start Message Section============================================================================================================ */


/* End Message Section============================================================================================================ */
.message-slider-item {
    text-align: center;
}

.message-slider-item h6 {
    color: var(--white-text);
    font-size: 18px;
    line-height: 40px;
}

.message-slider-item p {
    color: var(--gray-3);
    font-size: 14px;
    line-height: 22px;
    margin-top: 20px;
    width: 80%;
}

.message-slider-item img {
    width: 100px;
    margin-top: 30px;
}

/* Start Subscribe Section================================================================================================ */

.subscribe-section-div {
    text-align: center;
    width: 80% !important;
}

.subscribe-section-div h6 {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 20px;
}

.subscribe-section-div p {
    color: var(--gray-4);
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 20px;
}

.subscribe-section input {
    background-color: #121212;
    border: none;
    border-radius: 103px;
    width: 100%;
    margin-left: 0px;
    padding: 10px 30px;
    height: 45px;
}

.input-div {
    width: 100%;
}

.subscribe-section button {
    margin-left: 0px;
    margin-top: 20px;
}

.subscribe-section input::placeholder {
    font-size: 10px;
}

/* End Subscribe Section================================================================================================ */


/* Start Footer=========================================================================================================== */
footer h6 {
    color: var(--white-text);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 20px;
}

footer a:hover {
    color: var(--primary-color) !important;
}

footer img {
    margin-top: 25px;
    margin-right: 10px;
    width: 25px;
}

.footer-div-1 {
    margin-bottom: 50px;
}

footer .footer-div a {
    color: var(--gray-4);
    font-size: 14px;
    font-weight: 400;
    line-height: 30px;
}

.footer-span {
    font-size: 12px;
    background-color: var(--black-background) !important;
    color: #0CB7A0;
}

.copyright {
    margin: 40px 0px;
}

.copyright h5 {
    font-size: 12px;
    color: var(--gray-4);
}

/* End Footer=========================================================================================================== */

.why-choose-div img {
    width: 40px;
    margin-bottom: 20px;
}

iframe {
    width: 100%;
}

.why-invest-inner-img {
    width: 100%;
    margin: 30px 0;
}

.best-seller-slider .product-img-div {
    padding: 0px 30px;
}

.line-left,
.line-right {
    display: none;
}

.main-slider {
    margin-bottom: 0 !important;
}

.main-slider-item {
    height: calc(100vh - 93px);
}

.navbar-brand {
    padding: 0;
    margin: 0;
}

.navbar {
    padding: 0;
}

.inquire-form {
    margin-top: 40px;
    width: 100%;
}

/* 
.filter-container {
    max-width: 400px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.137);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.filter-section {
    padding: 1.5rem;
    border-bottom: 1px solid #e5e5e5;
}

.filter-section:last-child {
    border-bottom: none;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.filter-title {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
}

.filter-title::before {
    content: '▼';
    margin-right: 0.5rem;
    font-size: 0.8rem;
    color: #666;
}

.clear-button {
    color: #666;
    font-size: 0.9rem;
    text-decoration: none;
    cursor: pointer;
}

.clear-button:hover {
    color: #333;
}

.input-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.input-field {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    text-align: center;
    background: #fafafa;
}

.input-field:focus {
    outline: none;
    border-color: #007bff;
    background: white;
}

.input-separator {
    font-size: 1.2rem;
    font-weight: bold;
    color: #666;
}

.range-slider-container {
    position: relative;
    margin: 2rem 0 1rem 0;
}

.range-slider {
    position: relative;
    height: 6px;
    background: #e5e5e5;
    border-radius: 3px;
    margin: 1rem 0 2rem 0;
}

.range-fill {
    position: absolute;
    height: 100%;
    background: #1e90ff;
    border-radius: 3px;
}

.range-input {
    position: absolute;
    top: -10px;
    width: 100%;
    height: 26px;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    pointer-events: none;
}

.range-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: white;
    border: 3px solid #1e90ff;
    cursor: pointer;
    pointer-events: all;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.range-input::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: white;
    border: 3px solid #1e90ff;
    cursor: pointer;
    pointer-events: all;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #666;
    margin-top: -0.5rem;
}

.price-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #666;
    margin-top: -0.5rem;
    flex-wrap: wrap;
}

.price-label {
    white-space: nowrap;
}

.carat-input {
    background: #f8f9fa;
}


.price-input {
    background: #f8f9fa;
    font-size: 0.95rem;
}

.currency {
    font-size: 0.9rem;
    color: #666;
}

@media (max-width: 480px) {
    .filter-container {
        margin: 0;
        border-radius: 0;
    }

    .price-labels {
        font-size: 0.7rem;
    }
}
 */
.range-inputs-improved {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    /* Only as wide as needed */



}


.filter-header-improved {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.185);
    border: 1px solid #ddd;
    padding: 1rem;
    border-radius: 0 0 5px 5px;
}

.filter-title-improved {
    color: #ffffff !important;
    font-weight: 600;
    font-size: 16px;
    margin: 0;
    display: flex;
    align-items: center;
}

.clear-btn-improved {
    color: #ccc;
    font-size: 14px;
    text-decoration: none;
    border: none;
    background: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.clear-btn-improved:hover {
    color: #fff;
}

.filter-content-improved {
    list-style: none;
    margin: 0;
    padding: 1rem;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 5px 5px;
    background: rgba(255, 255, 255, 0);
}


.range-input-improved {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid #555;
    border-radius: 4px;
    font-size: 14px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    color: #fff !important;
    min-width: 65px;
    width: 80px;
    padding: 4px 6px;
    font-size: 12px;
}

.range-input-improved:focus {
    outline: none;
    border-color: #FED44C;
    background: rgba(255, 255, 255, 0.15);
}

.range-input-improved::placeholder {
    color: #ccc !important;
}

.range-separator-improved {
    color: #ccc;
    font-weight: 500;
    padding: 0 5px;
}

.currency-label-improved {
    font-size: 14px;
    color: #ccc;
    margin-right: 8px;
    min-width: 25px;
}

.range-slider-container-improved {
    position: relative;
    margin: 20px 0;
}

.range-track-improved {
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    position: relative;
}

.range-progress-improved {
    height: 100%;
    background: #FED44C;
    border-radius: 2px;
    position: absolute;
    left: 20%;
    width: 60%;
}

.range-thumb-improved {
    width: 18px;
    height: 18px;
    background: white;
    border: 2px solid #FED44C;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.range-labels-improved {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 11px;
    color: #999;
}

.dropdown-arrow-improved {
    margin-right: 8px;
    font-size: 12px;
    color: #FED44C;
}

/* Price specific positioning */
.price-section-improved .range-thumb-improved.min {
    left: 20%;
}

.price-section-improved .range-thumb-improved.max {
    left: 80%;
}

/* Carat specific positioning */
.carat-section-improved .range-progress-improved {
    left: 17%;
    width: 56%;
}

.carat-section-improved .range-thumb-improved.min {
    left: 17%;
}

.carat-section-improved .range-thumb-improved.max {
    left: 73%;
}

.input-group-improved {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex: 1;
    width: 150px;
}

.apply-btn-improved {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    color: white;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    width: 100%;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.apply-btn-improved:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* ========================================== */


/* Position the dropdown */
.navbar .nav-item.gems {
    position: relative;
}

.navbar .nav-item.gems .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    max-width: 250px;
    width: auto;
    padding: 6px 0;
    margin-top: 8px;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    z-index: 10001;
}

.navbar .nav-item.gems:hover>.dropdown-menu,
.navbar .nav-item.gems:focus-within>.dropdown-menu {
    display: block;
}

/* Items */
.navbar .nav-item.gems .dropdown-item {
    padding: 8px 14px;
    font-size: 14px;
    color: #fcd34d;
    /* your yellow text */
    white-space: nowrap;
}

.navbar .nav-item.gems .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.06);
}

.mobile-filter-btn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;

}

.mobile-filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.mobile-filter-btn i {
    margin-right: 8px;

}

.filter-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    backdrop-filter: blur(5px);
}

.filter-popup {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 350px;
    height: 100%;
    background: rgba(45, 45, 45, 0.264);
    z-index: 9999;
    transition: right 0.3s ease;
    overflow-y: auto;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
}

.filter-popup.active {
    right: 0;
}

.filter-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
    background: #f8f9fa;
}

.filter-popup-header h4 {
    margin: 0;
    color: #333;
    font-weight: 600;
}

.close-filter-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: #292929;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
}

.close-filter-btn:hover {
    color: #333;
}

.filter-popup-content {
    padding: 20px;
}

.filter-popup #filterSidebar {
    position: static;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    min-width: auto;
    width: 100%;
    max-height: none;
    overflow-y: visible;
    padding: 0;
}

.input-group-improved {
    display: flex;
    align-items: center;
    gap: 1px;
    margin-bottom: 5px;
    width: 10px;
    max-width: 15px;
}

.filter-popup .menu_students {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.filter-popup .menu_students:last-child {
    border-bottom: none;
}

.filter-popup .menu-title {
    color: #333 !important;
    font-weight: 600;
    padding: 10px 0;
}

.filter-popup .menu-title h5 {
    color: #f5f5f5;
    margin: 0;
}

.filter-popup .unorderlist a {
    color: #ffffff !important;
    font-weight: 800 !important;
    font-size: 1.1rem !important;
    padding: 8px 0;
    display: block;
    text-decoration: none;
    transition: color 0.3s ease;
}

.filter-popup .unorderlist a:hover {
    color: #333 !important;
}

.filter-popup .unorderlist a.active {
    color: #667eea !important;
    font-weight: 600;
}

input::placeholder {
    color: #252525 !important;
    opacity: 1 !important;
}

.filter-popup .form-control {
    border: 1px solid #7a7a7a;
    border-radius: 4px;
    padding: 8px 12px;
    margin-bottom: 10px;
    color: #0c0c0c !important;

}

.filter-popup .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.filter-popup .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .mobile-filter-btn {
        display: block;
        left: 20px;
        /* push to left corner */
        right: auto;
        /* cancel the right positioning */
        bottom: 20px;
    }

    .desktop-filter {
        display: none !important;
    }
}

@media (min-width: 769px) {

    .filter-overlay,
    .filter-popup {
        display: none !important;



    }
}

.filter-section-improved-mobile {
    margin-bottom: 24px;
    border-bottom: 1px solid #666;
    padding-bottom: 20px;
}

.filter-header-improved-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    cursor: pointer;
}

.filter-title-improved-mobile {
    color: #FED44C !important;
    font-weight: 600;
    font-size: 16px;
    margin: 0;
    display: flex;
    align-items: center;
}

.clear-btn-improved-mobile {
    color: #ccc;
    font-size: 14px;
    background: transparent;
    border: 0;
    cursor: pointer;
    transition: color 0.3s ease;
}

.clear-btn-improved-mobile:hover {
    color: #fff;
}

.range-inputs-improved-mobile {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.range-input-improved-mobile {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid #555;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff !important;
    font-size: 14px;
    text-align: center;
}

.range-input-improved-mobile:focus {
    outline: none;
    border-color: #FED44C;
    background: rgba(255, 255, 255, 0.15);
}

.range-input-improved-mobile::placeholder {
    color: #ccc !important;
}

.input-group-improved-mobile {
    display: flex;
    align-items: center;
    flex: 1;
}

.currency-label-improved-mobile {
    font-size: 14px;
    color: #ccc;
    margin-right: 8px;
    min-width: 20px;
}

.range-separator-improved-mobile {
    color: #ccc;
    font-weight: 500;
    padding: 0 4px;
}

.range-slider-container-improved-mobile {
    position: relative;
    margin: 20px 0;
    height: 40px;
    padding: 16px 0;
}

.range-track-improved-mobile {
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    position: relative;
    width: 100%;
    top: 16px;
}

.range-progress-improved-mobile {
    height: 100%;
    background: #FED44C;
    border-radius: 2px;
    position: absolute;
    transition: all 0.15s ease;
}

.range-thumb-improved-mobile {
    width: 20px;
    height: 20px;
    background: white;
    border: 2px solid #FED44C;
    border-radius: 50%;
    position: absolute;
    top: 8px;
    transform: translateX(-50%);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.15s ease;
    z-index: 10;
}

.range-thumb-improved-mobile:hover {
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.range-labels-improved-mobile {
    display: flex;
    justify-content: space-between;
    margin-top: 24px;
    font-size: 11px;
    color: #999;
    user-select: none;
}

.dropdown-arrow-improved-mobile {
    margin-right: 8px;
    font-size: 12px;
    color: #FED44C;
}

.apply-btn-improved-mobile {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    color: white;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    width: 100%;
    margin-top: 16px;
    transition: all 0.3s ease;
}

.apply-btn-improved-mobile:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Mobile positioning for price */
.price-section-improved-mobile .range-progress-improved-mobile {
    left: 20%;
    width: 60%;
}

.price-section-improved-mobile .range-thumb-improved-mobile.min {
    left: 20%;
}

.price-section-improved-mobile .range-thumb-improved-mobile.max {
    left: 80%;
}

/* Mobile positioning for carat */
.carat-section-improved-mobile .range-progress-improved-mobile {
    left: 17%;
    width: 56%;
}

.carat-section-improved-mobile .range-thumb-improved-mobile.min {
    left: 17%;
}

.carat-section-improved-mobile .range-thumb-improved-mobile.max {
    left: 73%;
}

/* Prevent text selection during drag */
.range-slider-container-improved *,
.range-slider-container-improved-mobile * {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Mobile touch improvements */
@media (max-width: 768px) {
    .range-thumb-improved-mobile {
        width: 24px;
        height: 24px;
        top: 6px;
    }

    .range-slider-container-improved-mobile {
        padding: 20px 0;
    }
}

/* Active state for better feedback */
.range-thumb-improved.dragging,
.range-thumb-improved-mobile.dragging {
    transform: translateX(-50%) scale(1.15);
    box-shadow: 0 6px 16px rgba(254, 212, 76, 0.4);
    border-color: #FFD700;
}


.mega-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    width: 800px;
    /* Increased width */
    max-width: 95vw;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid #e8e8e8;
    margin-top: 10px;
    overflow: hidden;
}

.nav-item.gems:hover .mega-dropdown {
    opacity: 1;
    visibility: visible;
}

.dropdown-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Responsive columns */
    gap: 0;
    padding: 25px;
    min-height: 300px;
}

.dropdown-column {
    padding: 15px 20px;
    border-right: 1px solid #f0f0f0;
    min-height: 250px;
}

.dropdown-column:last-child {
    border-right: none;
}

.dropdown-column h3 {
    color: #4a4a4a;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 18px;
    padding-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-bottom: 3px solid #0000006c;
    position: relative;
}

/* .dropdown-column h3:after {
        content: '';
        position: absolute;
        bottom: -3px;
        left: 0;
        width: 30px;
        height: 3px;
        background: #101010;
    } */

.dropdown-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-column li {
    margin-bottom: 10px;
}

.mega-dropdown .dropdown-column a {
    text-decoration: none;
    color: #555 !important;
    font-size: 14px;
    padding: 8px 0;
    display: block;
    transition: all 0.3s ease;
    line-height: 1.4;
    border-radius: 4px;
    padding-left: 8px;
    margin-left: -8px;
}

.dropdown-column a:hover {
    color: #757677;
    font-weight: 600;
    background: rgba(25, 25, 25, 0.08);
    transform: translateX(3px);
    text-decoration: none;
    border-radius: 10px
}

/* Category-specific styling */
.dropdown-column.location h3 {
    border-bottom-color: #27ae60;
}

.dropdown-column.location h3:after {
    background: #27ae60;
}

.dropdown-column.sapphires h3 {
    border-bottom-color: #0000006c;
}

.dropdown-column.sapphires h3:after {
    background: #0000006c;
}

.dropdown-column.precious h3 {
    border-bottom-color: #0000006c;
}

.dropdown-column.precious h3:after {
    background: #0000006c;
}

.dropdown-column.other h3 {
    border-bottom-color: #0000006c;
}

.dropdown-column.other h3:after {
    background: #0000006c;
}

 .all-gems-link {
        grid-column: 1 / -1;
        text-align: center;
        padding: 20px 0 20px 0;
        border-top: 2px solid #ecf0f1;
        margin-top: 20px;
    }

    .mega-dropdown .all-gems-link a {
        background: linear-gradient(135deg, #f1c40f, #f39c12); /* Golden gradient like Inquire Now button */
        color: #000000 !important;
        padding: 12px 40px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 600;
        font-size: 14px;
        transition: all 0.3s ease;
        display: inline-block;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        box-shadow: 0 4px 15px rgba(241, 196, 15, 0.3); /* Golden shadow */
    }

    .all-gems-link a:hover {
        transform: translateY(-2px);
        color: #1a252f; /* Darker text on hover */
        text-decoration: none;
        box-shadow: 0 6px 20px rgba(241, 196, 15, 0.4); /* Enhanced golden shadow */
        background: linear-gradient(135deg, #f39c12, #e67e22); /* Slightly darker on hover */
    }

.empty-message {
    text-align: center;
    color: #7f8c8d;
    font-style: italic;
    padding: 40px 20px;
    grid-column: 1 / -1;
    font-size: 16px;
}

/* Count badges for categories */
.category-count {
    background: #ecf0f1;
    color: #7f8c8d;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: 8px;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .mega-dropdown {
        width: 700px;
    }

    .dropdown-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .mega-dropdown {
        width: 95vw;
        max-width: 600px;
    }

    .dropdown-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 20px;
    }

    .dropdown-column {
        min-height: auto;
        padding: 10px 15px;
    }

    .all-gems-link {
        grid-column: span 2;
    }
}

@media (max-width: 480px) {
    .dropdown-container {
        grid-template-columns: 1fr;
        padding: 15px;
    }

    .dropdown-column {
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
        padding-bottom: 20px;
        margin-bottom: 15px;
    }

    .dropdown-column:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }

    .all-gems-link {
        grid-column: span 1;
    }
}

/* Loading state */
.dropdown-loading {
    text-align: center;
    padding: 40px;
    color: #7f8c8d;
}