/* Montserrat Font */
@font-face {
    font-family: "Montserrat";
    src: url("../fonts/montserrat-font/Montserrat-Thin.ttf") format("truetype");
    font-weight: 100;
    /* Thin */
    font-style: normal;
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/monteserrat-font/Montserrat-ExtraLight.ttf") format("truetype");
    font-weight: 200;
    /* ExtraLight */
    font-style: normal;
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/montserrat-font/Montserrat-Light.ttf") format("truetype");
    font-weight: 300;
    /* Light */
    font-style: normal;
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/montserrat-font/Montserrat-Regular.ttf") format("truetype");
    font-weight: 400;
    /* Regular */
    font-style: normal;
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/montserrat-font/Montserrat-Medium.ttf") format("truetype");
    font-weight: 500;
    /* Medium */
    font-style: normal;
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/montserrat-font/Montserrat-SemiBold.ttf") format("truetype");
    font-weight: 600;
    /* SemiBold */
    font-style: normal;
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/montserrat-font/Montserrat-Bold.ttf") format("truetype");
    font-weight: 700;
    /* Bold */
    font-style: normal;
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/montserrat-font/Montserrat-ExtraBold.ttf") format("truetype");
    font-weight: 800;
    /* Extra Bold */
    font-style: normal;
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/montserrat-font/Montserrat-Black.ttf") format("truetype");
    font-weight: 900;
    /* Black */
    font-style: normal;
}

/* Montserrat Font */

/* Variable */
:root {
    --primary-color: rgba(0, 204, 255, 1);
    --light-color: rgba(255, 255, 255, 0.7);
    --light-color-1: rgba(255, 255, 255, 0.05);
    --light-color-2: rgba(255, 255, 255, 0.07);
    --light-color-3: rgba(255, 255, 255, 0.08);
    --light-color-4: rgba(255, 255, 255, 0.10);
    --light-color-5: rgba(255, 255, 255, 0.15);
    --dark-color: rgba(13, 18, 14, 1);
    --white-color: rgba(255, 255, 255, 1);
    --red-color: rgba(197, 82, 82, 1);
    --gray-color: rgba(35, 37, 43, 1);
    --bg-color: rgba(16, 15, 22, 1);
}

/* Variable */

/* Reset the default */
html {
    scroll-behavior: smooth;
}

*,
*::before,
*::after {
    box-sizing: border-box !important;
    text-decoration: none !important;
}

