/*--------------------------------------------------------------
# Fonts & Root Variables
--------------------------------------------------------------*/
:root {
  --default-font:
    "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  --heading-font: "Montserrat", sans-serif;
  --nav-font: "Poppins", sans-serif;

  --background-color: #0f172a;
  --default-color: #dbe4f0;
  --heading-color: #ffffff;
  --accent-color: #8b5cf6;
  --accent-color-light: #c084fc;
  --surface-color: #1e293b;
  --surface-color-soft: #273449;
  --contrast-color: #ffffff;

  --nav-color: #e2e8f0;
  --nav-hover-color: #c084fc;
  --nav-mobile-background-color: #111827;
  --nav-dropdown-background-color: #1e293b;
  --nav-dropdown-color: #e2e8f0;
  --nav-dropdown-hover-color: #c084fc;

  --border-color: rgba(255, 255, 255, 0.08);
  --shadow-soft: 0 12px 35px rgba(0, 0, 0, 0.22);
  --shadow-hover: 0 18px 45px rgba(0, 0, 0, 0.32);

  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# Color Presets
--------------------------------------------------------------*/
.light-background {
  --background-color: #111827;
  --surface-color: #1e293b;
}

.dark-background {
  --background-color: #0b1120;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #111827;
  --contrast-color: #ffffff;
}

.accent-background {
  --background-color: #111827;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #c084fc;
  --surface-color: #1e293b;
  --contrast-color: #ffffff;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--default-color);
  background: var(--background-color);
  font-family: var(--default-font);
}

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

a:hover {
  color: #ffffff;
  text-decoration: none;
}

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

p {
  color: color-mix(in srgb, var(--default-color), transparent 6%);
}

img {
  max-width: 100%;
}

.main {
  background: var(--background-color);
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  --background-color: #111827;
  --heading-color: #ffffff;

  color: var(--default-color);
  background-color: var(--background-color);
  transition: all 0.4s ease;
  z-index: 997;
}

.header .topbar {
  background: #0b1120;
  height: 40px;
  padding: 0;
  font-size: 14px;
  border-bottom: 1px solid var(--border-color);
}

.header .topbar .contact-info i {
  font-style: normal;
  color: #cbd5e1;
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  padding-left: 5px;
  color: #cbd5e1;
}

.header .topbar .contact-info i a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.header .topbar .social-links a {
  color: #94a3b8;
  line-height: 0;
  margin-left: 20px;
}

.header .topbar .social-links a:hover {
  color: var(--accent-color-light);
}

.header .branding {
  min-height: 66px;
  padding: 10px 0;
  background: #111827;
}

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

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

.header .logo h1,
.header .logo .sitename {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--heading-color);
}

.header .logo span {
  font-size: 32px;
  margin-left: 2px;
  color: var(--accent-color-light);
}

.scrolled .header {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 70px 0;
  scroll-margin-top: 112px;
  overflow: clip;
}

.section-title {
  text-align: center;
  padding-bottom: 55px;
}

.section-title h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 18px;
  padding-bottom: 18px;
  position: relative;
}

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

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

