:root {
  /* Base dark green-white theme */
  --bg: #0a0f0a; /* Dark greenish black */
  --surface: #101510; /* Slightly lighter for panels/cards */
  --text: #ffffff;
  --muted: #c9c9c9;
  --primary: #00C853; /* Bright green accent */
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 6px 18px rgba(255, 255, 255, 0.15); /* White glow shadow */
  --glass: rgba(255, 255, 255, 0.05);
}

/* Body */
body.vl-public {
  background: var(--bg);
  color: var(--text);
  font-family: "Montserrat", sans-serif;
  padding: 0;
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
  transition: background-color .25s ease, color .25s ease;
}

/* Generic surfaces (cards, panels, containers) */
.container,
.card,
.panel {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  color: var(--text);
  transition: background-color .25s ease, color .25s ease, border-color .25s ease;
}

/* Headings / title boxes */
h1, h2, h3, h4, h5, h6 {
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.heading-box, .title-box {
  background: #ffffff;
  color: #000;
  padding: 10px 20px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
}

/* Links */
a, .link {
  color: var(--primary);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: .8;
}

/* Buttons */
.vl-public .cmn--btn {
  color: #fff;
  border-radius: 5px;
  line-height: 24px;
  font-weight: 600;
  padding: 12px 30px;
  background: var(--primary);
  border: 1px solid rgba(0, 200, 83, 0.3);
  text-transform: uppercase;
  font-size: 16px;
  overflow: hidden;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Jost", sans-serif;
  box-shadow: 0 0 12px rgba(0, 255, 128, 0.5);
  transition: background .25s ease, box-shadow .25s ease;
}

.cmn--btn:hover {
  background: #00E676;
  box-shadow: 0 0 18px rgba(0, 255, 128, 0.75);
}

.cmn--btn.btn--sm { padding: 10px 20px; }
.cmn--btn.btn--md { padding: 10px 25px; }
.cmn--btn.btn--lg { padding: 13px 35px; }
.cmn--btn.btn--block { display: block; width: 100%; }

.cmn--btn i:first-child { margin-right: 5px; }
.cmn--btn i:last-child { margin-left: 5px; }

/* Scroll to top */
.scrollToTop {
  background: var(--primary);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  box-shadow: 0 0 18px rgba(0,255,128,0.7);
}

/* Inputs, textareas, selects, navs */
input, textarea, select, .nav, .header {
  background: #121812;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 8px 12px;
  transition: border-color .25s ease, background-color .25s ease;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 8px rgba(0,255,128,0.4);
}

/* Muted / small text */
.muted, small {
  color: var(--muted);
}

/* Images */
img.dim-on-dark {
  filter: brightness(.9) contrast(.95);
  transition: filter .25s ease;
}

/* Video button */
.video__button {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 24px rgba(0,255,128,0.4);
}
.video__button::before,
.video__button::after {
  background: var(--primary);
  opacity: 0.12;
}

/* Ripple animation */
@keyframes outer-ripple {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  80% {
    transform: scale(2.5);
    opacity: 0;
  }
  100% {
    transform: scale(3.5);
    opacity: 0;
  }
}


/* =========================================================
   DARK GREEN GLOW THEME
   ========================================================= */

/* ========== Base Variables ========== */
:root {
  --bg: #0b0f0b;           /* Deep dark greenish background */
  --surface: #121812;      /* Panels / cards */
  --text: #E0FFE0;         /* Light greenish white */
  --muted: #A5D6A7;        /* Soft muted green */
  --primary: #00C853;      /* Bright green accent */
  --primary-hover: #00E676;/* Light neon green on hover */
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 0 18px rgba(255, 255, 255, 0.15); /* White glow shadow */
}

/* ========== Global Structure ========== */
html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: var(--bg);
  color: var(--text);
}

body.vl-public {
  background: var(--bg);
  color: var(--text);
  font-family: "Montserrat", sans-serif;
  padding: 0;
  margin: 0;
  line-height: 1.6;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  transition: background-color .3s ease, color .3s ease;
}

/* ========== Containers & Panels ========== */
.container,
.card,
.panel {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  color: var(--text);
  border-radius: 8px;
  transition: all .3s ease;
}

/* ========== Typography ========== */
.vl-public h1,
.vl-public h2,
.vl-public h3,
.vl-public h4,
.vl-public h5,
.vl-public h6 {
  font-family: "Jost", sans-serif;
  font-weight: 600;
  margin: 0;
  line-height: 1.2;
  color: #A5D6A7;
}

.vl-public h1 a,
.vl-public h2 a,
.vl-public h3 a,
.vl-public h4 a,
.vl-public h5 a,
.vl-public h6 a {
  color: #B9F6CA;
  transition: color .3s ease;
}

.vl-public h1 a:hover,
.vl-public h2 a:hover,
.vl-public h3 a:hover,
.vl-public h4 a:hover,
.vl-public h5 a:hover,
.vl-public h6 a:hover {
  color: var(--primary);
}

/* Heading Sizes */
h1 { font-size: 42px; }
h2 { font-size: 36px; line-height: 46px; }
h3 { font-size: 28px; line-height: 38px; }
h4 { font-size: 24px; line-height: 28px; }
h5 { font-size: 20px; line-height: 26px; }
h6 { font-size: 18px; }

@media (min-width: 768px) {
  h1 { font-size: 80px; }
  h2 { font-size: 54px; line-height: 64px; }
  h3 { font-size: 36px; line-height: 46px; }
  h4 { font-size: 28px; line-height: 38px; }
  h5 { font-size: 24px; line-height: 28px; }
  h6 { font-size: 20px; line-height: 26px; }
}

/* Paragraphs */
p {
  margin-top: -12px;
  color: var(--text);
}
p:last-child { margin-bottom: -7px !important; }
p a { color: var(--primary); }
p a:hover { color: var(--primary-hover); }

/* Lists */
ul { margin: 0; padding: 0; color: #C8E6C9; }
ul li { list-style: none; padding: 5px 0; }

/* ========== Buttons ========== */
.vl-public .cmn--btn {
  color: #fff;
  border-radius: 6px;
  font-weight: 600;
  padding: 12px 30px;
  background: var(--primary);
  border: 1px solid rgba(0, 200, 83, 0.3);
  text-transform: uppercase;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Jost", sans-serif;
  box-shadow: 0 0 12px rgba(0, 255, 128, 0.4);
  transition: all .3s ease;
}
.cmn--btn:hover {
  background: var(--primary-hover);
  box-shadow: 0 0 20px rgba(0, 255, 128, 0.8);
}

/* Button sizes */
.cmn--btn.btn--sm { padding: 10px 20px; }
.cmn--btn.btn--md { padding: 10px 25px; }
.cmn--btn.btn--lg { padding: 13px 35px; }
.cmn--btn.btn--block { display: block; width: 100%; }

/* Icons in buttons */
.cmn--btn i:first-child { margin-right: 5px; }
.cmn--btn i:last-child { margin-left: 5px; }

/* ========== Inputs, Textareas, Selects ========== */
input, textarea, select {
  background: #1A201A;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 10px 12px;
  width: 100%;
  transition: all .25s ease;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 8px rgba(0,255,128,0.4);
}

/* ========== Links ========== */
a {
  display: inline-block;
  color: var(--primary);
  text-decoration: none;
  transition: all .3s ease;
}
a:hover { color: var(--primary-hover); }

/* ========== Scroll to Top ========== */
.scrollToTop {
  background: var(--primary);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  box-shadow: 0 0 18px rgba(255,255,255,0.5);
}

/* ========== Video Button ========== */
.video__button {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 24px rgba(0,255,128,0.4);
}
.video__button::before,
.video__button::after {
  background: var(--primary);
  opacity: 0.12;
}

/* ========== Animations ========== */
@keyframes outer-ripple {
  0% { transform: scale(1); opacity: 0.5; }
  80% { transform: scale(2.5); opacity: 0; }
  100% { transform: scale(3.5); opacity: 0; }
}

@keyframes inner-ripple {
  0%, 30% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ========== Muted Text & Small ========== */
.muted, small { color: var(--muted); }

/* ========== Optional: Heading Boxes ========== */
.heading-box {
  background: #ffffff;
  color: #000;
  padding: 10px 20px;
  border-radius: 6px;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.15);
  margin-bottom: 20px;
}


/* =========================================================
   BACKGROUNDS, SPACING, & SCROLLBAR (Dark Green Glow Theme)
   ========================================================= */

/* ========== Background Utilities ========== */
.bg_img {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: scroll;
}

.right_center { background-position: right center; }
.left_center { background-position: left center; }
.bottom_center { background-position: bottom center; }
.bottom_left { background-position: bottom left; }
.bottom_right { background-position: bottom right; }
.top_center { background-position: top center; }
.top_left { background-position: top left; }
.top_right { background-position: top right; }

.bg_contain { background-size: contain; }
.bg_fixed { background-attachment: fixed; }

/* ========== Overlays ========== */
.bg--overlay::before,
.section__category::before {
  position: absolute;
  content: '';
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 200, 83, 0.08); /* Transparent green overlay */
  pointer-events: none;
  border-radius: inherit;
}