::selection {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

::-moz-selection {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

a {
    color: var(--dark-color);
    text-decoration: none !important;
    transition: color 0.3s ease;
}

a * {
    color: inherit;
}

a:hover {
    color: inherit;
}

body {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--white-color);
    background-color: var(--bg-color);
    height: 100vh;
    display: flex;
    flex-direction: column;
}

footer {
    margin-top: auto;
}


p {
    margin-bottom: 0;
}

input:focus,
button:focus {
    box-shadow: none !important;
    border: none;
    outline: none;
}

img {
    user-drag: none;
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

/* Reset the default */

/* GENERAL STYLE */
.bg--primary {
    background-color: var(--primary-color);
}

.clr--primary {
    color: var(--primary-color);
}

.bg--secondary {
    background-color: var(--secondary-color);
}

.clr--secondary {
    color: var(--secondary-color);
}

.bg--dark {
    background-color: var(--dark-color);
}

.clr--dark {
    color: var(--dark-color);
}

.bg--light {
    background-color: var(--light-color);
}

.clr--light {
    color: var(--light-color);
}

.clr--white {
    color: var(--white-color);
}

.clr--red {
    color: var(--red-color);
}

.bg--gray {
    background-color: var(--gray-color);
}

.clr--gray {
    color: var(--gray-color);
}

.py-120 {
    padding-block: 120px;
}

.py-100 {
    padding-block: 100px;
}

.py-80 {
    padding-block: 80px;
}

.py-60 {
    padding-block: 60px;
}

.py-40 {
    padding-block: 40px;
}

.divider {
    border-bottom: 1px solid var(--light-color-5);
    margin-block: 28px;
}

.card-item {
    display: block;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.card-item.hide-item {
    display: none;
}

.card-item.show-item {
    display: block;
    animation: fadeInUp 0.4s ease-in-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-pane {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.tab-pane.show {
    display: block;
    animation: fadeIn 0.4s ease-in-out;
    opacity: 1;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.section-heading {
    font-size: 34px;
    font-weight: 700;
    color: var(--white-color);
}

.section-title {
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--white-color);
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.section-title::before,
.section-title::after {
    content: "";
    background-color: var(--primary-color);
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
}

.subtitle {
    font-size: 16px;
    font-weight: 500;
    color: var(--light-color);
}

.fw-medium {
    font-weight: 500;
}

/* Theme button */
.theme-btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white-color);
    font-size: 16px;
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 99px;
    border: 1px solid transparent;
    box-shadow: 8px 11px 35px 0px rgba(35, 206, 217, 0.25);
    transition: all .3s ease;
}

.theme-btn:hover {
    color: var(--primary-color);
    background-color: transparent;
    border: 1px solid var(--primary-color);
    box-shadow: none;
}

/* Theme button */

/* outline button */
.outline-btn {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 99px;
    border: 1px solid var(--primary-color);
    transition: all .3s ease;
}

.outline-btn:hover {
    color: var(--white-color);
    background-color: var(--gray-color);
    border: 1px solid var(--white-color);
}

/* Outline button */

/* Load More button */
.load-more {
    display: inline-block;
    background-color: transparent;
    color: var(--white-color);
    font-size: 16px;
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 99px;
    border: 0;
    transition: all .3s ease;
}

.load-more:hover {
    color: var(--primary-color);
}

.load-more:hover {
    color: var(--primary-color);
}

/* Load More button */

/* Pagination Styling */
.pagination {
    gap: 10px;
}

.pagination .page-item {
    margin: 0;
}

.pagination .page-link {
    background-color: transparent;
    border: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    font-weight: 600;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all .3s ease;
}

.pagination .page-link:hover {
    background-color: rgba(0, 204, 255, 0.1);
    color: var(--primary-color);
}

.pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.pagination .page-item.disabled .page-link {
    background-color: transparent;
    color: rgba(255, 255, 255, 0.3);
    cursor: not-allowed;
}

.back-to-top.show {
    bottom: 40px;
    right: 40px;
    opacity: 1;
    transform: scale(1);
}

.back-to-top {
    position: fixed;
    bottom: -40px;
    right: 40px;
    display: block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    background: var(--primary-color);
    color: var(--white-color);
    font-size: medium;
    text-align: center;
    text-decoration: none;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.3);
    box-shadow: 4px 4px 10px rgba(35, 206, 217, .2);
    z-index: 9;
    transition: all .3s ease-in-out;
    overflow: hidden;
}

.back-to-top.show:hover {
    background-color: var(--secondary-color);
    color: var(--white-color);
    bottom: 40px;
    opacity: 1;
    box-shadow: 4px 4px 10px rgba(9, 124, 135, .2);
}

.form-label {
    font-size: 18px;
    font-weight: 600;
    color: var(--white-color);
    margin-bottom: 8px;
}

.form-select {
    font-size: 18px;
    font-weight: 500;
    color: var(--light-color);
    padding: 6px 36px 6px 16px;
    border-radius: 99px;
    border: 1px solid var(--light-color-5);
    background-color: var(--light-color-2);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

.form-select:focus {
    color: var(--light-color);
    border: 1px solid var(--primary-color);
    background-color: var(--gray-color);
    box-shadow: none;
}

.form-control {
    font-size: 16px;
    font-weight: 400;
    color: var(--light-color);
    padding: 14px 20px;
    border-radius: 99px;
    border: 1px solid transparent;
    background-color: var(--light-color-2);
}

.form-control::placeholder {
    font-size: 16px;
    font-weight: 400;
    color: var(--light-color);
}

.form-control:focus {
    color: var(--light-color);
    border: 1px solid var(--primary-color);
    background-color: var(--light-color-2);
    box-shadow: none;
}

textarea.form-control {
    border-radius: 20px;
}

.form-check {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
    line-height: 1;
}

.form-check input[type="checkbox"] {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border: 1px solid var(--light-color);
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
    outline: none;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.form-check input[type="checkbox"]::before {
    content: '';
    position: absolute;
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    font-size: 13px;
    color: var(--white-color);
    pointer-events: none;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
}

.form-check input[type="checkbox"]:checked {
    background-image: unset;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check input[type="checkbox"]:checked::before {
    content: '\f00c';
}

.form-check input[type="radio"] {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border: 1px solid var(--light-color);
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
    outline: none;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.form-check input[type="radio"]:checked {
    border-color: var(--primary-color);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%2300CCFF'/%3e%3c/svg%3e");
}

.form-check .form-check-label {
    font-size: 20px;
    font-weight: 600;
    color: var(--white-color);
    line-height: 1;
}

.form-container .form-check {
    display: flex;
    width: max-content;
    margin-bottom: 10px;
}

.form-container .form-check .form-check-label {
    font-size: 18px;
    font-weight: 400;
    color: var(--light-color);
    line-height: 1;
}

.form-container .form-check input[type="radio"]:checked+.form-check-label {
    color: var(--white-color);
}

/* ==============================
    GENERAL STYLE
==============================  */

/* Auth style */
.auth .subtitle .dot {
    display: inline-block;
    width: 9px;
    height: 9px;
    background-color: var(--primary-color);
    border-radius: 50%;
    margin-inline: 10px;
}

.auth .subtitle:has(.dot) {
    display: flex;
    align-items: center;
    color: var(--white-color);
}

.auth .form-wrap {
    padding: 20px;
    background-color: var(--gray-color);
    border-radius: 20px;
}

.auth .section-heading {
    font-size: 32px;
    margin-bottom: 8px;
}

.auth .subtitle {
    font-size: 15px;
    margin-bottom: 0;
}

.auth .row.gy-4 {
    --bs-gutter-y: 0.875rem;
}

.auth .row.gy-3 {
    --bs-gutter-y: 0.75rem;
}

.auth .mb-3 {
    margin-bottom: 0.875rem !important;
}

.auth .mb-4 {
    margin-bottom: 1rem !important;
}

.forgot-password {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    transition: color 0.3s ease-in-out;

    &:hover {
        color: var(--white-color);
    }
}

.signup {
    font-size: 16px;
    font-weight: 400;
    color: var(--white-color);
}

.signup a {
    font-weight: 600;
    color: var(--primary-color);
    transition: color 0.3s ease-in-out;

    &:hover {
        color: var(--white-color);
    }
}

.show-pass {
    font-size: 18px;
    color: var(--light-color);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
}

.show-pass .fa-eye-slash {
    display: none;
}

.show-pass .fa-eye {
    display: block;
}

.show-pass.active .fa-eye-slash {
    display: block;
}

.show-pass.active .fa-eye {
    display: none;
}

/* Auth style */

/* ==============================
    HEADER Section Start
==============================  */
header {
    width: 100%;
    background-color: transparent;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 100;
}

header.is-sticky {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    background-color: var(--bg-color);
    animation: slideDown 0.4s ease-in-out;
}

/* Sticky animation */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: transparent;
    transition: all 0.3s ease;
} */

header.is-sticky {
    background: rgba(16, 15, 22, 1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

header nav.navbar {
    padding: 20px 0;
}

header.is-sticky nav.navbar {
    padding: 20px 0;
}

header .navbar-brand {
    padding: 0;
}

header .navbar-nav {
    background-color: var(--gray-color);
    gap: 22px;
    padding: 10px 16px;
    border-radius: 50px;
}

header .logo img {
    max-width: 170px;
}

header .navbar-nav .nav-link {
    font-size: 18px;
    font-weight: 400;
    color: var(--light-color);
    padding: 10px 16px !important;
    width: max-content;
    position: relative;
    transition: color 0.3s ease;
}

header .navbar-nav .nav-link .dot {
    display: inline-block;
    width: 9px;
    height: 9px;
    background-color: var(--primary-color);
    border-radius: 50%;
    margin-right: 10px;
}

header .navbar-nav .nav-link:has(.dot) {
    display: flex;
    align-items: center;
}


header .navbar-nav .nav-link.active {
    font-weight: 600;
    color: var(--white-color);
    background-color: #100F16;
    border-radius: 50px;
}

/* Navbar toggler */
header .navbar-toggler {
    width: 44px;
    height: 44px;
    padding: 0;
    font-size: 20px;
    line-height: 1;
    color: var(--white-color);
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    transition: all 0.3s ease;
}

header .navbar-toggler:hover {
    color: var(--white-color);
    background-color: var(--dark-color);
}

header .offcanvas {
    background-color: var(--bg-color);
}

header .offcanvas-header {
    padding: 30px;
    border-bottom: 1px solid var(--border-color);
}

header .offcanvas-body {
    padding: 30px;
}

header .offcanvas .btn-close {
    font-size: 20px;
    color: var(--dark-color) !important;
    opacity: 1;
    transition: all 0.3s ease;
}

header .offcanvas .btn-close:hover {
    color: var(--dark-color) !important;
    transform: rotate(180deg);
}


.header-user {
    position: relative;
}

.register-btn {
    font-size: 18px;
    font-weight: 500;
    color: var(--dark-color);
    padding: 12px;
    transition: color 0.3s ease-in-out;

    &:hover {
        color: var(--primary-color);
    }
}

.dropdown-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: none;
    transition: none;
    border: none;
    background-color: transparent;
    padding: 0;
    font-size: 14px;
    text-transform: capitalize;
    font-weight: 400;
    color: var(--gray-color);
}

.dropdown-toggle::after {
    content: "\f078";
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
    font-size: 14px;
    margin-left: 6px;
    transition: transform 0.3s ease;
    display: inline-block;
    vertical-align: middle;
    border: 0;
}

.dropdown>.dropdown-toggle.show::after {
    transform: rotate(-180deg);
}

.header-user .dropdown-toggle::after {
    display: none;
    content: unset;
}

.profile {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    object-fit: cover;
    flex: 0 0 auto;
    background-color: var(--primary-color);
    color: var(--dark-color);
    font-size: 20px;
    box-shadow: none;
    border-radius: 50%;
    outline: 0;
    margin: 0 auto;
    border: 1px solid var(--border-color);
}

.dropdown-menu {
    margin: 0;
    top: calc(100% + 10px) !important;
    min-width: 130px;
    overflow: hidden;
    padding: 10px 15px;
    background: var(--gray-color);
    border-radius: 14px;
    box-shadow: 0 12px 33px 0 rgba(27, 32, 40, 0.05);
    transform: translate3d(0, 0, 0) !important;
}

.dropdown-menu .dropdown-item {
    font-size: 16px;
    font-weight: 500;
    color: var(--light-color);
    padding: 0;
    padding-bottom: 9px;
    background-color: transparent;
    text-transform: capitalize;
    transition: color 0.3s ease;
    cursor: pointer;
    border-bottom: 0;

    &:hover {
        color: var(--primary-color);
    }
}

.dropdown-menu li:last-child .dropdown-item {
    padding-bottom: 0;
}

.credit-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(0, 204, 255, 0.1);
    border: 1px solid rgba(0, 204, 255, 0.3);
    border-radius: 50px;
    cursor: help;
    transition: all 0.3s ease;
}

.credit-badge:hover {
    background: rgba(0, 204, 255, 0.15);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.credit-badge svg {
    flex-shrink: 0;
}

.credit-badge .credit-count {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}

.credit-badge .credit-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    font-weight: 500;
}

/* Mobile User Section in Offcanvas */
.mobile-user-section {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.mobile-login-section {
    padding: 1rem;
}

.mobile-login-section .theme-btn {
    display: block;
    text-align: center;
}

.mobile-profile-links a,
.mobile-profile-links button {
    transition: background-color 0.2s ease;
}

.mobile-profile-links a:hover,
.mobile-profile-links button:hover {
    background-color: rgba(0, 204, 255, 0.1) !important;
}

/* Old credit button style - keeping for backwards compatibility */
.credit-btn {
    padding: 20px 24px;
    background-color: var(--gray-color);
    border-radius: 99px;
    border: 0;
    transition: all 0.3s ease;
}

.credit-btn .total {
    color: var(--white-color);
    font-size: 16px;
    font-weight: 500;
    margin-left: 5px;
}

/* ==============================
    HEADER Section End
==============================  */

/* ==============================
    Hero Section Start
==============================  */
.hero-section {
    position: relative;
    overflow: clip;
    padding-block: 250px 100px;
}

/* Auth page specific styling */
.hero-section.auth-page {
    padding-block: 120px 60px;
    min-height: 100vh;
    /* display: flex; */
    align-items: center;
}

.hero-section:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: url(../images/banner/shape.png) center no-repeat;
    background-size: cover;
}

.hero-section:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 25%;
    z-index: -1;
    background: linear-gradient(180deg,
            rgba(16, 15, 22, 0) 0%,
            #100F16 100%);
    background-size: cover;
}

.bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1;
}

.bg-wrapper .bg-img {
    width: 100%;
}

.hero-section .container {
    position: relative;
}

.hero-section .wrap {
    position: relative;
    display: flex;
}

.hero-section h1 {
    font-size: 36px;
    font-weight: 800;
    color: var(--white-color);
    margin-bottom: 10px;
}

.hero-section h1 span {
    color: var(--primary-color);
}

.hero-section .search-wrapper {
    position: relative;
    margin-top: 20px;
}

.hero-section .search-wrapper .search-icon {
    font-size: 16px;
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    color: var(--primary-color);
}

.hero-section .search-wrapper input::placeholder {
    font-size: 16px;
    font-weight: 400;
    border: 0;
    color: var(--white-color);
}

.hero-section .search-wrapper input {
    padding-left: 50px;
    background-color: var(--gray-color);
    border: 0;
    color: var(--white-color);
    font-size: 16px;
    font-weight: 400;
}

.hero-section .search-wrapper.active input {
    border-radius: 24px 24px 0 0;
}

.hero-section .search-wrapper .filter-submit-btn {
    position: absolute;
    top: 50%;
    right: 13px;
    transform: translateY(-50%);
    width: max-content;
    background-color: var(--light-color-3);
    padding: 8px 16px;
    border-radius: 50px;
    cursor: pointer;
    transition: all .3s ease;
}

.hero-section .search-wrapper .filter-submit-btn:hover {
    color: var(--white-color);
    background-color: var(--primary-color);
}

/* Search Dropdown Styles */
.search-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(22, 21, 29, 0.98) 0%, rgba(31, 41, 55, 0.98) 100%);
    border: 1px solid rgba(0, 204, 255, 0.3);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(0, 204, 255, 0.1);
    z-index: 9999;
    max-height: 500px;
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    animation: slideDown 0.2s ease;
}

.search-dropdown::-webkit-scrollbar {
    width: 6px;
}

.search-dropdown::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.search-dropdown::-webkit-scrollbar-thumb {
    background: rgba(0, 204, 255, 0.3);
    border-radius: 10px;
}

.search-dropdown::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 204, 255, 0.5);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-results {
    padding: 8px;
}

.search-result-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.2s ease;
    margin-bottom: 4px;
    border-left: 3px solid transparent;
    gap: 16px;
    background: rgba(0, 0, 0, 0.2);
}

.search-result-item:hover {
    background: rgba(0, 204, 255, 0.12);
    border-left-color: var(--primary-color);
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(0, 204, 255, 0.2);
}

.search-result-item .result-left {
    flex: 1;
    min-width: 0;
}

.search-result-item .result-badge {
    display: inline-block;
    font-size: 10px;
    color: var(--primary-color);
    background: rgba(0, 204, 255, 0.15);
    padding: 3px 8px;
    border-radius: 12px;
    margin-bottom: 6px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.search-result-item .result-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--white-color);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.search-result-item .result-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
    flex-shrink: 0;
}