/*--------------------------------------------------------------
# Page Title & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: #111827;
  --default-color: #ffffff;
  --heading-color: #ffffff;

  color: var(--default-color);
  background:
    radial-gradient(
      circle at top right,
      rgba(139, 92, 246, 0.22),
      transparent 32%
    ),
    linear-gradient(135deg, #111827 0%, #0f172a 100%);
  position: relative;
}

.page-title .heading {
  padding: 165px 0 78px 0;
  border-top: 1px solid var(--border-color);
}

.page-title .heading h1 {
  font-size: 42px;
  font-weight: 700;
}

.page-title .heading p {
  color: #cbd5e1;
  line-height: 1.8;
}

.page-title nav {
  background-color: rgba(255, 255, 255, 0.04);
  padding: 18px 0;
  border-top: 1px solid var(--border-color);
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 15px;
  font-weight: 600;
}

.page-title nav ol a {
  color: #cbd5e1;
}

.page-title nav ol a:hover {
  color: #ffffff;
}

.page-title nav ol .current {
  color: var(--accent-color-light);
}

.page-title nav ol li + li {
  padding-left: 10px;
}

.page-title nav ol li + li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: #94a3b8;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  position: relative;
  padding: 145px 0 0 0;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero h2 .accent {
  color: var(--accent-color-light);
}

.hero p {
  color: #cbd5e1;
  font-weight: 400;
  margin-bottom: 30px;
  line-height: 1.8;
}

.hero .btn-get-started {
  color: #ffffff;
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 14px 36px;
  border-radius: 50px;
  transition: 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero .btn-get-started:hover {
  background: var(--accent-color-light);
  color: #ffffff;
  transform: translateY(-2px);
}

.hero .btn-watch-video {
  font-size: 16px;
  margin-left: 25px;
  font-weight: 600;
  color: #ffffff;
}

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

.hero .icon-boxes {
  padding-bottom: 60px;
  z-index: 4;
}

.hero .icon-box {
  padding: 45px 28px;
  position: relative;
  overflow: hidden;
  background: var(--surface-color);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-color);
  transition: 0.3s ease;
  border-radius: 18px;
  z-index: 1;
  height: 100%;
  width: 100%;
  text-align: center;
}

.hero .icon-box:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.hero .icon-box .title {
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 22px;
}

.hero .icon-box .title a {
  color: #ffffff;
}

.hero .icon-box .icon {
  margin-bottom: 18px;
  display: inline-block;
  font-size: 46px;
  line-height: 1;
  color: var(--accent-color-light);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about h3 {
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 20px;
}

.about .fst-italic {
  color: #cbd5e1;
}

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

.about .content ul li {
  padding: 0 0 10px 30px;
  position: relative;
}

.about .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: var(--accent-color-light);
}

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

.about .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

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

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

.clients .swiper-slide img {
  transition: 0.3s;
  opacity: 0.8;
  filter: grayscale(1);
}

.clients .swiper-slide img:hover {
  transform: scale(1.08);
  opacity: 1;
  filter: grayscale(0);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  padding: 10px;
}

.stats .stats-item i {
  font-size: 44px;
  color: var(--accent-color-light);
  line-height: 0;
  margin-right: 15px;
}

.stats .stats-item .purecounter {
  color: var(--heading-color);
  font-size: 40px;
  display: block;
  font-weight: 700;
  line-height: 40px;
}

.stats .stats-item p {
  color: #cbd5e1;
  padding: 15px 0 0 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Services Section / Homepage Cards
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  padding: 38px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  height: 100%;
  transition: 0.3s ease;
}

.services .service-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.services .service-item .icon {
  width: 56px;
  height: 56px;
  position: relative;
  margin-bottom: 42px;
}

.services .service-item .icon i {
  color: var(--accent-color-light);
  font-size: 56px;
  z-index: 2;
  position: relative;
}

.services .service-item .icon:before {
  position: absolute;
  content: "";
  height: 48px;
  width: 48px;
  background: rgba(139, 92, 246, 0.16);
  border-radius: 50px;
  z-index: 1;
  top: 12px;
  right: -20px;
  transition: 0.3s;
}

.services .service-item h3 {
  color: #ffffff;
  font-weight: 700;
  margin: 0 0 18px 0;
  padding-bottom: 8px;
  font-size: 22px;
  position: relative;
  display: inline-block;
  border-bottom: 3px solid rgba(255, 255, 255, 0.08);
}

.services .service-item p {
  line-height: 1.7;
  font-size: 14px;
  margin-bottom: 0;
  color: #cbd5e1;
}

.services .service-item .readmore {
  margin-top: 16px;
  display: inline-block;
  color: var(--accent-color-light);
  font-weight: 600;
}

.services .service-item:hover h3 {
  border-color: var(--accent-color-light);
}

/*--------------------------------------------------------------
# Service Details Page
--------------------------------------------------------------*/
.service-details {
  background: var(--background-color);
}

.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid var(--border-color);
  margin-bottom: 20px;
  border-radius: 16px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 10px 0 10px 15px;
  border-left: 3px solid rgba(255, 255, 255, 0.12);
  margin: 18px 0;
  color: #cbd5e1;
}

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

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

.service-details .services-img,
.service-details img.img-fluid {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 24px;
  margin-bottom: 32px;
  display: block;
}

.service-details .border,
.service-details [class*="border"] {
  border-color: var(--border-color) !important;
}

.service-details .shadow-sm {
  box-shadow: var(--shadow-soft) !important;
}

.service-details .rounded-5 {
  border-radius: 22px !important;
}

.service-details .p-4,
.service-details .p-lg-5 {
  background: var(--surface-color);
}

.service-details h3 {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
}

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