/* ========== Flex Utilities (common layout structures) ========== */
.footer-links,
.footer-links li,
.social-icons,
.header-wrapper,
.header-wrapper .right-area,
.menu,
.header-top .header-top-area,
.header-top .header-top-area .social,
.testimonial-item .testimonial-content .testimonial-header,
.contact__item,
.profile-wrapper,
.dashboard__item .dashboard__header,
.dashboard__item,
.deposit-item,
.deposit-preview,
.message__chatbox__header,
.reply-item,
.post__item .post__content .meta__date,
.post__share,
.widget.widget__tags ul,
.widget__post,
.post__tag {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

/* ========== Section Spacing ========== */
.pt-40 { padding-top: 40px; }
.pb-40 { padding-bottom: 40px; }
.pt-60 { padding-top: 60px; }
.pb-60 { padding-bottom: 60px; }
.pt-80 { padding-top: 80px; }
.pb-80 { padding-bottom: 80px; }
.pt-120 { padding-top: 80px; }
.pb-120 { padding-bottom: 80px; }

@media (min-width: 992px) {
  .pt-120 { padding-top: 120px; }
  .pb-120 { padding-bottom: 120px; }
}

/* ========== Negative Margins (for section overlap) ========== */
.mb-30-none { margin-bottom: -30px !important; }
.mb-40-none { margin-bottom: -40px !important; }

/* ========== Scrollbar (Dark Neon Green Theme) ========== */
body *::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

body *::-webkit-scrollbar-track {
  background-color: #1a1a1a;
  border-radius: 4px;
  box-shadow: inset 0 0 6px rgba(0, 255, 128, 0.1);
}

body *::-webkit-scrollbar-thumb {
  background-color: #00C853;
  border-radius: 4px;
  box-shadow: 0 0 6px rgba(0, 255, 128, 0.5);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

body *::-webkit-scrollbar-thumb:hover {
  background-color: #00E676;
  box-shadow: 0 0 8px rgba(0, 255, 128, 0.8);
}

/* Firefox scrollbar */
body {
  scrollbar-color: #00C853 #1a1a1a;
  scrollbar-width: thin;
}

/* ===========================
   🌑 Dark + Green UI Theme
   =========================== */

/* Background Image Utilities */
.bg_img {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.right_center { background-position: right center; }
.left_center { background-position: left center; }
.bottom_center { background-position: bottom center; }
.bottom_left { background-position: bottom left; }
.bottom_right { background-position: bottom right; }
.top_center { background-position: top center; }
.top_left { background-position: top left; }
.top_right { background-position: top right; }
.bg_contain { background-size: contain; }
.bg_fixed { background-attachment: fixed; }

.bg--overlay::before,
.section__category::before {
    position: absolute;
    content: '';
}

/* Flex Layout Utilities */
.footer-links,
.footer-links li,
.social-icons,
.header-wrapper,
.header-wrapper .right-area,
.menu,
.header-top .header-top-area,
.header-top .header-top-area .social,
.testimonial-item .testimonial-content .testimonial-header,
.contact__item,
.profile-wrapper,
.dashboard__item .dashboard__header,
.dashboard__item,
.deposit-item,
.deposit-preview,
.message__chatbox__header,
.reply-item,
.post__item .post__content .meta__date,
.post__share,
.widget.widget__tags ul,
.widget__post,
.post__tag {
    display: flex;
    flex-wrap: wrap;
}

/* Section Spacing */
.pt-80 { padding-top: 80px; }
.pb-80 { padding-bottom: 80px; }
.pt-60 { padding-top: 40px; }
.pb-60 { padding-bottom: 40px; }
.pt-120 { padding-top: 80px; }
.pb-120 { padding-bottom: 80px; }

@media (min-width: 992px) {
    .pt-120 { padding-top: 120px; }
    .pb-120 { padding-bottom: 120px; }
    .pt-60 { padding-top: 60px; }
    .pb-60 { padding-bottom: 60px; }
}

/* Section Header */
.mb-30-none { margin-bottom: -30px !important; }
.mb-40-none { margin-bottom: -40px !important; }

/* Scrollbar - Dark Theme */
body *::-webkit-scrollbar {
    width: 6px;
    height: 4px;
    background-color: #1e1e1e;
}
body *::-webkit-scrollbar-thumb {
    background-color: #00C853;
    border-radius: 3px;
}
body *::-webkit-scrollbar-button {
    background-color: #1e1e1e;
}
body *::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 255, 0, 0.1);
    background-color: #1e1e1e;
    border-radius: 3px;
}

/* Text selection */
*::selection {
    background-color: #00C853;
    color: #fff;
}

/* Margin utilities */
.mb-30 { margin-bottom: 30px; }
.mb--50 { margin-bottom: -50px; }
.mb-40 { margin-bottom: 40px; }

/* Overlay */
.bg--overlay { position: relative; }
.bg--overlay::before {
    left: 0; top: 0; bottom: 0; right: 0;
    background: rgba(0, 128, 64, 0.2);
}

/* Links */
a {
    text-decoration: none;
    color: #00E676;
    transition: all 0.3s ease;
}
a:hover { color: #00ff99; }

/* Bold text */
strong, b {
    font-family: "Jost", sans-serif;
    color: #fff;
}

/* Direction */
.rtl { direction: rtl; }
.ltr { direction: ltr; }

/* Overlay (modals, popups) */
.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0; left: 0;
    z-index: 99;
    background: rgba(0, 128, 64, 0.6);
    transition: all ease 0.3s;
    visibility: hidden;
    opacity: 0;
}
.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Section Header */
.section__header {
    margin: 0 0 40px;
    max-width: 620px;
    position: relative;
    z-index: 1;
    color: #fff;
    background-color: #1B3A2C;
    padding: 20px;
    border-radius: 8px;
}
.section__header .section__title {
    margin-bottom: 18px;
    color: #fff;
}
.section__header .section__title:last-child {
    margin-bottom: -19px;
}

@media (min-width: 768px) {
    .section__header { margin-bottom: 60px; }
    .section__header.mb-low { margin-bottom: 45px; }
}
.section__header.text-center {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}
.section__header p i { color: #00C853; }

/* Section Category Badge */
.section__category {
    display: inline-block;
    padding: 3px 15px;
    background: #00C853;
    margin-bottom: 30px;
    font-family: "Jost", sans-serif;
    color: #fff;
    text-transform: capitalize;
    position: relative;
    border-radius: 5px;
}
.section__category::before {
    top: calc(100% - 5px);
    right: 0;
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    background: #00C853;
    width: 12px;
    height: 17px;
}
@media (max-width: 575px) {
    .section__category { font-size: 14px; }
}

/* Dropdown */
.select-bar .current {
    display: block;
    margin-top: 2px;
    color: #E0FFE0;
}
.select-bar .list {
    width: 100%;
    max-height: 150px;
    overflow-y: auto;
    background-color: #1B3A2C;
    color: #fff;
    border-radius: 5px;
}
.select-bar .list li {
    padding: 0 20px;
    color: #fff;
}
.select-bar .list::-webkit-scrollbar {
    width: 4px;
    background-color: #1e1e1e;
}
.select-bar .list::-webkit-scrollbar-thumb {
    background-color: #00C853;
}
.select-bar .list::-webkit-scrollbar-track {
    box-shadow: 0 0 6px 0 rgba(0, 255, 0, 0.2);
    background-color: #1e1e1e;
}

/* Language Selector */
.langSel {
    background-color: transparent;
    padding: 10px 20px;
    border: 1px solid rgba(0, 255, 128, 0.3);
    border-radius: 5px;
    color: #fff;
    margin-right: 5px;
    font-size: 14px;
}
.langSel option { color: #000; }
@media (max-width: 380px) {
    .langSel { padding: 8px 10px; font-size: 12px; }
}

/* Backgrounds */
.bg--body { background-color: #0a1227 !important; }
.bg--section { background-color: rgba(0, 255, 128, 0.05) !important; }

/* Buttons & Badges */
.btn--base, .badge--base, .bg--base {
    background-color: #00C853 !important;
    color: #fff;
}
.btn--primary, .badge--primary, .bg--primary {
    background-color: #388E3C !important;
    color: #fff;
}
.btn--secondary, .badge--secondary, .bg--secondary {
    background-color: #4E4E4E !important;
    color: #fff;
}
.btn--success, .badge--success, .bg--success {
    background-color: #28c76f !important;
    color: #fff;
}
.btn--danger, .badge--danger, .bg--danger {
    background-color: #D32F2F !important;
    color: #fff;
}
.btn--warning, .badge--warning, .bg--warning {
    background-color: #FBC02D !important;
    color: #000;
}
.btn--info, .badge--info, .bg--info {
    background-color: #29B6F6 !important;
    color: #fff;
}
.btn--dark, .badge--dark, .bg--dark {
    background-color: #103214 !important;
}
.btn--white, .badge--white, .bg--white {
    background-color: #fff !important;
}
.btn--black, .badge--black, .bg--black {
    background-color: #000 !important;
}
.btn--title, .badge--title, .bg--title {
    background-color: #fff !important;
}
.btn--1, .badge--1, .bg--1 {
    background-color: #00C853 !important;
}
[class*="btn--"] {
    color: #fff;
    font-weight: 500;
    transition: all 0.3s ease;
}
[class*="btn--"]:hover {
    filter: brightness(1.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 200, 83, 0.3);
    color: #fff;
}
.btn--secondary:hover, .btn--dark:hover {
    filter: brightness(1.1);
}
.btn--danger:hover { background-color: #C62828 !important; }
.btn--warning:hover { background-color: #F9A825 !important; }

/* Disabled buttons */
.btn:disabled, button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Shadows & Radius */
.shadow--sm { box-shadow: 0 2px 8px rgba(0, 255, 128, 0.1); }
.shadow--md { box-shadow: 0 4px 16px rgba(0, 255, 128, 0.15); }
.shadow--lg { box-shadow: 0 8px 24px rgba(0, 255, 128, 0.2); }
.rounded--sm { border-radius: 4px; }
.rounded--md { border-radius: 8px; }
.rounded--lg { border-radius: 16px; }

/* Form Controls */
input, textarea, select {
    background-color: #102a1e;
    border: 1px solid rgba(0, 255, 128, 0.3);
    border-radius: 5px;
    color: #E0FFE0;
    padding: 10px 15px;
    transition: all 0.3s ease;
    width: 100%;
}
input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #00C853;
    box-shadow: 0 0 5px rgba(0, 255, 128, 0.4);
}
::placeholder { color: rgba(255, 255, 255, 0.5); }

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    color: #E0FFE0;
}
thead { background-color: #1B3A2C; }
th, td {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(0, 255, 128, 0.1);
}
tr:hover { background-color: rgba(0, 255, 128, 0.05); }

/* Animations */
@keyframes fadeUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.6s ease forwards; }

/* Text Colors */
.text--primary { color: #388E3C !important; }
.text--secondary { color: #868e96 !important; }
.text--success { color: #28c76f !important; }
.text--danger { color: #D32F2F !important; }
.text--warning { color: #FBC02D !important; }
.text--info { color: #29B6F6 !important; }
.text--dark { color: #103214 !important; }
.text--white { color: #fff !important; }
.text--white p, .text--white ul li, .text--white ul li a, .text--white span {
    color: #fcf6f5ff;
}

/* ===============================
   🌿 Dark Green UI — Header & Footer
   =============================== */

/* Text Colors */
.text--black {
    color: #000 !important;
}

.text--body {
    color: #93b4ca !important;
}

.text--base {
    color: #00C853 !important; /* green base */
}

.text--title {
    color: #fff !important;
}

.text--1 {
    color: #00C853 !important; /* green */
}

/* Transparent Backgrounds */
.bg--transparent {
    background-color: transparent !important;
}

.bg--none {
    background: none !important;
}

/* ===============================
   🌙 Footer Section
   =============================== */

.footer-area {
    margin-top: auto;
    background-color: #0a1227;
    color: #e0f2e9;
}

.footer-logo {
    max-width: 250px;
    max-height: 300px;
    margin: 0 auto 30px;
}

.footer-logo a {
    display: block;
}

.footer-logo img {
    width: 100%;
}

.footer-links {
    justify-content: center;
}

.footer-links li {
    padding: 0px 5px;
    align-items: center;
}

.footer-links li a {
    padding: 5px 10px;
    color: #e0f2e9;
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    color: #00C853; /* green hover */
}

.footer-links li::after {
    content: "|";
    color: #00C853;
    font-size: 12px;
    margin-left: 5px;
}

.footer-links li:last-child::after {
    display: none;
}

.footer-top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom .copyright {
    padding: 5px;
    max-width: 600px;
}

.footer-bottom {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 575px) {
    .footer-bottom {
        text-align: center;
        flex-direction: column;
    }

    .footer-bottom .social-icons,
    .footer-bottom .copyright {
        width: 100%;
        justify-content: center;
        margin-bottom: 10px;
    }
}

/* Social Icons */
.social-icons {
    display: flex;
    justify-content: center;
}

.social-icons li {
    padding: 5px;
}

.social-icons li a {
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s ease;
}

.social-icons li a:hover {
    border-radius: 40%;
    background: #00C853;
    color: #fff;
    transform: scale(1.1);
}

/* Footer text */
.footer__txt {
    text-align: center;
    max-width: 620px;
    margin: 0 auto;
    padding: 20px 0 60px;
    color: #e0f2e9;
}

/* ===============================
   🌿 Header Section
   =============================== */

.header-wrapper {
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    display: flex;
}

.header-wrapper .logo {
    width: 200px;
    max-height: 80px;
}

.header-wrapper .logo a {
    display: block;
}

.header-wrapper .logo img {
    max-width: 100%;
    max-height: 100%;
}

.header-wrapper .right-area {
    align-items: center;
    display: flex;
}

.header-wrapper .right-area .cmn--btn {
    padding: 0 15px;
    line-height: 40px;
    font-size: 14px;
    color: #fff;
    margin: 5px;
    border-color: transparent;
    border-radius: 4px;
    font-family: "Jost", sans-serif;
    font-weight: 500;
    text-transform: capitalize;
    background: #00C853;
    transition: all 0.3s ease;
}

.header-wrapper .right-area .cmn--btn:hover {
    background-color: #00E676;
    border-color: rgba(255, 255, 255, 0.19);
    color: #fff;
}

@media screen and (max-width: 450px) {
    .header-wrapper .logo {
        width: 160px;
    }

    .header-wrapper .right-area .cmn--btn {
        font-size: 12px;
        line-height: 32px;
        padding: 0 12px;
        border-radius: 2px;
    }

    .header-wrapper .right-area .select-bar .current {
        font-size: 12px;
    }

    .header-wrapper .header-bar {
        margin-right: 0;
    }
}

header {
    z-index: 999;
}

/* ===============================
   🌱 Navigation Menu
   =============================== */

.menu {
    font-family: "Jost", sans-serif;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.menu li {
    padding: 0;
    position: relative;
}

.menu li a {
    padding: 5px 15px;
    font-weight: 500;
    color: #fff;
    transition: color 0.3s ease;
}

.menu li a:hover {
    color: #00C853;
}

/* Submenu - Desktop */
@media (min-width: 992px) {
    .menu li {
        position: relative;
    }

    .menu li .submenu {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        min-width: 220px;
        background: #103214;
        transition: all ease 0.3s;
        opacity: 0;
        visibility: hidden;
        z-index: 10;
    }

    .menu li .submenu li {
        display: block;
    }

    .menu li .submenu li a {
        display: flex;
        justify-content: space-between;
        padding: 8px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.09);
        font-weight: 400;
        color: #fff;
    }

    .menu li .submenu li:last-child a {
        border-bottom: none;
    }

    .menu li .submenu li:hover > a {
        background: #00C853;
        color: #fff;
        padding-left: 25px;
    }

    .menu li:hover > .submenu {
        top: 100%;
        visibility: visible;
        opacity: 1;
    }

    .menu li .submenu li .submenu {
        left: 100%;
        top: 10px;
    }

    .menu li .submenu li:hover > .submenu {
        top: 0;
    }
}

/* Mobile Menu */
@media (max-width: 991px) {
    .menu {
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 9;
        background: #0a1227;
        overflow: auto;
        max-height: calc(100vh - 100px);
        transition: all ease 0.3s;
        transform: scaleY(0);
        transform-origin: top;
        display: block;
    }

    .menu.active {
        transform: scaleY(1);
    }

    .menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .menu li a {
        display: block;
        padding: 12px 20px;
        color: #E0FFE0;
    }

    .menu li a:hover {
        background: #00C853;
        color: #fff;
    }

    .menu li .submenu {
        background: #103214;
        display: none;
    }

    .menu li.open > .submenu {
        display: block;
    }
}

/* Hamburger Icon */
.header-bar {
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
    margin-left: 15px;
}

.header-bar span {
    display: block;
    height: 3px;
    width: 100%;
    background: #00C853;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.header-bar.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 8px;
    position: relative;
}

.header-bar.active span:nth-child(2) {
    opacity: 0;
}

.header-bar.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: -8px;
    position: relative;
}


    .menu.active {
        transform: scaleY(1);
    }
}

    .menu li {
    padding: 0;
    border-bottom: 1px solid transparent;
}

.menu li.open ul li:last-child {
    border-color: rgba(255, 255, 255, 0.1);
}

.menu li a {
    display: flex;
    color: #fff;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 5px 20px;
    font-size: 16px;
}

.menu li:last-child > a {
    border: none;
}

.menu li .submenu {
    padding-left: 20px;
    display: none;
}

.menu li .submenu li a {
    font-size: 14px;
}

.menu li .cmn--btn {
    border: 1px solid rgba(255, 255, 255, 0.09) !important;
    font-size: 14px;
    line-height: 40px;
    justify-content: center;
}

@media (min-width: 992px) {
    .menu {
        margin-left: auto;
    }
}

.header-section {
    position: relative;
}

.header-section .header-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 99;
    transition: all ease 0.3s;
    background: #0a1227; /* dark navy instead of #0f1932 */
}

.header-section.active .header-bottom {
    top: 0;
    position: fixed;
    animation: fadeInDown 1s;
    -webkit-animation: fadeInDown 1s;
    -moz-animation: fadeInDown 1s;
}

@media (max-width: 575px) {
    .header-section .nice-select {
        line-height: 35px;
    }
}

.menu-item-has-children {
    position: relative;
    z-index: 999 !important;
}

.menu-item-has-children > a {
    align-items: center;
}

.menu-item-has-children > a::after {
    content: "\f107";
    font-weight: 600;
    font-family: "Line Awesome Free";
    margin-left: 5px;
    color: #00C853; /* green arrow */
}

@media (min-width: 992px) {
    .menu-item-has-children.open .submenu {
        display: block !important;
    }

    .menu-item-has-children .submenu {
        display: block !important;
    }
}

.header-bar {
    position: relative;
    cursor: pointer;
    width: 25px;
    height: 20px;
}

@media (min-width: 576px) {
    .header-bar {
        margin-right: 20px;
    }
}

@media (min-width: 992px) {
    .header-bar {
        display: none;
    }
}

.header-bar span {
    position: absolute;
    display: inline-block;
    height: 3px;
    width: 100%;
    transition: all ease 0.3s;
    background-color: #fff;
    left: 0;
}

.header-bar span:first-child {
    top: 0;
}

.header-bar span:nth-child(2) {
    top: 52%;
    transform: translateY(-65%);
}

.header-bar span:last-child {
    bottom: 0;
}

.header-bar.active span:first-child {
    transform: rotate(45deg) translate(3px, 9px);
}

.header-bar.active span:nth-child(2) {
    opacity: 0;
}

.header-bar.active span:last-child {
    transform: rotate(-45deg) translate(3px, -9px);
}

@media (max-width: 767px) {
    .header-bar {
        margin-left: 0;
    }
}

.header-top {
    background: #00C853; /* green instead of orange */
}

.header-top * {
    color: #fff;
}

.header-top .header-top-area {
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.header-top .header-top-area li {
    padding: 0;
}

.header-top .header-top-area .social li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.302);
    font-size: 15px;
}

.header-top .header-top-area .social li:first-child a {
    border-left: 1px solid rgba(255, 255, 255, 0.302);
}

.header-top .header-top-area .mail {
    padding: 5px 10px;
    min-height: 40px;
    border-left: 1px solid rgba(255, 255, 255, 0.302);
    align-items: center;
    display: flex;
    flex-wrap: wrap;
}

.header-top .header-top-area .mail i {
    margin-right: 7px;
}

.header-top .header-top-area .mail:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.302);
}

@media (max-width: 767px) {
    .header-top {
        display: none;
    }
}

.select-bar {
    height: 40px !important;
    margin: 0 15px;
    background: transparent;
    display: block;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.select-bar select {
    width: 70px;
    height: 40px;
    border: none;
    background: transparent !important;
    padding: 0 10px;
    font-size: 14px;
    color: #fff;
}

@media (max-width: 575px) {
    .select-bar {
        margin: 0 10px;
        height: 35px !important;
    }

    .select-bar select {
        height: 35px;
        width: 60px;
    }
}

@media (max-width: 991px) {
    .select-bar {
        margin-left: auto;
    }
}

.select-bar .list {
    max-height: 200px;
    overflow-y: auto;
    background: #0a1227; /* dark navy */
    color: #fff;
}

.select-bar .list .option {
    padding-top: 0;
    padding-bottom: 0;
}

/* Banner Section Starts Here */
@media (min-width: 992px) {
    .banner-thumb-bg {
        clip-path: polygon(40px 0%, 100% 0%, 100% 100%, 0% 100%);
    }

    .mw-lg-100 {
        max-width: 100%;
    }
}

.banner-thumb {
    padding: 100px 50px 0;
    overflow: hidden;
}


@media (min-width: 1400px) {
    .banner-thumb img {
        width: 100%;
    }
}

@media (max-width: 1399px) {
    .banner-thumb img {
        max-width: 720px;
    }
}

@media (max-width: 1199px) {
    .banner-thumb img {
        max-width: 640px;
    }
}

@media (max-width: 991px) {
    .banner-thumb {
        padding-top: 30px;
        width: 100%;
        text-align: center;
    }

    .banner-thumb img {
        width: 100%;
        max-width: 520px;
    }
}

@media (max-width: 575px) {
    .banner-thumb {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.banner-content {
    padding: 200px 15px;
}

.banner-content .banner-title {
    font-size: 70px;
    line-height: 80px;
    margin-bottom: 40px;
}

.banner-content .banner-txt {
    font-size: 24px;
    max-width: 540px;
}

.banner-content .btn__grp {
    margin-top: 40px;
}

@media (min-width: 768px) {
    .banner-content .btn__grp .cmn--btn {
        padding: 18px 45px;
    }
}

@media (min-width: 992px) {
    .banner-content {
        margin-left: auto;
        max-width: 662px;
    }
}

@media (min-width: 992px) and (max-width: 1399px) {
    .banner-content {
        max-width: 572px;
    }

    .banner-content .banner-title {
        font-size: 60px;
        line-height: 70px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .banner-content {
        max-width: 483px;
    }

    .banner-content .banner-title {
        font-size: 60px;
        line-height: 70px;
    }
}

@media (max-width: 991px) {
    .banner-content {
        padding: 180px 0 120px;
    }

    .banner-content .container {
        padding-left: 13px;
        padding-right: 13px;
    }
}

@media (max-width: 575px) {
    .banner-content .banner-title {
        font-size: 50px;
        line-height: 55px;
        margin-bottom: 25px;
    }

    .banner-content .btn__grp {
        margin-top: 20px;
    }

    .banner-content .banner-txt {
        font-size: 20px;
    }
}

.banner-section {
    background: rgba(15, 25, 50, 0.3);
}

.template-version {
    position: fixed;
    top: 50%;
    margin-top: -40px;
    right: 0;
    z-index: 999;
    cursor: pointer;
    transform: translateX(0);
}

@media (max-width: 767px) {
    .template-version {
        top: 40%;
    }
}

.template-version .chorka {
    background: #fff;
    display: block;
    text-align: center;
    border-radius: 5px;
    transition: all ease 0.3s;
    font-size: 20px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    color: #192a56;
}

.template-version .chorka i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: block;
}

/*Choose Section Starts Here*/
.choose__item .choose__icon {
    height: 80px;
    width: 80px;
    line-height: 80px;
    text-align: center;
    border-radius: 5px;
    font-size: 40px;
    margin-bottom: 30px;
    background: #0a1227; /* dark navy */
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.choose__item .choose__content .choose__title {
    font-weight: 500;
    margin-bottom: 30px;
}

@media (min-width: 992px) {
    .choose-wrapper div[class*="col"]:nth-of-type(even) .choose__item {
        margin-top: 40px;
    }
}

@media (max-width: 575px) {
    .choose-wrapper div[class*="col"]:not(:last-child) .choose__item {
        padding-bottom: 20px;
    }
}

.about-thumb {
    direction: rtl;
}

.about-thumb img {
    max-width: 920px;
}

@media (max-width: 991px) {
    .pt-max-lg-0 {
        padding-top: 0;
    }

    .pb-max-lg-50 {
        padding-bottom: 50px;
    }

    .about-thumb img {
        max-width: 100%;
    }
}

.card-item {
    text-align: center;
    position: relative;
}

.card-item .card-thumb {
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 5px;
}

.card-item .card-thumb img {
    max-width: 100%;
}

.card-item .title {
    font-weight: 500;
    font-size: 20px;
}

.card-item .title a {
    color: #00C853; /* green instead of orange */
}

.card-item .discount~.card-thumb,
.card-item .discount~.title {
    opacity: 0.4;
}

@media screen and (min-width: 400px) and (max-width: 576px) {
    .card-wrapper > div[class*="col"] {
        width: 50%;
    }
}

.owl-dots {
    display: flex;
    flex-wrap: wrap;
    margin: -3px;
    margin-top: 25px;
    justify-content: center;
}

.owl-dots .owl-dot {
    width: 15px;
    height: 15px;
    margin: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all ease 0.3s;
}

.owl-dots .owl-dot.active {
    background: #00C853; /* green active dot */
}

.owl-dots .owl-dot span {
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #00C853; /* green dot */
}

.how__item {
    padding: 0 30px;
    text-align: center;
    position: relative;
}

.how__item .shape-bg {
    position: absolute;
    left: 100%;
    transform: translateX(-50%);
    width: 100%;
    top: 33px;
    height: 25px;
}

@media (max-width: 991px) {
    .how__item .shape-bg {
        display: none;
    }
}

.how__item .shape-bg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.how__thumb {
    width: 100px;
    height: 100px;
    font-size: 30px;
    text-align: center;
    line-height: 94px;
    border-width: 3px;
    border-style: solid;
    border-color: #00C853; /* green border */
    border-radius: 50%;
    border-top: none;
    border-right: none;
    transform: rotate(45deg);
    color: #00C853; /* green color */
    background: #fff;
    margin: 0 auto 20px;
}

.how__thumb i {
    transform: rotate(-45deg);
}

div[class*="col"]:nth-of-type(3n + 3) .how__item .shape-bg {
    display: none;
}

.counter__item {
    padding: 40px 20px;
    border-radius: 5px;
    background: #0a1227; /* darker navy */
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    color: #fff;
    position: relative;
}

.counter__item .counter__header {
    display: flex;
    align-items: center;
}

.counter__item .counter__header .title {
    margin: 0;
    color: #00C853; /* green titles */
}

.counter__item .counter__header .title i {
    font-size: 80%;
    line-height: 1;
}

.counter__item .icon {
    font-size: 50px;
    line-height: 1;
    color: #fff;
    position: absolute;
    right: 20px;
    bottom: 20px;
    opacity: .2;
    transition: all ease 0.3s;
}

.counter__item:hover .icon {
    opacity: .4;
    transform: scale(1.8);
}

.bg--section .counter__item {
    background: #0a1227;
}

.testimonial-item {
    position: relative;
    border-radius: 5px;
}

.dashboard-section .title,
.hero-content .title {
    color: #00ff2d !important;
}

.testimonial-item .testimonial-thumb {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 25px;
}

.testimonial-item .testimonial-thumb img {
    width: 100%;
}

.testimonial-item .testimonial-content .testimonial-header {
    align-items: flex-end;
    justify-content: space-between;
    margin: -5px -5px 20px;
}

.testimonial-item .testimonial-content .testimonial-header .name {
    margin: 5px;
}

.testimonial-item .testimonial-content .testimonial-header .info {
    font-size: 14px;
}

.testimonial-item .testimonial-content .testimonial-header .ratings {
    margin: 5px;
}

.testimonial-item .quote {
    font-size: 100px;
    line-height: 1;
    position: absolute;
    right: 25px;
    top: 25px;
    opacity: .3;
    color: #FF6A00;
}

.ratings {
    color: #e9ba17;
    font-size: 18px;
}

.partner-thumb {
    position: relative;
    height: 110px;
    overflow: hidden;
    display: block;
}

.partner-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(0);
    transition: all ease 0.3s;
    position: relative;
}

.partner-thumb img:nth-child(2) {
    position: absolute;
    left: 0;
    top: -110px;
    filter: grayscale(100%);
}

.partner-thumb:hover img {
    transform: translateY(110px);
}

.partner-thumb:hover img:nth-child(2) {
    top: 0;
    transform: translateY(0);
}

/* Account Section */
.bg-img {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.account-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    min-height: 100vh;
    position: relative;
    z-index: 1;
    padding: 60px 0;
    flex-shrink: 1;
    flex-grow: 1;
    flex-basis: auto;
}

.vl-public .account-form {
    padding: 40px;
    border: 1px solid #e5e5e5;
    background: #fff;
    border-radius: 8px;
}

.vl-public .input-group-text {
    border: 1px solid #FF6A00 !important;
    color: #fff;
}

.vl-public .form--control {
    height: 50px;
    box-shadow: none !important;
    outline: none;
    background: #fff !important;
    border-color: rgba(0, 0, 0, 0.1) !important;
    color: #000 !important;
}

.vl-public .custom--card .input-group-text {
    border: 1px solid #FF6A00 !important;
    color: #fff;
}

.vl-public .form-group .select {
    height: 50px;
    box-shadow: none !important;
    outline: none;
    border-radius: 0.25rem;
    background: #fff !important;
    border-color: rgba(0, 0, 0, 0.1) !important;
    color: #000;
    line-height: 1;
    width: 100%;
    padding: 0.375rem 0.75rem;
}

.vl-public .form-group .select:focus {
    border-color: #000;
}

.vl-public .form-group .select option {
    background-color: #fff;
    color: #000;
}

.vl-public .form--control:focus {
    border: 1px solid #FF6A00 !important;
    background: #0f1932;
}

.form--control::placeholder {
    color: #fff !important;
}

.form--control[type="file"] {
    height: unset;
    padding: 12px 20px;
    line-height: 25px;
}

.vl-public textarea.form--control {
    height: 120px;
}

.bg--section .form--control {
    background: #0a1227;
}

.form--label {
    text-transform: capitalize;
    font-family: "Jost", sans-serif;
    color: #fff;
    cursor: pointer;
    margin-bottom: 8px;
}

.form--label i {
    color: #FF6A00;
}

.select-item .select-bar {
    height: 50px !important;
    width: 100%;
}

.select-item .select-bar .list {
    width: 100%;
    height: 150px;
}

.select-item .select-bar .list .option:hover,
.select-item .select-bar .list .option.selected,
.select-item .select-bar .list .option.focus {
    color: #192a56 !important;
}

.select-item .select-bar .list:hover .option.selected,
.select-item .select-bar .list:hover .option.focus {
    color: #fff !important;
}

.select-item .select-bar .list:hover .option.selected:hover,
.select-item .select-bar .list:hover .option.focus:hover {
    color: #192a56 !important;
}

.light-version .select-item .select-bar .list:hover .option.selected,
.light-version .select-item .select-bar .list:hover .option.focus {
    color: #363636 !important;
}

.select-item .select-bar .current {
    line-height: 45px;
}

.form--check {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin-bottom: 10px;
}

.form--check label {
    cursor: pointer;
    font-size: 14px;
    align-self: center;
    width: calc(100% - 1.3rem);
    padding-left: 15px;
}

.form--check .form-check-input {
    margin: 0;
    height: 1.3rem;
    width: 1.3rem;
}

.form--check .form-check-input:checked {
    background-color: #FF6A00;
    border-color: #FF6A00;
}

.contact__item {
    height: 100%;
    padding: 32px 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    align-items: center;
    word-break: break-word;
}

/* Responsive styles */

@media (max-width: 1400px) {
    .testimonial-item .quote {
        font-size: 80px;
        right: 20px;
        top: 20px;
    }
}

@media (max-width: 1200px) {
    .testimonial-item .testimonial-thumb {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }
    .testimonial-item .quote {
        font-size: 70px;
        right: 15px;
        top: 15px;
    }
}

@media (max-width: 992px) {
    .account-section {
        padding: 40px 20px;
        min-height: auto;
    }

    .vl-public .account-form {
        padding: 30px;
    }

    .testimonial-item .testimonial-thumb {
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
    }

    .testimonial-item .quote {
        font-size: 60px;
        right: 10px;
        top: 10px;
    }
}

@media (max-width: 768px) {
    .testimonial-item .testimonial-content .testimonial-header .info,
    .testimonial-item .testimonial-content .testimonial-header .ratings {
        font-size: 12px;
    }

    .vl-public .account-form {
        padding: 20px;
    }
}

@media (max-width: 575px) {
    .partner-thumb img:nth-child(2) {
        position: relative;
        top: 0;
        filter: grayscale(0);
    }

    .testimonial-item .testimonial-thumb {
        width: 60px;
        height: 60px;
        margin-bottom: 10px;
    }

    .testimonial-item .quote {
        font-size: 50px;
        right: 5px;
        top: 5px;
    }

    .vl-public .account-form {
        padding: 15px 10px;
    }

    .form--label {
        font-size: 14px;
    }

    .form--check label {
        font-size: 12px;
    }
}


.contact__item .contact__icon {
    width: 70px;
    height: 70px;
    text-align: center;
    line-height: 70px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.1);
    font-size: 24px;
    color: #FF6A00;
    border-radius: 50%;
    transition: all ease 0.3s;
}

.contact__item .contact__body {
    width: calc(100% - 70px);
    padding-left: 20px;
}

.contact__item .contact__body .contact__title {
    margin: 0 0 5px 0;
}

.contact__item .contact__body a {
    color: #FF6A00;
}

.contact__item .contact__info li {
    padding: 0;
}

.contact__item .contact__info li:not(:last-child) {
    margin-bottom: 10px;
}

.contact__item:hover .contact__icon {
    background: #FF6A00;
    color: #fff;
}

.hero-section {
    padding: 163px 0 80px;
    background: #141d3b;
}

.contact__wrapper__1,
.contact__wrapper__2 .contact__wrapper__2_inner {
    padding: 50px 30px 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 7px;
}

.contact__wrapper__1 {
    width: 60%;
    border-right: none;
    border-radius: 7px 0 0 7px;
}

.contact__wrapper__1.contact--wrapper--full {
    padding: 50px 30px 30px;
    margin: 0 auto;
}

.contact__wrapper__2 {
    width: 40%;
}

.contact__wrapper__2 .contact__wrapper__2_inner {
    border-left: none;
    border-radius: 0 7px 7px 0;
}

.maps {
    min-height: 500px;
}

.profile-wrapper {
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

.profile-wrapper .profile-user {
    text-align: center;
    width: 100%;
    max-width: 300px;
    margin: 0 auto 40px;
    position: relative;
}

.profile-wrapper .profile-user .thumb {
    margin-bottom: 20px;
}

.profile-wrapper .profile-user .thumb img {
    max-width: 100%;
}

.profile-wrapper .profile-form-area {
    width: calc(100% - 300px);
    padding-left: 30px;
}

.remove-image {
    display: none;
    font-size: 40px;
    color: #ea5455;
    right: 0;
    top: 0;
    position: absolute;
    cursor: pointer;
    line-height: 1;
}

/* Responsive Styles */

@media (max-width: 991px) {
    .contact__wrapper__1 {
        width: 100%;
        margin-bottom: 40px;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 7px;
    }

    .contact__wrapper__2 {
        width: 100%;
    }

    .contact__wrapper__2 .contact__wrapper__2_inner {
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 7px;
    }

    .contact__wrapper__2 .contact__wrapper__2_inner.bg--body {
        background: #0f1932 !important;
    }

    .maps {
        min-height: 300px;
    }

    .profile-wrapper .profile-form-area {
        width: 100%;
        padding-left: 0;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 150px 0 50px;
    }
}

@media (max-width: 575px) {
    .contact__item {
        padding: 20px 15px;
    }

    .contact__item .contact__body .contact__title {
        margin-bottom: 4px;
    }

    .contact__wrapper__1,
    .contact__wrapper__2 .contact__wrapper__2_inner {
        padding: 30px 15px 15px;
    }

    .profile-wrapper {
        padding: 30px 15px;
    }
}

@media (min-width: 1200px) {
    .profile-wrapper .profile-form-area {
        padding-left: 70px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .contact__wrapper__1 {
        max-width: 800px;
    }

    .profile-wrapper .profile-form-area {
        padding-left: 30px;
    }
}

@media (max-width: 450px) {
    .profile-wrapper {
        padding: 30px 15px;
    }
}

@media screen and (max-width: 400px) {
    .contact__wrapper__1,
    .contact__wrapper__2 .contact__wrapper__2_inner,
    .contact__wrapper__1.contact--wrapper--full {
        padding: 30px 15px 15px;
    }
}

.dashboard__item {
    padding: 30px;
    border-radius: 5px;
    margin: 0 auto;
    position: relative;
    transition: all ease 0.3s;
    text-align: left;
    box-shadow: 0 0 12px 2px rgba(0, 0, 0, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    align-items: center;
}

.dashboard__item .dashboard__header {
    align-items: center;
}

.dashboard__item .dashboard__header .title {
    margin: 0;
    color: black;
}

.dashboard__item .dashboard__icon {
    width: 50px;
    height: 50px;
    font-size: 30px;
    line-height: 50px;
    text-align: center;
    color: #fff;
    background: #FF6A00;
    display: block;
    border-radius: 10px;
    margin: 0 auto 10px;
    transition: all ease 0.3s;
}

.vl-public .dashboard__item a {
    margin: 0;
    color: black !important;
}

.vl-public .dashboard__item a:hover {
    color: #FF6A00 !important;
}

.dashboard__item * {
    position: relative;
}

.dashboard__item .dashboard__icon {
    margin: 0;
}

.dashboard__item .cont {
    max-width: calc(100% - 60px);
    padding-left: 20px;
}

.dashboard__item .cont .dashboard-header {
    justify-content: space-between;
}

.dashboard__item .cont .dashboard-header .title {
    font-size: 28px;
    line-height: 1;
}

.dashboard__item:hover .dashboard__icon {
    background: #FF6A00 !important;
    color: #fff;
}

/* Color variations based on column position */
div[class*="col"]:nth-of-type(6n + 1) .dashboard__item .dashboard__icon {
    background: #fe721c;
}

div[class*="col"]:nth-of-type(6n + 2) .dashboard__item .dashboard__icon {
    background: #05bbc9;
}

div[class*="col"]:nth-of-type(6n + 3) .dashboard__item .dashboard__icon {
    background: #ff4b4b;
}

div[class*="col"]:nth-of-type(6n + 4) .dashboard__item .dashboard__icon {
    background: #876cfe;
}

div[class*="col"]:nth-of-type(6n + 5) .dashboard__item .dashboard__icon {
    background: #8e3ff0;
}

div[class*="col"]:nth-of-type(6n + 6) .dashboard__item .dashboard__icon {
    background: #FF6A00;
}

/* Table styles */
.cmn--table {
    margin: 0;
    border: none;
    border-radius: 5px;
}

.cmn--table thead tr th {
    font-family: "Jost", sans-serif;
    padding: 20px 15px;
    text-align: center;
    border: none;
    background: #FF6A00;
    color: #fff;
}

.cmn--table thead tr th:not(:last-child) {
    border-right: 1px solid rgba(0, 0, 0, 0);
}

.cmn--table thead tr th:first-child {
    border-radius: 5px 0 0 0;
}

.cmn--table thead tr th:last-child {
    border-radius: 0 5px 0 0;
}

.cmn--table tbody {
    text-align: center;
}

.cmn--table tbody tr td {
    color: #292929;
    vertical-align: middle;
    padding: 20px 15px;
    border-color: rgba(0, 0, 0, 0.2);
    background-color: #fff;
    font-size: 14px;
}

.cmn--table tbody tr td .badge {
    text-transform: capitalize;
}

.cmn--table tbody tr td .date {
    font-size: 14px;
}

/* Responsive tables */
@media (min-width: 992px) {
    .cmn--table {
        border-right: 1px solid rgba(0, 0, 0, 0.2);
        border-left: 1px solid rgba(0, 0, 0, 0.2);
    }

    .cmn--table .details {
        max-width: 260px;
        margin: 0 auto;
        font-size: 14px;
    }

    .cmn--table tbody tr td:first-child {
        color: #000;
        font-weight: 500;
    }
}

@media (max-width: 991px) {
    .cmn--table thead {
        display: none;
    }

    .cmn--table tbody tr {
        display: block;
        border-top: 1px solid rgba(0, 0, 0, 0.2);
    }

    .cmn--table tbody tr td {
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-left: 1px solid rgba(0, 0, 0, 0.2);
        border-right: 1px solid rgba(0, 0, 0, 0.2);
        padding: 10px 15px;
        text-align: right;
        position: relative;
    }

    .cmn--table tbody tr td::before {
        content: attr(data-label);
        margin-right: 10px;
        color: #000;
        font-weight: 600;
    }

    .cmn--table tbody tr td:not(:last-child) {
        border-right: 0 !important;
    }

    .cmn--table tbody tr:nth-child(even) {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(15px);
    }
}

/* Remove border from table rows except first */
.table > :not(:first-child) {
    border-top: none !important;
}

/* VL Public Card styles */
.vl-public .custom--card {
    border: 1px solid rgba(0,0,0,0.125);
    background: #fff;
}

.custom--card .card-body .form-label {
    color: #000;
}

.vl-public .custom--card .card-header {
    background: rgba(255, 255, 255, 0.05);
    margin-left: -1px;
    margin-right: -1px;
    padding: 10px;
}

.vl-public .custom--card .card-header .card-title {
    text-align: center;
    margin: 0;
    color: #000;
    font-size: 18px;
}

.vl-public .custom--card .card-footer {
    text-align: center;
    background: transparent;
}

.vl-public .custom--card .form--control[readonly] {
    background: #e9ecef !important;
}

/* Two factor content */
.two-factor-content {
    padding: 30px 0;
}

.two-factor-content .subtitle {
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
}

/* Background section */
.bg--section .custom--card {
    background: #0a1227;
}

/* Deposit item */
.deposit-item {
    justify-content: space-between;
    background: #0f1932;
    padding: 20px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.deposit-item .deposit-thumb,
.deposit-item .deposit-content {
    width: calc(50% - 15px);
}

.deposit-item .deposit-thumb {
    overflow: hidden;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.deposit-item .deposit-thumb img,
.deposit-item .deposit-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.deposit-item .deposit-content {
    align-self: center;
}

.deposit-item .deposit-content ul {
    margin: 0 0 30px 0;
}

.deposit-item .deposit-content ul li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.deposit-item .deposit-content ul li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive deposit item */
@media (max-width: 540px) {
    .deposit-item {
        padding: 15px;
    }

    .deposit-item .deposit-content,
    .deposit-item .deposit-thumb {
        width: 100%;
    }

    .deposit-item .deposit-content {
        padding: 20px 0 0 0;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .deposit-item .deposit-content,
    .deposit-item .deposit-thumb {
        width: 100%;
    }
}


  .deposit-item .deposit-content {
    padding-top: 30px;
}

.btn-close {
    opacity: 1;
    backdrop-filter: brightness(20);
}

.deposit-preview {
    border-radius: 8px;
    overflow: hidden;
    max-width: 520px;
    margin: 0 auto;
    padding: 20px;
}

.deposit-preview .deposit-thumb img {
    max-width: 100%;
}

.deposit-preview .deposit-content {
    margin-top: 30px;
    width: 100%;
}

.deposit-preview .deposit-content ul {
    width: 100%;
}

.deposit-preview .deposit-content ul li {
    padding: 10px 0;
    font-size: 14px;
}

@media (max-width: 575px) {
    .deposit-preview {
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }
}

.quantity {
    position: relative;
}

.quantity input {
    padding: 8px 15px;
}

.quantity-nav {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(255,255,255,0.1);
}

.quantity-nav .quantity-button {
    width: 40px;
    cursor: pointer;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 4px;
}

.quantity-up {
    order: 1;
    border-left: 1px solid rgba(255,255,255,0.1);
}

.quantity-down {
    order: -1;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.cmn--modal {
    --header-bg: #0f1932;
    --content-bg: #0a1227;
    --footer-bg: #0f1932;
    --border-color: rgba(255,255,255,0.1);
}

.cmn--modal .modal-header {
    background: var(--header-bg);
}

.cmn--modal .modal-header .modal-title,
.cmn--modal .modal-content .modal-footer .modal-title {
    color: #fff;
    margin: 0;
}

.cmn--modal .modal-content {
    background: var(--content-bg);
    border: none;
    border-color: var(--border-color);
}

.cmn--modal .modal-content * {
    border-color: var(--border-color);
}

.cmn--modal .modal-content .modal-footer {
    background: var(--footer-bg);
}

.cmn--modal .modal-content .modal-header {
    padding: 10px 15px;
}

.cmn--modal .modal-content .modal-footer {
    padding: 10px;
}

.cmn--modal .modal-content .btn-close {
    background: transparent;
    padding: 0;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    opacity: 1;
}

.cmn--modal .modal-content .btn-close::before {
    content: "\f00d";
    font-family: "Line Awesome Free";
    font-weight: 700;
    color: #ea5455;
    font-size: 20px;
}

.h-50px {
    height: 50px !important;
}

.form--group {
    margin-bottom: 20px;
}

.message__chatbox {
    border-radius: 5px;
    border: 1px solid rgba(255,255,255,0.1);
}

.message__chatbox__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    border-radius: 5px 5px 0 0;
}

.message__chatbox__header .title {
    margin: 0;
}

.message__chatbox__body {
    padding: 30px;
}

@media (max-width: 575px) {
    .message__chatbox__body {
        padding: 15px;
    }
}

.reply-item {
    padding: 20px 0;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    display: flex;
    align-items: center;
    margin: 10px;
    background: #fff;
}

.reply-item .name-area {
    padding: 20px;
    width: 220px;
    text-align: center;
}

.reply-item .name-area .title {
    margin: 0;
    font-size: 18px;
}

.reply-item .name-area .reply-thumb {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
}

.reply-item .name-area .reply-thumb img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.reply-item .content-area {
    padding: 20px;
    border-left: 1px solid #e5e5e5;
}

.reply-item .content-area .meta-date {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
    display: block;
}

@media (max-width: 767px) {
    .reply-item {
        padding: 0;
        flex-direction: column;
    }

    .reply-item .name-area,
    .reply-item .content-area {
        width: 100%;
        border: none;
    }

    .reply-item .name-area {
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
}

.reply-message-area {
    margin: -10px;
}

.reply-message-area li {
    padding: 0;
}

.reply-message-area li ul {
    padding-left: 20px;
}

@media (min-width: 768px) {
    .reply-message-area li ul {
        padding-left: 50px;
    }
}

.bg--shadow {
    box-shadow: 0 0 10px rgba(255,255,255,0.1);
}

.bg--section .reply-item {
    background: #0a1227;
}

/* Preloader */
.preloader {
    position: fixed;
    z-index: 9999999;
    inset: 0;
    background: #0f1932;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.loader-circle {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1);
    margin-left: -60px;
    margin-top: -60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-circle img {
    width: 40%;
    height: 40%;
    object-fit: contain;
}

.loader-line-mask {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 60px;
    height: 120px;
    margin-left: -60px;
    margin-top: -60px;
    overflow: hidden;
    transform-origin: 60px 60px;
    -webkit-mask-image: linear-gradient(to bottom, #000, rgba(0,0,0,0));
    animation: rotate 1.2s infinite linear;
}

.loader-line-mask .loader-line {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.5);
}

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

.menu > li:last-child .submenu {
    left: unset;
    right: 0;
}

.pagination {
    margin: -3px;
    margin-top: 25px;
    flex-wrap: wrap;
    justify-content: center;
    display: flex;
}

.pagination .page-item {
    text-align: center;
    padding: 3px;
}

.pagination .page-item a,
.pagination .page-item span {
    width: 45px;
    height: 45px;
    border-radius: 3px;
    background: rgba(255,255,255,0.1);
    color: #fcf6f5ff;
    line-height: 45px;
    display: block;
    margin: 0;
    border: 1px solid rgba(255,255,255,0.2);
}

.pagination .page-item a.active,
.pagination .page-item span.active,
.pagination .page-item.active span,
.pagination .page-item.active a,
.pagination .page-item:hover span,
.pagination .page-item:hover a {
    background: #FF6A00;
    color: #fff;
    border-color: rgba(255,255,255,0.2);
}

.pagination .page-item.disabled span {
    background: rgba(255,106,0,0.3);
    border: none;
    color: #fff;
}

/* Blog Section */
.post__item {
    background: #0f1932;
    overflow: hidden;
    border-radius: 5px;
    border: 1px solid rgba(255,255,255,0.1);
}

.post__item .post__thumb {
    overflow: hidden;
    border-radius: 5px 5px 0 0;
    position: relative;
}

.post__item .post__thumb a {
    display: block;
}

.post__item .post__thumb .category {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    padding: 4px 15px;
    border-radius: 0 5px 0 0;
    background: #FF6A00;
    color: #fff;
    font-family: "Jost", sans-serif;
    font-size: 14px;
    line-height: 24px;
}

.post__item .post__thumb img {
    width: 100%;
    transition: all ease 0.3s;
}

.post__item .post__content {
    padding: 30px;
}

.post__item .post__content .post__title {
    margin-bottom: 20px;
}

.post__item .post__content .post__title a {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    overflow: hidden;
    text-decoration: none;
}

.post__item .post__content .meta__date {
    border-left: 5px solid #FF6A00;
    border-radius: 5px;
    justify-content: space-between;
    padding: 5px;
    background: #0a1227;
    display: flex;
}

.post__item .post__content .meta__date .meta__item {
    font-size: 14px;
    padding: 5px;
    display: flex;
    align-items: center;
}

.post__item .post__content .meta__date .meta__item i {
    font-size: 20px;
    color: #FF6A00;
    margin-right: 6px;
}

.post__item:hover .post__thumb img {
    transform: scale(1.1);
}


/* === DARK THEME BASE === */
body {
    background-color: #121212; /* Dark background */
    color: #ffffff; /* Default text color */
}

/* === CONTENT BOXES WITH GREEN BACKGROUND === */
.post__item, .post__content {
    background-color: #008000; /* Green box */
    color: #ffffff; /* White text inside box */
}

/* === HEADINGS & TEXT INSIDE BOX === */
.post__item h1,
.post__item h2,
.post__item h3,
.post__item h4,
.post__item h5,
.post__item h6,
.post__item p,
.post__item span {
    color: #ffffff;
}

/* === READ MORE TEXT (Orange) - Adjusted for Dark === */
.post__item .post__read {
    color: #ffffff; /* White instead of orange */
}

/* === SOCIAL SHARE ICONS === */
.post__share li a i {
    background: #ffffff; /* White background */
    color: #121212; /* Dark icon color for contrast */
}

/* === SOCIAL ICONS (INDIVIDUAL COLORS) REMAIN SAME === */
.post__share li a i[class*="facebook"] { background: #3b5998; }
.post__share li a i[class*="twitter"] { background: #55acee; }
.post__share li a i[class*="instagram"] { background: #e4405f; }
.post__share li a i[class*="skype"] { background: #2fb7df; }
.post__share li a i[class*="linkedin"] { background: #007bb5; }
.post__share li a i[class*="youtube"] { background: #cd201f; }
.post__share li a i[class*="behance"] { background: #1769ff; }
.post__share li a i[class*="tumblr"] { background: #34465d; }
.post__share li a i[class*="pinterest"] { background: #007bb5; }
.post__share li a i[class*="navy"] { background: #d8e0f3; }
.post__share li a i[class*="futbol"] { background: #db3776; }
.post__share li a i[class*="vimeo"] { background: #1ab7ea; }

/* === READ MORE CIRCLE BUTTON === */
.read--more {
    background-color: #ffffff; /* White button */
    color: #121212; /* Dark icon/text inside */
}

/* === RESPONSIVE PADDING FOR DARK THEME === */
@media (max-width: 991px) {
    .post__item .post__content {
        padding: 25px 15px 20px;
        background-color: #008000; /* Green box in mobile too */
    }
}

/* === PRIVACY CONTENT HEADINGS === */
.privacy-content h1,
.privacy-content h2,
.privacy-content h3,
.privacy-content h4,
.privacy-content h5,
.privacy-content h6 {
    color: #ffffff !important;
}

/* === PRIVACY CONTENT TEXT === */
.privacy-content p,
.privacy-content span,
.privacy-content li {
    color: #e0e0e0 !important;
}

/* === BLOG SIDEBAR (Dark Box with Green Border) === */
.blog-sidebar {
    padding: 40px;
    background-color: #008000; /* Green background */
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
}

/* === SIDEBAR RESPONSIVE === */
@media (min-width: 992px) and (max-width: 1199px),
       screen and (max-width: 400px) {
    .blog-sidebar {
        padding: 30px 20px;
    }
}

/* === SIDEBAR WIDGETS === */
.widget__title {
    margin-bottom: 10px;
    color: #ffffff;
}

.widget:not(:last-child) {
    margin-bottom: 40px;
}

/* === CATEGORY WIDGET === */
.widget.widget__category ul li a {
    text-decoration: none;
    color: #ffffff;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: block;
    transition: padding 0.3s ease;
}

.widget.widget__category ul li a:hover {
    padding-left: 10px;
    color: #FF6A00;
}

/* === POST WIDGET === */
.widget.widget__post__area ul li {
    padding: 10px 0;
}

.widget__post {
    display: flex;
    text-decoration: none;
    color: #ffffff;
}

.widget__post .widget__post__thumb {
    width: 80px;
    height: 80px;
    border-radius: 4px;
    overflow: hidden;
}

.widget__post .widget__post__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.widget__post .widget__post__content {
    width: calc(100% - 80px);
    padding-left: 15px;
}

.widget__post__title {
    color: #ffffff;
}

.widget__post .widget__post__content span {
    font-size: 14px;
    color: #FF6A00;
}

/* === TAGS WIDGET === */
.widget.widget__tags ul {
    margin: -5px;
}

.widget.widget__tags ul li {
    padding: 5px;
}

.widget.widget__tags ul li a {
    padding: 8px 20px;
    border-radius: 5px;
    background: #0a1227;
    font-size: 14px;
    text-decoration: none;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-block;
    transition: all 0.3s ease;
}

.widget.widget__tags ul li a:hover,
.widget.widget__tags ul li a.active {
    background: #FF6A00;
    color: #ffffff;
}

/* === BLOG SINGLE POST === */
.post__details {
    background-color: #1a1a1a;
    padding: 30px;
    color: #e0e0e0;
}

.post__details .post__header {
    margin-bottom: 40px;
}

.post__details .post__header .post__title {
    margin-bottom: 8px;
    color: #ffffff;
}

.post__details .post-meta {
    margin: -3px -10px 25px -10px;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
}

.post__details .post-meta li {
    padding: 3px 10px;
    color: #cccccc;
}

.post__details .post-meta li i {
    color: #FF6A00;
}

.post__details p {
    margin-bottom: 30px;
    color: #e0e0e0;
}


/* === POST THUMBNAIL === */
.post__details .post__thumb {
    height: 420px;
    margin-bottom: 30px;
}
.post__details .post__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (max-width: 575px) {
    .post__details .post__thumb {
        height: unset;
    }
}

/* === POST QUOTE BLOCK === */
.post__details .post__quote {
    margin-bottom: 30px;
}
.post__quote {
    font-size: 24px;
    line-height: 1.5;
    font-family: "Jost", sans-serif;
    color: #ffffff;
    font-style: italic;
    text-align: center;
    padding: 0 30px;
    border-left: 3px solid #FF6A00;
    background: #1a1a1a;
    border-radius: 2px;
}
@media (max-width: 575px) {
    .post__quote {
        padding: 0 15px;
        font-size: 20px;
    }
}

/* === TAGS AND SHARE SECTION === */
.post__tag,
.post__share {
    margin: -5px;
}
.post__tag li,
.post__share li {
    padding: 5px;
}

.post__share__title {
    margin-bottom: 10px;
    color: #ffffff;
}

/* === TAG LINKS === */
.post__tag li a {
    font-size: 14px;
    padding: 5px 15px;
    background: #0f1932;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-block;
    transition: 0.3s;
}
.post__tag li a:hover,
.post__tag li a.active {
    background: #FF6A00;
    color: #ffffff;
}

/* === SHARE ICONS === */
.post__share li a {
    text-decoration: none;
}
.post__share li a i {
    line-height: 35px;
    width: 35px;
    height: 35px;
    display: block;
    text-align: center;
    color: #ffffff;
    background: #FF6A00;
    border-radius: 4px;
}

/* === SOCIAL PLATFORM COLORS (unchanged) === */
.post__share li a i[class*="facebook"] { background: #3b5998; }
.post__share li a i[class*="twitter"] { background: #55acee; }
.post__share li a i[class*="instagram"] { background: #e4405f; }
.post__share li a i[class*="skype"] { background: #2fb7df; }
.post__share li a i[class*="linkedin"] { background: #007bb5; }
.post__share li a i[class*="youtube"] { background: #cd201f; }
.post__share li a i[class*="behance"] { background: #1769ff; }
.post__share li a i[class*="tumblr"] { background: #34465d; }
.post__share li a i[class*="pinterest"] { background: #007bb5; }
.post__share li a i[class*="navy"] { background: #d8e0f3; }
.post__share li a i[class*="futbol"] { background: #db3776; }
.post__share li a i[class*="vimeo"] { background: #1ab7ea; }

/* === BLOG ITEM BACKGROUND (Dark Section) === */
.bg--section .post__item {
    background: #0a1227;
}
.bg--section .post__item .meta__date {
    background: #0f1932;
}

/* === COOKIES CARD (DARK VERSION) === */
.cookies-card {
    width: 520px;
    padding: 30px;
    color: #e0e0e0;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 9999;
    background-color: #121212;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.radius--10px {
    border-radius: 10px;
}

.cookies-card.bg--default {
    background-color: #1a1a1a;
    color: #ffffff;
}

.cookies-card__icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: #2C3249;
    font-size: 32px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
}

.cookies-card__content {
    margin-bottom: 0;
    color: #ffffff;
}

.cookies-btn {
    color: #ffffff;
    text-decoration: none;
    padding: 10px 25px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    margin: 3px 5px;
    display: inline-block;
    border-radius: 45px;
    background: transparent;
    transition: all 0.3s ease;
}
.cookies-btn:hover {
    background-color: #FF6A00;
    color: #ffffff;
    border-color: #FF6A00;
}

/* === LARGE STYLE COOKIE CARD === */
.cookies-card.style--lg {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background-color: #121212;
    color: #ffffff;
}

.cookies-card.style--lg .cookies-card__content {
    width: calc(100% - (55px + 220px));
    padding: 0 25px;
}
.cookies-card.style--lg .cookies-card__content * {
    color: #e0e0e0 !important;
    font-size: 15px !important;
}
.cookies-card.style--lg .cookies-card__content a {
    color: #FF6A00 !important;
}
.cookies-card.style--lg .cookies-card__btn {
    width: 220px;
}

/* === DARK VERSION COOKIE CARD === */
.cookies-card.cookies--dark {
    color: #EADFD8;
    background-color: #2C3249;
}
.cookies-card.cookies--dark .cookies-btn {
    color: #EADFD8;
}
.cookies-card.cookies--dark .cookies-btn:hover {
    background-color: #343A50;
    color: #ffffff;
}
.cookies-card.cookies--dark .cookies-card__icon {
    background-color: #1E2337;
}

/* === RESPONSIVE COOKIES CARD === */
@media (max-width: 1399px) {
    .cookies-card.style--lg,
    .cookies-card {
        width: 100%;
    }
}
@media (max-width: 767px) {
    .cookies-card.style--lg {
        display: block;
    }
    .cookies-card.style--lg .cookies-card__content {
        width: 100%;
        padding: 0;
        margin-top: 25px;
    }
    .cookies-card.style--lg .cookies-card__btn {
        width: 100%;
        margin-top: 20px;
    }
}

/* === TRANSITION === */
body {
    transition: all ease 0.3s;
    background-color: #121212;
    color: #e0e0e0;
}


/* === Transparent Background (unchanged) === */
.bg-trans {
    background: transparent;
}

/* === FORM GROUP SPACING (unchanged) === */
.vl-public .form-group {
    margin-bottom: 15px;
}

/* === REPLY ITEM CONTAINER === */
.vl-public .reply-item {
    min-height: 130px;
    background-color: #1a1a1a; /* Dark background */
    color: #ffffff;
    border-radius: 10px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* === REPLY ITEM NAME (right-aligned or centered in mobile) === */
.vl-public .reply-item .reply-item-name {
    text-align: end;
    color: #ffffff;
}

/* === Responsive Adjustments === */
@media (max-width: 767px) {
    .vl-public .reply-item .reply-item-name {
        margin-bottom: 20px;
        padding-bottom: 20px;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    }
}

/* === DISABLED ELEMENTS (unchanged, but slightly clearer for dark mode) === */
.vl-public .disabled {
    opacity: 0.4;
    color: #999;
}

/* === ADMIN BAR HEADER POSITION === */
body.admin-bar .header-section.active .header-bottom {
    top: 32px;
}
@media (max-width: 600px) {
    body.admin-bar .header-section.active .header-bottom {
        top: 0px;
    }
}

/* === CARD DETAIL BOX === */
.vl-public .card-detail {
    background-color: #1f1f1f;
    box-shadow: 0 0 12px 2px rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 20px;
    color: #ffffff;
}

/* === CARD DETAIL LIST ITEMS === */
.vl-public .card-detail ul li {
    font-weight: 600;
    color: #ffffff;
}