.search-result-item .result-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(0, 0, 0, 0.3);
    padding: 4px 8px;
    border-radius: 8px;
}

.search-result-item .result-meta i {
    font-size: 11px;
    color: var(--primary-color);
}

.search-no-results {
    padding: 32px 20px;
    text-align: center;
}

.search-no-results p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 500;
}

.quick-submit-btn {
    background: linear-gradient(135deg, rgba(0, 204, 255, 0.2) 0%, rgba(0, 204, 255, 0.1) 100%);
    color: var(--primary-color);
    border: 1.5px solid var(--primary-color);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0, 204, 255, 0.15);
}

.quick-submit-btn:hover {
    background: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 204, 255, 0.3);
}

.quick-submit-btn i {
    font-size: 12px;
}

.hero-section .circles {
    position: relative;
    display: inline-block;
    height: 125px;
    width: 125px;
    margin-bottom: 50px;

    >div {
        animation: growAndFade 3s infinite ease-out;
        background: linear-gradient(to bottom, #00CCFF 0%, rgba(0, 204, 255, 0) 87%);
        border: 1px solid #00CCFF;
        border-radius: 50%;
        height: 100%;
        opacity: 0;
        position: absolute;
        width: 100%;
        box-shadow: inset 0 4px 4px 0 rgba(49, 140, 231, 0.2);
    }

    .circle1 {
        animation-delay: 1s;
    }

    .circle2 {
        animation-delay: 2s;
    }

    .circle3 {
        animation-delay: 3s;
    }

    .circle4 {
        animation-delay: 3s;
    }

    .circle1::after,
    .circle2::after,
    .circle3::after,
    .circle4::after {
        content: "";
        position: inherit;
        width: 3px;
        height: 3px;
        background: transparent;
        animation: growAndFade 3s infinite ease-out;
    }

    >div::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        transform: translate(-50%, -50%);
        background: transparent;
        animation: starGrowFade 3s infinite ease-out;
        transform-origin: center;
    }

    /* Circle 1 */
    .circle1::after {
        box-shadow:
            100px 0 #00CCFF, -100px 0 #00CCFF,
            0 100px #00CCFF, 0 -100px #00CCFF,
            70px 70px #00CCFF, -70px 70px #00CCFF,
            70px -70px #00CCFF, -70px -70px #00CCFF,
            50px 120px #00CCFF, -50px 120px #00CCFF,
            120px 50px #00CCFF, -120px 50px #00CCFF,
            0 140px #00CCFF, 140px 0 #00CCFF, -140px 0 #00CCFF, 0 -140px #00CCFF,
            60px 90px #00CCFF, -60px 90px #00CCFF, 80px -110px #00CCFF, -80px -110px #00CCFF,
            30px 130px #00CCFF, -30px 130px #00CCFF, 110px 40px #00CCFF, -110px 40px #00CCFF;
    }

    /* Circle 2 */
    .circle2::after {
        box-shadow:
            120px 0 #00CCFF, -120px 0 #00CCFF,
            0 120px #00CCFF, 0 -120px #00CCFF,
            85px 85px #00CCFF, -85px 85px #00CCFF,
            85px -85px #00CCFF, -85px -85px #00CCFF,
            60px 140px #00CCFF, -60px 140px #00CCFF,
            140px 60px #00CCFF, -140px 60px #00CCFF,
            0 160px #00CCFF, 160px 0 #00CCFF, -160px 0 #00CCFF, 0 -160px #00CCFF,
            90px 110px #00CCFF, -90px 110px #00CCFF, 100px -130px #00CCFF, -100px -130px #00CCFF,
            50px 150px #00CCFF, -50px 150px #00CCFF, 130px 70px #00CCFF, -130px 70px #00CCFF;
    }

    /* Circle 3 */
    .circle3::after {
        box-shadow:
            140px 0 #00CCFF, -140px 0 #00CCFF,
            0 140px #00CCFF, 0 -140px #00CCFF,
            100px 100px #00CCFF, -100px 100px #00CCFF,
            100px -100px #00CCFF, -100px -100px #00CCFF,
            80px 160px #00CCFF, -80px 160px #00CCFF,
            160px 80px #00CCFF, -160px 80px #00CCFF,
            0 180px #00CCFF, 180px 0 #00CCFF, -180px 0 #00CCFF, 0 -180px #00CCFF,
            110px 130px #00CCFF, -110px 130px #00CCFF, 120px -150px #00CCFF, -120px -150px #00CCFF,
            70px 170px #00CCFF, -70px 170px #00CCFF, 150px 90px #00CCFF, -150px 90px #00CCFF;
    }

    /* Circle 4 */
    .circle4::after {
        box-shadow:
            160px 0 #00CCFF, -160px 0 #00CCFF,
            0 160px #00CCFF, 0 -160px #00CCFF,
            115px 115px #00CCFF, -115px 115px #00CCFF,
            115px -115px #00CCFF, -115px -115px #00CCFF,
            90px 180px #00CCFF, -90px 180px #00CCFF,
            180px 90px #00CCFF, -180px 90px #00CCFF,
            0 200px #00CCFF, 200px 0 #00CCFF, -200px 0 #00CCFF, 0 -200px #00CCFF,
            120px 140px #00CCFF, -120px 140px #00CCFF, 140px -160px #00CCFF, -140px -160px #00CCFF,
            100px 190px #00CCFF, -100px 190px #00CCFF, 190px 100px #00CCFF, -190px 100px #00CCFF,
            160px 130px #00CCFF, -160px 130px #00CCFF, 130px -180px #00CCFF, -130px -180px #00CCFF;
    }

}