.service-details p {
  font-size: 15px;
  line-height: 1.85;
  color: #cbd5e1;
}

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

.service-details ul li {
  padding: 6px 0;
  display: flex;
  align-items: center;
  color: #e2e8f0;
}

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

.service-details .text-uppercase {
  color: var(--accent-color-light) !important;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  box-sizing: content-box;
  padding: 30px;
  margin: 30px 15px;
  position: relative;
  height: 100%;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  margin-right: 15px;
}

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

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #94a3b8;
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

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

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: var(--accent-color-light);
  font-size: 26px;
  line-height: 0;
}

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

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

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

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #475569;
  opacity: 1;
}

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

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

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 9px 16px;
  font-size: 14px;
  font-weight: 600;
  margin: 5px;
  line-height: 1;
  color: #cbd5e1;
  border-radius: 999px;
  transition: 0.3s;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: #ffffff;
  background: rgba(37, 99, 235, 0.18);
  border: 1px solid rgba(59, 130, 246, 0.35);
}

.portfolio .portfolio-content {
  background-color: var(--surface-color);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.portfolio .portfolio-content > a {
  display: block;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #081220;
}

.portfolio .portfolio-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: 0.4s ease;
  position: relative;
  z-index: 1;
}

.portfolio .portfolio-content .portfolio-info {
  background-color: var(--surface-color);
  border-top: 1px solid var(--border-color);
  padding: 20px;
  position: relative;
  z-index: 2;
  min-height: 135px;
  flex: 1;
}

.portfolio .portfolio-content .portfolio-info h4 {
  font-size: 18px;
  font-weight: 700;
  padding-right: 0;
  margin-bottom: 10px;
}

.portfolio .portfolio-content .portfolio-info h4 a {
  color: #ffffff;
}

.portfolio .portfolio-content .portfolio-info h4 a:hover {
  color: var(--accent-color-light);
}

.portfolio .portfolio-content .portfolio-info p {
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 0;
  padding-right: 0;
}

.portfolio .portfolio-content:hover img {
  transform: scale(1.04);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/

.team {
  overflow: hidden;
}

.team .team-swiper {
  padding: 10px 0 60px;
  overflow: hidden;
}

.team .swiper-wrapper {
  align-items: stretch;
}

.team .swiper-slide {
  height: auto !important;
  display: flex;
  justify-content: center;
}

/* CARD */

.team .member {
  width: 100%;
  max-width: 320px;

  background: linear-gradient(145deg, #111827, #1e293b);

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 24px;

  padding: 14px;

  overflow: hidden;

  text-align: center;

  transition: 0.35s ease;

  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.team .member:hover {
  transform: translateY(-8px);
  border-color: rgba(168, 85, 247, 0.45);
}

/* IMAGE */

.team .member img {
  width: 100%;

  height: 240px;

  object-fit: cover;

  object-position: center top;

  border-radius: 18px;

  margin-bottom: 16px;

  display: block;
}

/* CONTENT */

.team .member-content {
  padding: 0 6px 6px;
}

.team .member-content > span {
  display: block;

  color: var(--accent-color);

  font-size: 11px;

  font-weight: 800;

  letter-spacing: 1.4px;

  text-transform: uppercase;

  margin-bottom: 8px;
}

/* NAME */

.team .member h4 {
  color: #ffffff;

  font-size: 24px;

  font-weight: 800;

  line-height: 1.2;

  margin-bottom: 4px;
}

/* ROLE */

.team .member h5 {
  color: var(--accent-color);

  font-size: 15px;

  font-weight: 700;

  margin-bottom: 12px;
}

/* DESCRIPTION */

.team .member p {
  color: #cbd5e1;

  font-size: 13px;

  line-height: 1.7;

  margin-bottom: 16px;
}

/* INFO */

.team .member-info {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 12px;

  flex-wrap: wrap;

  margin-bottom: 16px;
}

.team .member-info div {
  display: flex;

  align-items: center;

  gap: 7px;
}

.team .member-info i {
  width: 30px;

  height: 30px;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  background: rgba(168, 85, 247, 0.14);

  border: 1px solid rgba(168, 85, 247, 0.28);

  color: var(--accent-color);

  font-size: 13px;
}

.team .member-info strong {
  color: #ffffff;

  font-size: 11px;

  line-height: 1.4;

  font-weight: 600;
}

/* SKILLS */

.team .skills {
  display: flex;

  flex-wrap: wrap;

  justify-content: center;

  gap: 8px;

  margin-bottom: 16px;
}

.team .skills span {
  border: 1px solid rgba(168, 85, 247, 0.55);

  color: #ffffff;

  border-radius: 50px;

  padding: 5px 10px;

  font-size: 11px;

  font-weight: 500;

  transition: 0.3s ease;
}

.team .skills span:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
}

/* SOCIAL */

.team .member .social {
  display: flex;

  justify-content: center;

  gap: 10px;
}

.team .member .social a {
  width: 34px;

  height: 34px;

  border-radius: 50%;

  background: rgba(168, 85, 247, 0.12);

  border: 1px solid rgba(168, 85, 247, 0.28);

  color: var(--accent-color);

  display: flex;

  align-items: center;

  justify-content: center;

  transition: 0.3s ease;
}

.team .member .social a:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: #ffffff;
  transform: translateY(-3px);
}

/* PAGINATION */

.team .team-swiper .swiper-pagination {
  bottom: 0;
}

.team .team-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;

  background: #64748b;

  opacity: 1;

  transition: 0.3s ease;
}