.hero-section .circles>.icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    font-size: 18px;
    z-index: 2;
    color: #00CCFF;
    background: transparent;
    border: none;
    border-radius: 40px;
    cursor: pointer;
}

@keyframes growAndFade {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }

    50% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes starGrowFade {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0);
    }
}

.elemets-wrapper .elements-items {
    width: max-content;
    display: flex;
    align-items: start;
    gap: 6px;
}

.elemets-wrapper .elements-items.one {
    position: absolute;
    top: 0;
    left: 18%;
}

.elemets-wrapper .elements-items.two {
    position: absolute;
    top: 36%;
    left: 6%;
}

.elemets-wrapper .elements-items.three {
    position: absolute;
    top: 10%;
    right: 18%;
}

.elemets-wrapper .elements-items.four {
    position: absolute;
    top: 36%;
    right: 6%;
}

.elemets-wrapper .elements-items .element-item {
    color: var(--white-color);
    font-size: 13px;
    font-weight: 500;
    background-color: var(--gray-color);
    padding: 10px 16px;
    border-radius: 50px;
}

/* ==============================
    Hero Section End
==============================  */

.filter-wrap {
    background: transparent;
}

.filter-wrap.style-two {
    display: none;
    background: var(--gray-color);
    padding: 24px;
    border-radius: 0 0 24px 24px;
    border-top: 1px solid var(--light-color-4);
}

.filter-wrap.style-two.active {
    display: block;
}

.filter-wrap .filter-tabs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-wrap .filter-tabs button {
    padding: 10px 20px;
    background-color: transparent;
    outline: 0;
    box-shadow: 0;
    border: 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--white-color);
    border-radius: 99px;
    transition: all 0.3s ease;
}

.filter-wrap .filter-tabs button.active,
.filter-wrap .filter-tabs button:hover {
    background-color: var(--primary-color);
}

.filter-wrap .filter-tabs button svg {
    margin-right: 10px;
}

.filter-icon i {
    font-size: 22px;
    color: var(--white-color);
}

.filter-categories {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.filter-categories a {
    font-size: 18px;
    font-weight: 400;
    color: var(--light-color);
    padding: 8px 16px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 99px;
    border: 1px solid transparent;
}

.filter-categories a.active,
.filter-categories a:hover {
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}


/* ==============================
    Footer Section Start
==============================  */
.custom-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-logo {
    /* width: 100px; */
    margin-bottom: 20px;
}

.brand-description {
    color: var(--white-color);
    font-size: 1rem;
    max-width: 320px;
}

.nav-section h4 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
    position: relative;
}

.nav-links {
    list-style: none;
    padding-left: 0;
}

.nav-links li {
    margin-bottom: 12px;
}

.nav-links a {
    color: var(--light-color);
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: var(--white-color);
}

.copyright {
    color: var(--light-color);
    font-size: 18px;
}

/* ==============================
    Footer Section End
==============================  */

/* ==============================
    Choose Us Section Start
==============================  */
.live-trends {
    position: relative;
    overflow: clip;
}

.live-trends::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;

    width: 550px;
    height: 550px;

    background: radial-gradient(ellipse at center,
            rgba(0, 204, 255, 0.15) 0%,
            rgba(0, 204, 255, 0.15) 100%);

    transform: translate(-50%, -50%);
    filter: blur(159.98px);
    z-index: 0;
}

.live-trends>* {
    position: relative;
    z-index: 1;
}

.live-trends .dot {
    width: 6px;
    height: 6px;
    background-color: var(--light-color);
    border-radius: 50%;
    margin-inline: 12px;
}

.live-trends .unlock-badge {
    font-size: 20px;
    font-weight: 600;
    color: var(--white-color);
    padding: 16px 20px;
    background-color: var(--gray-color);
    border-radius: 99px;
}

.live-trends .unlock-badge svg {
    margin-right: 5px;
}

.live-trends .card {
    height: 100%;
    padding: 24px;
    border-radius: 24px;
    background-color: var(--gray-color);
    transition: all .3s ease;
}

.live-trends .primary-card {
    background-color: rgba(0, 204, 255, 0.1) !important;
    background:
        linear-gradient(#101016, #101016) padding-box,
        linear-gradient(135deg,
            rgba(0, 204, 255, 1) 0%,
            rgba(16, 15, 22, 1) 100%) border-box;

    position: relative;
    overflow: hidden;
    animation: glowPulse 2s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(0, 204, 255, 0.4), 0 0 40px rgba(0, 204, 255, 0.2);
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 204, 255, 0.4), 0 0 40px rgba(0, 204, 255, 0.2);
        border-color: rgba(0, 204, 255, 0.6);
    }
    50% {
        box-shadow: 0 0 30px rgba(0, 204, 255, 0.6), 0 0 60px rgba(0, 204, 255, 0.3), 0 0 80px rgba(0, 204, 255, 0.1);
        border-color: rgba(0, 204, 255, 1);
    }
}

.live-trends .primary-card::before {
    background: radial-gradient(circle at center, rgba(0, 204, 255, 0.15) 0%, transparent 70%);
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    pointer-events: none;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        opacity: 0.5;
        transform: translateX(-100%) translateY(-100%);
    }
    50% {
        opacity: 1;
        transform: translateX(100%) translateY(100%);
    }
}

.live-trends .locked-card {
    position: relative;
    overflow: hidden;
}

.live-trends .add-trend-card {
    align-items: center;
    text-align: center;
    justify-content: center;
    background-color: transparent;
    border: 1px dashed var(--gray-color);
}

/* 
.live-trends .card:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0px 12px 33px 0px rgba(35, 206, 217, 0.25);
} */

.live-trends .cat-badge {
    font-size: 18px;
    font-weight: 500;
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 99px;
    border: 1px solid var(--primary-color);
}

.live-trends .arrow-link {
    width: 38px;
    height: 38px;
    font-size: 20px;
    color: var(--white-color);
    border-radius: 99px;
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.live-trends .arrow-link i {
    color: var(--white-color) !important;
    transform: rotate(-45deg);
}

.live-trends .card h5 {
    font-weight: 600;
    color: var(--white-color);
    margin-bottom: 1rem;
}

.live-trends .card p {
    font-size: 16px;
    font-weight: 400;
    color: var(--light-color);
    margin-bottom: 1rem !important;
}

.live-trends .card .time,
.live-trends .card .author,
.live-trends .card .comment,
.live-trends .card .rfci-no,
.live-trends .card .likes,
.live-trends .card .dislikes {
    font-size: 16px;
    font-weight: 400;
    color: var(--white-color);
}

.live-trends .card .time i,
.live-trends .card .author i,
.live-trends .card .comment i,
.live-trends .card .rfci-no i,
.live-trends .card .likes i,
.live-trends .card .dislikes i {
    font-size: 16px;
    /* font-weight: 400; */
    color: var(--primary-color);
}

.live-trends .card .trend-meta {
    margin-top: auto;
    margin-bottom: 1rem;
}

.live-trends .card .trend-meta .trend-meta-top,
.live-trends .card .trend-meta .trend-meta-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1em;
}

.live-trends .card .trend-meta .trend-meta-top {
    margin-bottom: 8px;
}

.live-trends .card .trend-reaction {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.live-trends .primary-card .author {
    color: var(--primary-color);
}

.live-trends .no-results-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 2px dashed rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 60px 30px;
}

.live-trends .no-results-card h4 {
    color: rgba(255, 255, 255, 0.9);
}

.live-trends .locked-overlay {
    position: absolute;
    top: 0;
    left: 0;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.live-trends .locked-overlay .lock-icon i {
    font-size: 50px;
    color: var(--primary-color);
}

.live-trends .locked-overlay .title {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.live-trends .locked-overlay .des {
    font-size: 18px;
    color: var(--light-color);
    max-width: 330px;
}

.live-trends .locked-overlay .unlock-now {
    font-size: 18px;
    font-weight: 600;
    color: var(--white-color);
    border: 1px solid var(--primary-color);
    padding: 12px 20px;
    border-radius: 99px;
    background-color: transparent;
    margin-top: 20px;
    transition: all 0.3s ease;

    &:hover {
        background-color: var(--primary-color);
    }
}

.live-trends .locked-overlay .unlock-now i {
    margin-right: 10px;
}

.live-trends .add-trend-card .add-btn {
    font-size: 24px;
    color: var(--white-color);
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 99px;
    background-color: var(--gray-color);
}

/* ==============================
    Choose Us Section Start
==============================  */

/* ==============================
    Steps Section Start
==============================  */
.steps-section .wrap {
    background-color: var(--gray-color);
    border-radius: 24px;
    border: 1px solid rgba(43, 43, 47, 1);
    padding-block: 50px;
}

.steps-section .card {
    height: 100%;
    border: none;
    background-color: transparent;
    text-align: center;
    gap: 12px;
    position: relative;
    padding: 10px 20px;
}

.steps-section .col-lg-4:nth-child(1) .card .arrow {
    position: absolute;
    right: -50px;
    top: 85px;
    z-index: 3;
}

.steps-section .col-lg-4:nth-child(2) .card .arrow {
    position: absolute;
    right: -50px;
    top: 85px;
    z-index: 3;
}

.steps-section .step-circle {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all .3s ease;
    position: relative;
    font-size: 42px;
    font-weight: 700;
    color: var(--white-color);

}

.steps-section .step-circle::before {
    content: "";
    width: 174px;
    height: 174px;
    border-radius: 99px;
    background-color: transparent;
    border: 1px dashed var(--primary-color);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.steps-section .col-lg-4:nth-child(1) .step-circle,
.steps-section .col-lg-4:nth-child(3) .step-circle {
    background-color: rgba(0, 204, 255, 0.08);
}

.steps-section h6 {
    font-size: 18px;
    font-weight: 600;
    color: var(--white-color);
    margin-bottom: 0;
}

.steps-section p {
    font-size: 16px;
    color: var(--light-color);
}

/* ==============================
    Steps Section End
==============================  */

/* ==============================
    Faq Section Start
==============================  */
.faq-section .outline-btn {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 99px;
    border: 1px solid var(--primary-color);
    transition: all .3s ease;
    cursor: pointer;
}

.faq-section .outline-btn:hover {
    color: var(--white-color);
    background-color: var(--gray-color);
    border: 1px solid var(--white-color);
}

.faq-section .content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-section .content h5 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 0;
}

.faq-section .content p {
    color: var(--dark-color);
    opacity: .67;
}

.faq-section .accordion {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.faq-section .accordion-item {
    border: none;
    background-color: transparent;
    overflow: hidden;
}

.faq-section .accordion-button {
    color: var(--white-color);
    font-size: 20px;
    font-weight: 600;
    border-radius: 99px !important;
    background-color: var(--gray-color);
    border: 0;
    padding: 26px 28px;
    transition: all 0.3s ease-in-out;
    position: relative;
    z-index: 1;
    overflow: hidden;
    gap: 10px;
}

.faq-section .accordion-button i {
    color: var(--primary-color);
    font-size: 24px;
}

.faq-section .accordion-button:not(.collapsed) i {
    color: var(--white-color);
}

.faq-section .accordion-button:not(.collapsed) {
    color: var(--white-color);
    box-shadow: none;
    border-color: var(--primary-color);
    border-radius: 99px !important;
    background-color: var(--primary-color);
}

.faq-section .accordion-body {
    background-color: transparent;
    border-radius: 0;
    border: none;
    padding: 22px;
    padding-bottom: 0;
}

/* .faq-section .accordion-item p {
    font-size: 16px;
    font-weight: 400;
    color: var(--white-color);
} */

.accordion-button:not(.collapsed)::after {
    margin-left: auto;
    background-image: none;
    transition: all 0.3s ease;
    transform: rotate(-180deg);
}

.accordion-button::after {
    margin-left: auto;
    content: "\f078";
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
    color: var(--white-color);
    background-image: none;
    transition: all 0.3s ease;
    transform: none;
}

.faq-section .accordion-body ul {
    padding-left: 0;
    margin-bottom: 0;
}

.faq-section .accordion-body p,
.faq-section .accordion-body ul li {
    font-size: 18px;
    font-weight: 500;
    color: var(--white-color);
}

.faq-section .accordion-body p:not(:last-child),
.faq-section .accordion-body ul li:not(:last-child) {
    margin-bottom: 10px;
}

/* ==============================
    Faq Section End
==============================  */

/* ==============================
    Polar Trends Start
==============================  */
.polar-trends .card {
    height: 100%;
    padding: 24px;
    border: 0;
    border-radius: 24px;
    background-color: var(--gray-color);
}

.polar-trends .card .icon {
    margin-bottom: 20px;
}

.polar-trends .cat-badge {
    font-size: 18px;
    font-weight: 500;
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 99px;
    border: 1px solid var(--primary-color);
}

.polar-trends .arrow-link {
    width: 38px;
    height: 38px;
    font-size: 20px;
    color: var(--white-color);
    border-radius: 99px;
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.polar-trends .arrow-link i {
    color: var(--white-color) !important;
    transform: rotate(-45deg);
}

.polar-trends .card .title {
    font-size: 22px;
    font-weight: 600;
    color: var(--white-color);
}

.polar-trends .card .des {
    font-size: 18px;
    font-weight: 400;
    color: var(--light-color);
}

.polar-trends .card p {
    font-size: 16px;
    font-weight: 400;
    color: var(--light-color);
    margin-bottom: 1rem;
}

.polar-trends .polar-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: auto;
}

.polar-trends .card .polar-meta .time,
.polar-trends .card .polar-meta .author {
    font-size: 18px;
    font-weight: 400;
    color: var(--white-color);
}

.polar-trends .card .polar-meta .time i,
.polar-trends .card .polar-meta .author i {
    font-size: 18px;
    font-weight: 400;
    color: var(--primary-color);
}

/* ==============================
    Polar Trends End
==============================  */

/* ==============================
    Report Card Start
==============================  */
.report-card {
    height: 100%;
    padding: 20px;
    border-radius: 12px;
    background-color: var(--gray-color);
    position: relative;
}

/* .report-card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: inherit;
    background: conic-gradient(from -90deg,
            rgba(255, 255, 255, 0.352) 12%,
            rgba(255, 255, 255, 0) 37%,
            rgba(255, 255, 255, 0.352) 62%,
            rgba(255, 255, 255, 0) 87%,
            rgba(255, 255, 255, 0.352) 100%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
} */

.report-card .report-title {
    font-size: 18px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 0;
}

.report-card .report-no {
    font-weight: 600;
    color: var(--white-color);
}

.report-card .des {
    font-size: 14px;
    font-weight: 400;
    color: var(--light-color);
}

.nav-pills {
    gap: 20px;
    flex-wrap: wrap;
}

.nav-pills .nav-link {
    font-size: 20px;
    font-weight: 400;
    color: var(--light-color);
    padding: 4px 16px;
    background-color: var(--light-color-2);
    border: 1px solid transparent;
    border-radius: 99px;
}

.nav-pills .nav-link.active {
    color: var(--primary-color);
    background-color: transparent;
    border: 1px solid var(--primary-color);
}

.activity-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    padding: 24px;
    background-color: var(--light-color-1);
    border-radius: 24px;
}

.activity-list .activity-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-block: 24px;
    border-bottom: 1px solid var(--light-color-1);
}

.activity-list .activity-item:first-child {
    padding-top: 0;
}

.activity-list .activity-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.activity-list .activity-item .activity-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.activity-list .activity-item .activity-time {
    display: flex;
    align-items: center;
    gap: 6px;
}

.activity-list .activity-item .activity-title i,
.activity-list .activity-item .activity-time i {
    font-size: 20px;
    color: var(--primary-color);
}

.activity-list .activity-item .activity-title h6 {
    font-size: 18px;
    font-weight: 600;
    color: var(--white-color);
    margin-bottom: 0;
}

.activity-list .activity-item .activity-time p {
    font-size: 18px;
    font-weight: 400;
    color: var(--white-color);
    margin-bottom: 0;
}

.my-trends .card {
    padding: 24px;
    background-color: var(--light-color-1);
    border-radius: 24px;
    margin-bottom: 40px;
}

.my-trends .card {
    padding: 24px;
    background-color: var(--light-color-1);
    border-radius: 24px;
    margin-bottom: 40px;
}

.my-trends .card:last-child {
    margin-bottom: 0px;
}

.my-trends .card .badge {
    font-size: 18px;
    font-weight: 500;
    color: var(--primary-color);
    padding: 8px 14px;
    background-color: transparent;
    border: 1px solid var(--primary-color);
    border-radius: 99px;
}

.my-trends .card .link-btn,
.my-trends .card .edit-btn,
.my-trends .card .delete-btn {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.my-trends .card .link-btn {
    font-size: 20px;
    color: var(--white-color);
    background-color: var(--primary-color);
    border-radius: 50%;
}

.my-trends .card .link-btn i {
    transform: rotate(-45deg);
}

.my-trends .card .edit-btn {
    font-size: 14px;
    color: var(--primary-color);
    background-color: transparent;
    border-radius: 50%;
    border: 1px solid var(--primary-color);
}

.my-trends .card .delete-btn {
    font-size: 16px;
    color: var(--white-color);
    background-color: var(--light-color-2);
    border-radius: 50%;
}

.my-trends .card .title {
    font-size: 22px;
    font-weight: 600;
    color: var(--white-color);
}

.my-trends .card .subtitle {
    font-size: 18px;
    color: var(--white-color);
}

.my-trends .card .des {
    font-size: 18px;
    font-weight: 400;
    color: var(--light-color);
}

.trend-img-wrapper .trend-img {
    width: 110px;
    height: 75px;
    object-fit: cover;
    border-radius: 10px;
}

.my-trends .card .category-votes {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 12px;
}

.my-trends .card .category-votes .author-img {
    width: 28px;
    height: 28px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 6px;
}

.my-trends .card .category-votes .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.my-trends .card .category-votes span {
    font-size: 18px;
    font-weight: 400;
    color: var(--white-color);
}

.my-trends .card .category-votes i {
    font-size: 20px;
    color: var(--primary-color);
    margin-right: 6px;
}

.my-trends .tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-block: 12px;
}

.my-trends .tags h6 {
    font-size: 18px;
    font-weight: 400;
    color: var(--white-color);
    margin-bottom: 0;
}

.my-trends .tags .tags-wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.my-trends .tags .tags-wrap span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 400;
    color: var(--light-color);
    background-color: var(--light-color-2);
    border-radius: 99px;
    padding: 6px 11px;
}