.team .team-swiper .swiper-pagination-bullet-active {
  width: 28px;

  border-radius: 30px;

  background: var(--accent-color);
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing {
  padding: 70px 0 120px 0;
}

.pricing .pricing-item {
  background-color: var(--surface-color);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-color);
  padding: 55px 38px;
  height: 100%;
  position: relative;
  border-radius: 20px;
}

.pricing h3 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
  text-align: center;
}

.pricing .icon {
  margin: 30px auto 20px auto;
  width: 70px;
  height: 70px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 14px rgba(139, 92, 246, 0.14);
}

.pricing .icon i {
  color: #ffffff;
  font-size: 28px;
  line-height: 0;
}

.pricing h4 {
  font-size: 48px;
  color: var(--accent-color-light);
  font-weight: 700;
  font-family: var(--heading-font);
  margin-bottom: 25px;
  text-align: center;
}

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

.pricing h4 span {
  color: #94a3b8;
  font-size: 18px;
  font-weight: 400;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: #cbd5e1;
  text-align: left;
  line-height: 20px;
}

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

.pricing ul i {
  color: #22c55e;
  font-size: 24px;
  padding-right: 5px;
}

.pricing ul .na {
  color: #64748b;
}

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

.pricing .buy-btn {
  color: #ffffff;
  display: inline-block;
  padding: 10px 40px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 16px;
  font-weight: 600;
  font-family: var(--heading-font);
}

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

.pricing .featured {
  z-index: 10;
  border: 2px solid var(--accent-color-light);
}

/*--------------------------------------------------------------
# FAQ Section
--------------------------------------------------------------*/
.faq .content h3 {
  font-weight: 400;
  font-size: 34px;
}

.faq .content p {
  font-size: 15px;
  color: #cbd5e1;
}

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 22px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 0;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
}

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

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

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

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

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 24px;
  right: 22px;
  font-size: 16px;
  line-height: 0;
  cursor: pointer;
}

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

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

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

/*--------------------------------------------------------------
# Recent Posts / Blog Cards
--------------------------------------------------------------*/
.recent-posts article,
.blog-posts article {
  background: var(--surface-color);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-color);
  padding: 30px;
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
}

.recent-posts .post-img,
.blog-posts .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.recent-posts .post-category,
.blog-posts .post-category {
  font-size: 16px;
  color: #94a3b8;
  margin-bottom: 10px;
}

.recent-posts .title,
.blog-posts .title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.recent-posts .title a,
.blog-posts .title a {
  color: #ffffff;
}

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

.recent-posts .post-author-img,
.blog-posts .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.recent-posts .post-author,
.blog-posts .post-author {
  font-weight: 600;
  margin-bottom: 5px;
}

.recent-posts .post-date,
.blog-posts .post-date {
  font-size: 14px;
  color: #94a3b8;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-container {
  background-color: var(--surface-color);
  height: 100%;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid var(--border-color);
}

.contact .info-item {
  width: 100%;
  margin-bottom: 20px;
  padding: 20px;
  color: #ffffff;
  background-color: rgba(139, 92, 246, 0.12);
  border-radius: 14px;
}

.contact .info-item:last-child {
  margin-bottom: 0;
}

.contact .info-item i {
  font-size: 20px;
  color: #ffffff;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  margin-right: 15px;
}