.my-trends .tags .tags-wrap span.outline-tag {
    color: var(--primary-color);
    background-color: transparent;
    border: 1px solid var(--primary-color);
}

.my-trends .tags .tags-wrap span .number-count {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 400;
    color: var(--primary-color);
    background-color: transparent;
    border-radius: 0;
    padding: 0;
}

.my-trends .card .date,
.my-trends .card .like,
.my-trends .card .dislike {
    font-size: 18px;
    font-weight: 400;
    color: var(--white-color);
}

.my-trends .card .date i,
.my-trends .card .like i,
.my-trends .card .dislike i {
    font-size: 20px;
    font-weight: 400;
    color: var(--primary-color);
    margin-right: 6px;
}

.my-trends .search-wrapper {
    position: relative;
    margin-top: 40px;
}

.my-trends .search-wrapper input {
    padding-left: 85px;
    background-color: var(--light-color-2);
    border: 0;
    color: var(--white-color);
    font-size: 18px;
    font-weight: 400;
}

.my-trends .search-wrapper .search-icon {
    font-size: 18px;
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    color: var(--primary-color);
}

.my-trends .search-wrapper .search-icon.two {
    font-size: 18px;
    position: absolute;
    top: 50%;
    left: 50px;
    transform: translateY(-50%);
    color: var(--primary-color);
}

.my-trends .search-wrapper .submit-btn {
    position: absolute;
    top: 50%;
    right: 13px;
    transform: translateY(-50%);
    width: max-content;
    color: var(--white-color);
    background-color: var(--primary-color);
    border: 1px solid transparent;
    padding: 8px 16px;
    border-radius: 50px;
    cursor: pointer;
    transition: all .3s ease;
}

.my-trends .search-wrapper .submit-btn:hover {
    color: var(--primary-color);
    background-color: transparent;
    border: 1px solid var(--primary-color);
}

/* ==============================
    Report Card End
==============================  */

@media (max-width: 1199px) {
    .section-heading {
        font-size: 30px;
    }

    /* ==============================
        Header Section Start
    ==============================  */
    header .offcanvas-header,
    header .offcanvas-body {
        padding: 20px;
    }

    header .navbar-nav {
        gap: 0;
        padding: 0;
        background: transparent;
    }

    header .navbar-nav .nav-link {
        font-size: 16px;
        padding: 8px 0 !important;
    }

    .profile {
        width: 40px;
        height: 40px;
    }

    .profile svg {
        width: 20px;
        height: 20px;
    }

    .dropdown-menu {
        min-width: 120px;
    }

    .dropdown-menu .dropdown-item {
        font-size: 16px;
    }

    .credit-btn {
        font-size: 16px;
        padding: 14px 20px;
        border-radius: 80px;
    }

    /* ==============================
        Header Section End
    ==============================  */
    .hero-section h1 {
        font-size: 32px;
    }

    /* Auth page specific */
    .hero-section.auth-page {
        padding-block: 100px 50px;
    }

    .auth .section-heading {
        font-size: 28px;
        margin-bottom: 6px;
    }

    .auth .subtitle {
        font-size: 14px;
    }

    .auth .form-wrap {
        padding: 18px;
    }

    .steps-section .card {
        padding: 0 20px;
    }

    .steps-section .step-circle {
        width: 140px;
        height: 140px;
        margin: 0 auto 20px;
        font-size: 38px;
    }

    .steps-section .step-circle::before {
        width: 154px;
        height: 154px;
    }

    .steps-section .col-lg-4:nth-child(1) .card .arrow,
    .steps-section .col-lg-4:nth-child(2) .card .arrow {
        top: 70px;
    }

    .steps-section p {
        font-size: 16px;
    }
}

@media (max-width: 991px) {
    .py-120 {
        padding-block: 100px;
    }

    .py-100 {
        padding-block: 80px;
    }

    .py-80 {
        padding-block: 70px;
    }

    .py-60 {
        padding-block: 48px;
    }

    .py-40 {
        padding-block: 36px;
    }

    .theme-btn,
    .secondary-btn,
    .prev-btn,
    .register-btn {
        font-size: 15px;
        padding: 12px 26px;
    }

    .register-btn {
        padding: 10px;
    }

    .section-heading {
        font-size: 28px;
    }

    .section-title {
        font-size: 15px;
    }

    .subtitle {
        font-size: 15px;
    }

    .form-label,
    .form-check .form-check-label,
    .form-control,
    .form-select,
    .forgot-password,
    .signup {
        font-size: 15px;
    }

    .footer-contact input,
    .form-control,
    .form-select {
        padding: 14px 22px;
    }

    .form-check input[type="checkbox"] {
        width: 21px;
        height: 21px;
    }

    .form-check input[type="checkbox"]::before {
        font-size: 12px;
    }

    .form-banner video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: unset;
    }

    /* ==============================
        Hero Section Start
    ==============================  */
    .hero-section::before {
        content: unset;
    }

    .hero-section h1 {
        font-size: 28px;
    }

    /* Auth page specific */
    .hero-section.auth-page {
        padding-block: 80px 40px;
    }

    .auth .section-heading {
        font-size: 24px;
        margin-bottom: 6px;
    }

    .auth .subtitle {
        font-size: 13px;
    }

    .auth .mb-3,
    .auth .mb-4 {
        margin-bottom: 0.75rem !important;
    }

    /* ==============================
        Hero Section End
    ==============================  */

    /* ==============================
        Choose Us Section Start
    ==============================  */
    .choose-us .card {
        padding: 20px;
        gap: 15px;
    }

    /* ==============================
        Choose Us Section End
    ==============================  */


    .steps-section .step-circle {
        width: 120px;
        height: 120px;
        font-size: 32px;
    }

    .steps-section .step-circle::before {
        width: 154px;
        height: 154px;
    }

    .steps-section .col-lg-4:nth-child(1) .card .arrow,
    .steps-section .col-lg-4:nth-child(2) .card .arrow {
        display: none;
    }


    /* ==============================
        Faq Section Start
    ==============================  */
    .faq-section .accordion {
        gap: 20px;
    }

    .faq-section .accordion-item .accordion-body {
        padding: 22px;
        padding-bottom: 0;
    }

    .faq-section .accordion-button {
        font-size: 18px;
        padding: 20px 24px;
    }

    .faq-section .accordion-body p,
    .faq-section .accordion-body ul li {
        font-size: 17px;
    }

    /* ==============================
        Faq Section End
    ==============================  */
}

@media (max-width: 767px) {
    .py-120 {
        padding-block: 80px;
    }

    .py-100 {
        padding-block: 60px;
    }

    .py-80 {
        padding-block: 60px;
    }

    .py-60 {
        padding-block: 42px;
    }

    .py-40 {
        padding-block: 32px;
    }

    .theme-btn,
    .secondary-btn,
    .prev-btn,
    .register-btn {
        font-size: 16px;
        padding: 10px 22px;
    }

    .register-btn {
        padding: 10px;
    }

    .section-heading {
        font-size: 32px;
    }

    .section-title {
        font-size: 17px;
    }

    .subtitle {
        font-size: 16px;
    }

    header nav.navbar {
        padding: 14px 0;
    }

    header .navbar-brand {
        width: 160px;
    }

    /* ==============================
        Hero Section Start
    ==============================  */
    .hero-section h1 {
        font-size: 28px;
    }

    .hero-section .circles {
        height: 100px;
        width: 100px;
    }

    .elemets-wrapper .elements-items.one {
        top: -6%;
        left: 10%;
    }

    .elemets-wrapper .elements-items.two {
        top: 24%;
    }

    .elemets-wrapper .elements-items.three {
        top: 0%;
        right: 10%;
    }

    .elemets-wrapper .elements-items.four {
        top: 24%;
    }

    /* ==============================
        Hero Section End
    ==============================  */

    /* ==============================
        Choose Us Section Start
    ==============================  */
    .choose-us .card {
        padding: 20px;
        gap: 14px;
    }

    .choose-us .card p {
        font-size: 16px;
    }

    /* ==============================
        Choose Us Section Start
    ==============================  */

    /* ==============================
        Faq Section Start
    ==============================  */
    .faq-section .accordion {
        gap: 16px;
    }

    .faq-section .accordion-item .accordion-body {
        padding: 20px;
        padding-bottom: 0;
    }

    .faq-section .accordion-button {
        font-size: 17px;
        padding: 16px 20px;
    }

    .faq-section .accordion-body p,
    .faq-section .accordion-body ul li {
        font-size: 16px;
    }

    /* ==============================
        Faq Section End
    ==============================  */
}

@media (max-width: 575px) {
    .draw-svg {
        width: 60px;
        height: 60px;
    }

    .py-120 {
        padding-block: 60px;
    }

    .py-100 {
        padding-block: 50px;
    }

    .py-80 {
        padding-block: 48px;
    }

    .py-60 {
        padding-block: 36px;
    }

    .py-40 {
        padding-block: 24px;
    }

    .theme-btn,
    .prev-btn,
    .register-btn,
    .secondary-btn {
        font-size: 15px;
        padding: 10px 24px;
    }

    .register-btn {
        padding: 8px;
    }

    .section-heading {
        font-size: 28px;
    }

    .section-title {
        font-size: 15px;
    }

    .subtitle {
        font-size: 13px;
    }

    .auth .form-wrap {
        padding: 16px;
        border-radius: 16px;
    }

    .form-label,
    .form-check .form-check-label,
    .form-control,
    .form-select,
    .forgot-password,
    .signup {
        font-size: 15px;
    }

    .footer-contact input,
    .form-control,
    .form-select {
        padding: 10px 16px;
        border-radius: 50px;
    }

    textarea.form-control {
        border-radius: 15px;
    }

    .form-check {
        gap: 8px;
    }

    .form-check input[type="checkbox"] {
        width: 18px;
        height: 18px;
    }

    .form-check input[type="checkbox"]::before {
        font-size: 10px;
    }

    .signup {
        display: block;
        text-align: center;
    }

    /* ==============================
        Header Section Start
    ==============================  */
    header nav.navbar {
        padding: 10px 0;
    }

    header .navbar-toggler {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    header .navbar-brand {
        width: 140px;
    }

    header .navbar-brand img {
        width: 100%;
        height: 100%;
    }

    header .navbar-nav .nav-link {
        font-size: 15px;
        padding: 6px 0 !important;
    }

    /* .profile {
        width: 40px;
        height: 40px;
    } */

    .dropdown-menu {
        min-width: 100%;
    }

    .dropdown-menu .dropdown-item {
        font-size: 15px;
    }

    .header-user .dropdown-menu .dropdown-item .icon svg {
        width: 18px;
        height: 18px;
    }

    .credit-btn {
        font-size: 15px;
        padding: 12px 18px;
        width: 100%;
        border-radius: 60px;
        text-align: center;
        display: block;
    }

    .credit-btn .total {
        display: inline-block;
        margin-left: 4px;
    }

    /* ==============================
        Header Section End
    ==============================  */

    /* ==============================
        Hero Section Start
    ==============================  */
    .hero-section {
        padding-block: 120px 30px;
    }

    .hero-section h1 {
        font-size: 24px;
    }

    .hero-section .circles {
        height: 75px;
        width: 75px;
    }

    .elemets-wrapper .elements-items .element-item {
        font-size: 10px;
    }

    .elemets-wrapper .elements-items.one {
        top: 0;
        left: 10%;
    }

    .elemets-wrapper .elements-items.three {
        top: 3%;
        right: 15%;
    }

    /* ==============================
        Hero Section End
    ==============================  */

    /* ==============================
        Choose Us Section Start
    ==============================  */
    .choose-us .card {
        padding: 18px;
        gap: 12px;
    }

    .choose-us .card p {
        font-size: 15px;
    }

    /* ==============================
        Choose Us Section End
    ==============================  */

    /* ==============================
        Report Card Start
    ==============================  */

    .my-trends .card .category-votes {
        gap: 10px;
    }

    .my-trends .card .category-votes span {
        font-size: 14px;
    }

    .my-trends .card .category-votes i {
        font-size: 16px;
        margin-right: 4px;
    }

    /* ==============================
        Report Card Start
    ==============================  */

    /* ==============================
        Steps Section End
    ==============================  */
    .steps-section .step-circle {
        width: 120px;
        height: 120px;
        font-size: 30px;
    }

    .steps-section .step-circle::before {
        width: 134px;
        height: 134px;
    }

    .steps-section p {
        font-size: 15px;
    }

    /* ==============================
        Steps Section End
    ==============================  */

    /* ==============================
        Faq Section Start
    ==============================  */
    .faq-section .accordion {
        gap: 16px;
    }

    .faq-section .accordion-item .accordion-body {
        padding: 18px;
        padding-bottom: 0;
    }

    .faq-section .accordion-button {
        font-size: 16px;
        padding: 16px 20px;
    }

    .faq-section .accordion-body p,
    .faq-section .accordion-body ul li {
        font-size: 15px;
    }

    /* ==============================
        Faq Section End
    ==============================  */

    .footer-logo {
        width: unset;
    }

    .footer-contact .contact-title {
        font-size: 16px;
    }

    .footer-contact button {
        width: 35px;
        height: 35px;
        right: 6px;
        font-size: 14px;
    }

    .nav-section .nav-links a {
        font-size: 15px;
    }

    .copyright {
        font-size: 15px;
        text-align: center;
    }

    .back-to-top {
        width: 38px;
        height: 38px;
        line-height: 38px;
        font-size: 15px;
    }

    .back-to-top.show {
        bottom: 18px;
        right: 18px;
    }

    .back-to-top.show:hover {
        bottom: 26px;
    }
}

@media (max-width: 449px) {
    .elemets-wrapper .elements-items .element-item {
        font-size: 8px;
    }

    .elemets-wrapper .elements-items.one {
        top: 0;
        left: 10%;
    }

    .elemets-wrapper .elements-items.two {
        top: 20%;
    }

    .elemets-wrapper .elements-items.three {
        top: 3%;
        right: 15%;
    }

    .elemets-wrapper .elements-items.four {
        top: 20%;
    }
}

/* ==============================
    Community Suggestions Styling
==============================  */
.community-suggestions-section {
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.suggestions-header h5 {
    color: var(--white-color);
    font-size: 16px;
    font-weight: 600;
}

.suggestions-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.suggestion-field-group .field-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.suggestion-field-group .field-card:hover {
    border-color: rgba(0, 204, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 204, 255, 0.1);
}

.field-header {
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.field-label {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

.suggestion-count {
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    font-weight: 500;
}

.badge-pill {
    background: rgba(0, 204, 255, 0.15);
    color: var(--primary-color);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
}

.original-value-box {
    padding: 10px 14px;
    background: linear-gradient(135deg, rgba(0, 204, 255, 0.08), rgba(0, 204, 255, 0.03));
    border-left: 2px solid var(--primary-color);
    margin: 0;
}

.original-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.original-content {
    color: var(--white-color);
    font-size: 13px;
    font-weight: 500;
}

.suggestions-list {
    padding: 12px 14px;
}

.suggestions-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Compact Grid for Categories */
.suggestions-compact-grid {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-behavior: smooth;
}

.suggestions-compact-grid::-webkit-scrollbar {
    height: 6px;
}

.suggestions-compact-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.suggestions-compact-grid::-webkit-scrollbar-thumb {
    background: rgba(0, 204, 255, 0.3);
    border-radius: 3px;
}

.suggestions-compact-grid::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 204, 255, 0.5);
}

.suggestion-compact-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 8px 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    min-width: 110px;
    max-width: 150px;
}

.suggestion-compact-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 204, 255, 0.4);
    transform: translateY(-2px);
}