.contact .info-item h3 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

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

.contact .php-email-form {
  background-color: var(--surface-color);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-color);
  width: 100%;
  height: 100%;
  padding: 30px;
  border-radius: 18px;
}

.contact .php-email-form input[type="text"],
.contact .php-email-form input[type="email"],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 12px 15px;
  box-shadow: none;
  border-radius: 10px;
  color: #ffffff;
  background-color: #111827;
  border: 1px solid var(--border-color);
}

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

.contact .php-email-form input[type="text"]::placeholder,
.contact .php-email-form input[type="email"]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: #94a3b8;
}

.contact .php-email-form button[type="submit"] {
  color: #ffffff;
  background: var(--accent-color);
  border: 0;
  padding: 12px 32px;
  border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: var(--accent-color-light);
}

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

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

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

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  color: #cbd5e1;
  background-color: #111827;
  font-size: 14px;
  position: relative;
}

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

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: #ffffff;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}

.footer .footer-about p {
  font-size: 14px;
  color: #cbd5e1;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  font-size: 16px;
  color: #cbd5e1;
  margin-right: 10px;
}

.footer .social-links a:hover {
  color: #ffffff;
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

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

.footer .footer-links ul a {
  color: #cbd5e1;
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color-light);
}

.footer .footer-contact p {
  margin-bottom: 5px;
  color: #cbd5e1;
}

.footer .copyright {
  padding-top: 28px;
  padding-bottom: 28px;
  border-top: 1px solid var(--border-color);
}

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

.footer .credits {
  margin-top: 4px;
  font-size: 13px;
  color: #94a3b8;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
  border-radius: 18px;
}

.portfolio-details .swiper-wrapper {
  height: auto;
}

.portfolio-details .portfolio-info {
  background: var(--surface-color);
  padding: 25px;
  border-radius: 18px;
  border: 1px solid var(--border-color);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.portfolio-details .portfolio-info h3:after {
  content: "";
  position: absolute;
  width: 50px;
  height: 3px;
  background: var(--accent-color-light);
  left: 0;
  bottom: 0;
}

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

.portfolio-details .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.portfolio-details .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 500;
  color: #94a3b8;
  font-size: 14px;
}

.portfolio-details .portfolio-info .btn-visit {
  padding: 9px 38px;
  background: var(--accent-color);
  color: #ffffff;
  border-radius: 50px;
}

.portfolio-details .portfolio-info .btn-visit:hover {
  background: var(--accent-color-light);
}

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

/*--------------------------------------------------------------
# Blog Details / Comments / Widgets
--------------------------------------------------------------*/
.blog-details .article,
.blog-author .author-container,
.comment-form form,
.widgets-container {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-color);
  border-radius: 18px;
}

.blog-details .title {
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  margin: 30px 0;
}

.blog-details .content blockquote {
  overflow: hidden;
  background-color: rgba(139, 92, 246, 0.12);
  padding: 45px;
  position: relative;
  text-align: center;
  margin: 20px 0;
  border-radius: 18px;
}

.blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  bottom: 20px;
  width: 3px;
  background-color: var(--accent-color-light);
}

.blog-details .meta-top,
.blog-details .meta-top a,
.blog-details .meta-bottom,
.blog-details .meta-bottom a {
  color: #94a3b8;
}

.blog-author img {
  max-width: 120px;
  margin-right: 20px;
}

.blog-comments .comment {
  margin-top: 30px;
}

.blog-comments .comment .comment-img img {
  width: 60px;
  border-radius: 50%;
}

.comment-form form input,
.comment-form form textarea,
.search-widget form input[type="text"] {
  background-color: #111827;
  color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 10px 12px;
}

.comment-form form input:focus,
.comment-form form textarea:focus,
.search-widget form input[type="text"]:focus {
  outline: none;
  border-color: var(--accent-color-light);
}

.comment-form form .btn-primary,
.search-widget form button {
  border-radius: 50px;
  padding: 10px 22px;
  border: 0;
  background-color: var(--accent-color);
  color: #ffffff;
}