.suggestion-compact-item.voted {
    background: rgba(0, 204, 255, 0.15);
    border-color: var(--primary-color);
}

.suggestion-compact-item.not-clickable {
    cursor: default;
    opacity: 0.8;
}

.compact-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.compact-value {
    color: var(--white-color);
    font-size: 12px;
    font-weight: 600;
    display: block;
}

.compact-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.vote-badge {
    background: rgba(0, 0, 0, 0.3);
    color: var(--white-color);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.suggestion-compact-item.voted .vote-badge {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white-color);
}

.author-mini {
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.show-more-compact-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed rgba(255, 255, 255, 0.2);
    color: var(--primary-color);
    font-size: 11px;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-align: center;
    flex-shrink: 0;
    white-space: nowrap;
    min-width: 80px;
}

.show-more-compact-btn:hover {
    background: rgba(0, 204, 255, 0.1);
    border-color: var(--primary-color);
}

/* Detailed List for Other Fields */
.suggestions-detailed-list {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-behavior: smooth;
}

.suggestions-detailed-list::-webkit-scrollbar {
    height: 6px;
}

.suggestions-detailed-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.suggestions-detailed-list::-webkit-scrollbar-thumb {
    background: rgba(0, 204, 255, 0.3);
    border-radius: 3px;
}

.suggestions-detailed-list::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 204, 255, 0.5);
}

.suggestion-detailed-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    min-width: 250px;
    max-width: 350px;
}

.suggestion-detailed-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 204, 255, 0.3);
    transform: translateX(4px);
}

.suggestion-detailed-item.voted {
    background: rgba(0, 204, 255, 0.12);
    border-color: var(--primary-color);
}

.suggestion-detailed-item.not-clickable {
    cursor: default;
    opacity: 0.8;
}

.suggestion-rank {
    flex-shrink: 0;
}

.rank-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: rgba(0, 204, 255, 0.15);
    color: var(--primary-color);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
}

.suggestion-body {
    flex: 1;
    min-width: 0;
}

.suggestion-text {
    color: var(--white-color);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 6px;
    word-break: break-word;
}

.suggestion-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.meta-author {
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    font-weight: 500;
}

.suggestion-vote-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.vote-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.vote-btn:hover {
    background: rgba(0, 204, 255, 0.15);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: scale(1.1);
}

.vote-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
}

.vote-count {
    color: var(--white-color);
    font-size: 11px;
    font-weight: 600;
}

.show-more-detailed-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed rgba(255, 255, 255, 0.2);
    color: var(--primary-color);
    font-size: 12px;
    padding: 8px 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-align: center;
    flex-shrink: 0;
    white-space: nowrap;
    min-width: 120px;
    align-self: center;
}

.show-more-detailed-btn:hover {
    background: rgba(0, 204, 255, 0.1);
    border-color: var(--primary-color);
}

/* Responsive Design for Suggestions */
@media (max-width: 768px) {
    .filter-categories {
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 10px;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: rgba(0, 204, 255, 0.3) rgba(0, 0, 0, 0.2);
    }

    .filter-categories::-webkit-scrollbar {
        height: 4px;
    }

    .filter-categories::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.2);
        border-radius: 10px;
    }

    .filter-categories::-webkit-scrollbar-thumb {
        background: rgba(0, 204, 255, 0.3);
        border-radius: 10px;
    }

    .filter-categories::-webkit-scrollbar-thumb:hover {
        background: rgba(0, 204, 255, 0.5);
    }

    .filter-categories a {
        white-space: nowrap;
        flex-shrink: 0;
        font-size: 15px;
        padding: 6px 14px;
    }

    /* Heading and text size reductions */
    .section-heading {
        font-size: 23px !important;
    }

    .section-title {
        font-size: 14px !important;
    }

    h1 {
        font-size: 28px !important;
    }

    h2 {
        font-size: 24px !important;
    }

    h3 {
        font-size: 20px !important;
    }

    h4 {
        font-size: 18px !important;
    }

    h5 {
        font-size: 16px !important;
    }

    h6 {
        font-size: 14px !important;
    }

    p, .des {
        font-size: 14px !important;
    }

    .card .card-title {
        font-size: 16px !important;
    }

    /* Article category filters horizontal scroll */
    .filter-wrap .nav-pills {
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: rgba(0, 204, 255, 0.3) rgba(0, 0, 0, 0.2);
    }

    .filter-wrap .nav-pills::-webkit-scrollbar {
        height: 4px;
    }

    .filter-wrap .nav-pills::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.2);
        border-radius: 10px;
    }

    .filter-wrap .nav-pills::-webkit-scrollbar-thumb {
        background: rgba(0, 204, 255, 0.3);
        border-radius: 10px;
    }

    .filter-wrap .nav-pills::-webkit-scrollbar-thumb:hover {
        background: rgba(0, 204, 255, 0.5);
    }

    .filter-wrap .nav-pills .nav-item {
        flex-shrink: 0;
    }

    .filter-wrap .nav-pills .nav-link {
        white-space: nowrap;
        font-size: 15px;
        padding: 8px 16px;
    }

    .filter-wrap .filter-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
    }

    .filter-wrap .filter-tabs button {
        white-space: nowrap;
        flex-shrink: 0;
        font-size: 15px;
        padding: 8px 16px;
    }

    .community-suggestions-section {
        padding: 16px;
    }

    .suggestions-compact-grid,
    .suggestions-detailed-list {
        gap: 6px;
    }

    .suggestion-compact-item {
        padding: 8px;
        min-width: 100px;
        max-width: 130px;
    }

    .compact-value {
        font-size: 12px;
    }

    .suggestion-detailed-item {
        padding: 10px;
        gap: 8px;
        min-width: 220px;
        max-width: 300px;
    }

    .rank-number {
        width: 24px;
        height: 24px;
        font-size: 11px;
    }

    .suggestion-text {
        font-size: 12px;
    }

    .vote-btn {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .field-header {
        padding: 12px 16px;
    }

    .suggestions-list {
        padding: 16px;
    }

    .suggestion-compact-item {
        min-width: 90px;
        max-width: 120px;
    }

    .suggestion-detailed-item {
        min-width: 200px;
        max-width: 280px;
    }
}

/* ==============================
    Source Link Section
==============================  */
.source-link-container {
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.source-link-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    gap: 12px;
}

.source-title {
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.source-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white-color);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.icon-btn:hover {
    background: rgba(0, 204, 255, 0.15);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.source-link-url {
    font-size: 14px;
    line-height: 1.5;
}

.source-link-url a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    word-break: break-all;
    transition: color 0.3s ease;
}

.source-link-url a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Mobile Responsive for Source Link */
@media (max-width: 768px) {
    .source-link-container {
        padding: 12px;
    }

    .source-link-header {
        margin-bottom: 10px;
        gap: 8px;
    }

    .source-title {
        font-size: 13px;
        gap: 6px;
    }

    .source-title i {
        font-size: 13px;
    }

    .source-actions {
        gap: 6px;
    }

    .icon-btn {
        width: 30px;
        height: 30px;
        font-size: 13px;
        border-radius: 6px;
    }

    .source-link-url {
        font-size: 12px;
        line-height: 1.4;
    }

    .outline-btn {
        font-size: 17px;
    }

    /* Comment actions responsive */
    .category-votes {
        font-size: 14px !important;
    }

    .category-votes i {
        font-size: 16px !important;
        margin-right: 4px !important;
    }

    .category-votes span {
        font-size: 14px !important;
    }

    /* Trend details meta responsive */
    .trend-meta-top,
    .trend-meta-bottom {
        font-size: 13px;
    }

    .trend-reaction .likes,
    .trend-reaction .dislikes {
        font-size: 14px;
        padding: 8px 12px;
    }
}