.comment-form form .btn-primary:hover,
.search-widget form button:hover {
  background-color: var(--accent-color-light);
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

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

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

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

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

.scroll-top i {
  font-size: 24px;
  color: #ffffff;
  line-height: 0;
}

.scroll-top:hover {
  background-color: var(--accent-color-light);
}

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

/*--------------------------------------------------------------
# Utilities / Fixes
--------------------------------------------------------------*/
.rounded-4 {
  border-radius: 18px !important;
}

.bg-white,
.bg-light {
  background-color: var(--surface-color) !important;
}

.text-dark {
  color: var(--heading-color) !important;
}

.text-muted {
  color: #94a3b8 !important;
}

.border {
  border-color: var(--border-color) !important;
}

.shadow-sm {
  box-shadow: var(--shadow-soft) !important;
}

/* ==========================================================
   FINAL SECTION REFINEMENTS / MATCHES NEW HTML
   ========================================================== */

/* Shared Badge */
.section-badge,
.faq-subtitle,
.cta-subtitle {
  display: inline-block;
  color: var(--accent-color-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* CTA Rework */
.call-to-action {
  position: relative;
  overflow: hidden;
}

.call-to-action .container {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 420px;
  padding: 70px 55px;
  background: #111827;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-soft);
}

.call-to-action .cta-bg,
.call-to-action .cta-bg img,
.call-to-action > .container > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-action .cta-overlay,
.call-to-action .container:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at top right,
      rgba(192, 132, 252, 0.28),
      transparent 34%
    ),
    linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.75));
  z-index: 2;
}

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

.call-to-action h2,
.call-to-action h3 {
  color: #ffffff;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
}

.call-to-action p {
  color: #dbe4f0;
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 28px;
}

.cta-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 30px;
}

.cta-features .feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
}

.cta-features .feature-item i {
  color: var(--accent-color-light);
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cta-btn,
.cta-outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  padding: 13px 30px;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 14px;
}

.cta-btn {
  background: var(--accent-color);
  color: #ffffff;
  border: 1px solid var(--accent-color);
}

.cta-outline-btn {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
}

.cta-btn:hover,
.cta-outline-btn:hover {
  color: #ffffff;
  transform: translateY(-2px);
  background: var(--accent-color-light);
  border-color: var(--accent-color-light);
}

.cta-card {
  background: rgba(30, 41, 59, 0.78);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow-soft);
}

.cta-card-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: rgba(139, 92, 246, 0.22);
  color: var(--accent-color-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 20px;
}

.cta-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.cta-card p {
  font-size: 14px;
  margin-bottom: 22px;
}

.cta-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.cta-stats .stat-box {
  padding: 12px 8px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  text-align: center;
}

.cta-stats .stat-box h4 {
  font-size: 20px;
  margin: 0 0 4px;
  color: #ffffff;
}

.cta-stats .stat-box span {
  font-size: 11px;
  color: #cbd5e1;
}

/* FAQ Rework */
.faq .faq-intro h2 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
}

.faq .faq-intro h2 span {
  color: var(--accent-color-light);
}

.faq .faq-intro p {
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 24px;
}

.faq-contact-box {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
}

.faq-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
}

.faq-contact-item + .faq-contact-item {
  border-top: 1px solid var(--border-color);
}

.faq-contact-item i {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.16);
  color: var(--accent-color-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-contact-item h5 {
  font-size: 14px;
  margin: 0 0 4px;
}

.faq-contact-item span {
  color: #cbd5e1;
  font-size: 13px;
}

.faq .faq-container .faq-item .faq-toggle.bi-plus-lg {
  transition: 0.3s ease;
}

.faq .faq-container .faq-active .faq-toggle.bi-plus-lg {
  transform: rotate(45deg);
}

/* Recent Post Rework */
.recent-posts .post-card {
  padding: 0;
  overflow: hidden;
}

.recent-posts .post-card .post-img {
  position: relative;
  max-height: none;
  margin: 0;
}

.recent-posts .post-card .post-img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: 0.5s ease;
}

.recent-posts .post-card:hover .post-img img {
  transform: scale(1.06);
}

.recent-posts .post-tag {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: var(--accent-color);
  color: #ffffff;
  padding: 7px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
}

.recent-posts .post-content {
  padding: 26px;
}

.recent-posts .post-meta-top {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 14px;
}

.recent-posts .post-meta-top span {
  color: #94a3b8;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.recent-posts .post-title {
  font-size: 21px;
  line-height: 1.35;
  margin-bottom: 14px;
}

.recent-posts .post-title a {
  color: #ffffff;
}

.recent-posts .post-title a:hover {
  color: var(--accent-color-light);
}

.recent-posts .post-text {
  font-size: 14px;
  line-height: 1.75;
  color: #cbd5e1;
  margin-bottom: 22px;
}

.recent-posts .post-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--border-color);
  padding-top: 18px;
}

.recent-posts .author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.recent-posts .author-img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 50%;
}

.recent-posts .author h5 {
  font-size: 14px;
  margin: 0 0 2px;
}

.recent-posts .author span {
  font-size: 12px;
  color: #94a3b8;
}

.recent-posts .read-more {
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
}

/* Contact Select Fix */
.contact .php-email-form select,
.contact .php-email-form input[type="tel"] {
  font-size: 14px;
  padding: 12px 15px;
  box-shadow: none;
  border-radius: 10px;
  color: #ffffff;
  background-color: #111827;
  border: 1px solid var(--border-color);
  width: 100%;
}

.contact .php-email-form select:focus,
.contact .php-email-form input[type="tel"]:focus {
  outline: none;
  border-color: var(--accent-color-light);
}

.contact .php-email-form select option {
  background: #111827;
  color: #ffffff;
}

.contact .php-email-form textarea {
  resize: none;
}

/* Footer Rework */
.footer-main {
  padding-top: 70px;
}

.footer .footer-text {
  line-height: 1.8;
  max-width: 430px;
}

.footer-contact-info {
  margin-top: 22px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #cbd5e1;
  margin-bottom: 10px;
}

.footer-contact-item i {
  color: var(--accent-color-light);
}

.footer .footer-links ul a i {
  color: var(--accent-color-light);
  font-size: 12px;
  margin-right: 6px;
}

/*--------------------------------------------------------------
# Newsletter
--------------------------------------------------------------*/

.footer-newsletter p {
  line-height: 1.8;
}

.newsletter-form {
  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 100%;
  max-width: 460px;

  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);

  border-radius: 999px;

  padding: 6px;
  margin-top: 18px;

  overflow: hidden;
}

.newsletter-form input {
  flex: 1;
  min-width: 0;

  background: transparent;
  border: none;
  outline: none;

  color: #ffffff;

  padding: 0 16px;
  height: 52px;

  font-size: 15px;
}

.newsletter-form input::placeholder {
  color: #94a3b8;
}

.newsletter-form button {
  flex-shrink: 0;

  border: none;
  outline: none;

  height: 52px;
  padding: 0 26px;

  border-radius: 999px;

  background: linear-gradient(
    135deg,
    var(--accent-color),
    var(--accent-color-light)
  );

  color: #ffffff;

  font-weight: 700;
  font-size: 15px;

  white-space: nowrap;

  transition: 0.3s ease;
}

.newsletter-form button:hover {
  transform: translateY(-1px);
  background: var(--accent-color-light);
}

.footer-badge {
  margin-top: 16px;
  color: #cbd5e1;
  display: flex;
  gap: 8px;
  font-size: 13px;
}

.footer-badge i {
  color: var(--accent-color-light);
}

.footer-bottom {
  padding: 28px 0;
  border-top: 1px solid var(--border-color);
}

.footer-bottom .copyright {
  padding: 0;
  border-top: 0;
}

.footer-bottom-links {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-bottom-links a {
  color: #cbd5e1;
  font-size: 13px;
}

.footer-bottom-links a:hover {
  color: var(--accent-color-light);
}

/* General Premium Polish */
.portfolio .portfolio-content img {
  height: 260px;
  width: 100%;
  object-fit: cover;
}

.services .service-item,
.pricing .pricing-item,
.testimonials .testimonial-item,
.recent-posts article,
.portfolio .portfolio-content,
.team .member {
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.services .service-item:hover,
.pricing .pricing-item:hover,
.testimonials .testimonial-item:hover,
.recent-posts article:hover,
.portfolio .portfolio-content:hover {
  border-color: rgba(192, 132, 252, 0.35);
}

button,
.btn,
.buy-btn,
.cta-btn,
.btn-get-started {
  transition: all 0.3s ease;
}

button:hover,
.btn:hover,
.buy-btn:hover,
.cta-btn:hover,
.btn-get-started:hover {
  transform: translateY(-2px);
}

.service-details [id] {
  scroll-margin-top: 140px;
}

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

::-webkit-scrollbar-track {
  background: #111827;
}

::-webkit-scrollbar-thumb {
  background: #8b5cf6;
  border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
  background: #c084fc;
}

::selection {
  background: #8b5cf6;
  color: #ffffff;
}
