/* ================= VARIABLES ================= */
:root {
  --orange: #f5902f;
  --gradient: linear-gradient(135deg, #f2673a, #fda60e);
  --black: #0b0b0b;
  --dark: #111;
  --white: #ffffff;
  --gray: #bdbdbd;
}

/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

/* ================= BUTTONS ================= */
.btn {
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background: var(--gradient);
  color: #ffffff;
}

.btn-primary:hover {
  transform: scale(1.06);
  box-shadow: 0 10px 30px rgba(245, 144, 47, 0.45);
}

.btn-outline {
  border: 2px solid var(--orange);
  color: var(--orange);
}

.btn-outline:hover {
  background: var(--gradient);
  color: #000;
}

/* ================= NAVBAR ================= */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 60px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo img {
  width: 120px;
  display: block;
}

.logo span {
  color: var(--white);
  font-size: 18px;
  letter-spacing: 1px;
  transform: translateY(22px);
}

.nav-menu {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-link {
  position: relative;
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  padding: 10px 20px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: var(--orange);
  background: rgba(245, 144, 47, 0.1);
  transform: translateY(-2px);
}

.nav-link.active {
  color: var(--orange);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 3px;
  background: var(--gradient);
  border-radius: 2px;
  animation: slideIn 0.3s ease forwards;
}

@keyframes slideIn {
  from {
    width: 0;
  }
  to {
    width: 30px;
  }
}

/* ================= HERO ================= */
.hero {
  min-height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url("../assets/hero.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 30px 70px;
  padding-top: 30px;
}

.hero-wrapper {
  display: grid;
  grid-template-columns: 1.9fr 0.9fr;
  gap: 60px;
  margin-top: 20px;
  align-items: flex-start;
}

.hero-content {
  margin-top: 80px;
  max-width: 750px;
}

.hero-content h1 {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;
  min-height: 140px;
}

#typewriter-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  position: relative;
  min-height: 1.2em;
}

.cursor {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: blink 1s infinite;
  font-weight: 700;
  margin-left: 2px;
}

@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0;
  }
}

.hero-sub {
  margin: 21px 0 44px;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  max-width: 750px;
}

.hero-goals {
  display: flex;
  justify-content: space-between;
  margin: 21px 0 44px;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  max-width: 750px;
}

/* ================= HERO FORM ================= */
.hero-form {
  background: #ffffff;
  padding: 30px 28px;
  border-radius: 16px;
  color: #000;
  max-width: 380px;
}

.hero-form h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 6px;
}

.hero-form h3 span {
  color: var(--orange);
}

.form-sub {
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
}

.hero-form form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-form input,
.hero-form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  transition: border-color 0.3s ease;
}

.hero-form input:focus,
.hero-form textarea:focus {
  outline: none;
  border-color: var(--orange);
}

.hero-form textarea {
  resize: none;
  height: 80px;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  line-height: 1.4;
  color: #333;
  cursor: pointer;
  margin: 10px 0;
}

.checkbox input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: var(--orange);
  flex-shrink: 0;
}

.hero-content {
  animation: heroSlide 1s ease forwards;
}

.hero-form {
  animation: heroFade 1.2s ease forwards;
}

@keyframes heroSlide {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.9s ease forwards;
}

/* ================= SERVICES ================= */
.services {
  background-color: #f3f3f3;
  padding: 50px 80px;
  text-align: center;
}

.services h2 {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 50px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-grid {
  padding-inline: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}

.service-card {
  background: var(--gradient);
  padding: 46px 24px;
  border-radius: 18px;
  font-weight: 600;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  cursor: pointer;
}

.icon-wrap {
  width: 84px;
  height: 84px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.icon-wrap img {
  width: 140px;
  object-fit: contain;
  transition: all 0.3s ease;
}

.service-header {
  font-size: 18px;
  width: 220px;
  margin: 0;
  letter-spacing: 0.5px;
}

.service-content {
  font-size: 13px;
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.5px;
}

.service-card:hover {
  background: var(--white);
  color: var(--orange);
  transform: translateY(-12px);
}

.service-card:hover .icon-wrap {
  background: var(--gradient);
}

.service-card:hover .service-content {
  color: var(--black);
}

.service-card:hover .icon-wrap img {
  filter: brightness(0) invert(1);
}

/* ================= VALUE SECTION ================= */
.value-section {
  background: #ffffff;
  padding: 100px 80px;
}

.value-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.value-content h2 {
  font-size: 42px;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 10px;
}

.value-content h2 span {
  color: var(--orange);
}

.value-content p {
  color: #333;
  line-height: 1.7;
  margin-bottom: 20px;
}

.value-points {
  list-style: none;
  padding: 0;
  margin: 24px 0 30px;
}

.value-points li {
  margin-bottom: 14px;
  font-size: 15px;
  color: #333;
  line-height: 1.6;
}

.value-points .check {
  color: var(--orange);
  font-weight: 800;
  font-size: 16px;
  line-height: 1;
  margin-top: 4px;
}

.value-points strong {
  font-weight: 700;
}

.value-image img {
  width: 100%;
  max-width: 500px;
  object-fit: cover;
}

/* ================= PROCESS ================= */
.process {
  padding-top: 80px;
  background-color: #f3f3f3;
}

.process h2 {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 10px;
}

.process-step {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 50px;
  align-items: center;
  padding-block: 40px;
  padding-inline: 80px;
}

.process-step.reverse {
  direction: rtl;
  background-color: white;
}

.process-step.reverse .text {
  direction: ltr;
}

.image-box {
  height: 280px;
  border-radius: 18px;
  background: var(--gradient);
  overflow: hidden;
  position: relative;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  transition: transform 0.5s ease;
}

.image-box:hover img {
  transform: scale(1.05);
}

.text h3 {
  color: #000;
  font-size: 39px;
  font-weight: 900;
  margin-bottom: 16px;
}

.text p {
  color: var(--black);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= CTA ================= */
.cta {
  padding: 50px 20px;
  text-align: center;
  line-height: normal;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../assets/cta.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cta h2 {
  font-size: 48px;
  font-weight: 800;
}

.scaleup {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 22px;
}

.cta p {
  max-width: 720px;
  margin: 0 auto 44px;
  color: var(--white);
}

/* ================= FAQ ================= */
.faq-section {
  background: #ffffff;
  padding: 100px 80px;
}

.faq-section h2 {
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 60px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #eee;
  margin-bottom: 10px;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  color: #000;
  text-align: left;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--orange);
}

.faq-question .icon {
  color: var(--orange);
  font-size: 24px;
  font-weight: 900;
  transition: transform 0.3s ease;
  min-width: 24px;
  text-align: center;
  line-height: 1;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding-bottom: 20px;
  color: #444;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active {
  border-bottom: 2px solid var(--orange);
}

/* ================= FOOTER ================= */
.footer {
  background: #ffffff;
  padding: 50px 80px 20px;
  border-top: 1px solid #eee;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  width: 140px;
  margin-bottom: 10px;
}

.footer-tagline {
  font-size: 12px;
  font-weight: 600;
  color: #555;
  letter-spacing: 1px;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.footer-contact-btn {
  padding: 12px 30px !important;
  font-size: 14px !important;
  margin-bottom: 20px !important;
  width: auto !important;
  display: inline-block !important;
}

.contact-info p {
  margin: 0 0 10px 0;
  font-size: 14px;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.contact-info p i {
  color: #f5902f;
  width: 20px;
  text-align: center;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin: 10px 0;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #f5902f;
  color: white;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 18px;
}

.social-icons a:hover {
  background: var(--gradient);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(245, 144, 47, 0.3);
}

.footer-bottom {
  margin-top: 10px;
}

.footer-bottom p {
  font-size: 14px;
  color: #333;
}

/* ================= SCROLL ANIMATIONS ================= */
.animate-hidden {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card.animate-hidden {
  transition-delay: calc(var(--index, 0) * 0.1s);
}

.process-step.animate-hidden {
  transition-delay: 0.2s;
}

/* ================= TABLET RESPONSIVENESS (768px - 1024px) ================= */
@media (max-width: 1200px) {
  /* Adjustments for smaller desktops and large tablets */

  .hero{
    min-height: 60vh;
  }

  .hero-wrapper {
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
  }
  
  .hero-content h1 {
    font-size: 56px;
    min-height: 130px;
  }
  
  .service-grid {
    gap: 30px;
    padding-inline: 20px;
  }
  
  .service-card {
    padding: 40px 20px;
  }
  
  .value-container {
    gap: 40px;
  }
}

/* ================= TABLET (1024px and below) ================= */
@media (max-width: 1024px) {
  .hero {
    padding: 30px 50px;
 
  }
  
  .navbar {
    padding-right: 40px;
  }
  
  .hero-wrapper {
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
  }
  
  .hero-content h1 {
    font-size: 48px;
    min-height: 110px;
  }
  
  .hero-sub {
    font-size: 20px;
    margin: 15px 0 35px;
  }
  
  .hero-goals {
    font-size: 18px;
    margin: 15px 0 35px;
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .services {
    padding: 50px 50px;
  }
  
  .services h2 {
    font-size: 42px;
    margin-bottom: 40px;
  }
  
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding-inline: 0;
  }
  
  .service-card {
    padding: 40px 25px;
  }
  
  .service-header {
    width: auto;
    max-width: 220px;
  }
  
  .value-section {
    padding: 80px 50px;
  }
  
  .value-container {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  
  .value-content h2 {
    font-size: 38px;
  }
  
  .value-points {
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .value-image img {
    max-width: 100%;
    margin: 0 auto;
    display: block;
  }
  
  .process-step {
    padding-inline: 50px;
  }
  
  .image-box {
    height: 250px;
  }
  
  .text h3 {
    font-size: 34px;
  }
  
  .faq-section {
    padding: 80px 50px;
  }
  
  .faq-section h2 {
    font-size: 38px;
    margin-bottom: 50px;
  }
  
  .footer {
    padding: 50px 50px 20px;
  }
}

/* ================= iPAD PORTRAIT & SMALL TABLETS (768px and below) ================= */
@media (max-width: 768px) {
  .hero {
    padding: 25px 30px;
    min-height: auto;
    padding-bottom: 60px;
  }
  
  .navbar {
    flex-direction: column;
    gap: 25px;
    padding-right: 0;
  }
  
  .logo {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .logo span {
    transform: none;
    font-size: 16px;
  }
  
  .nav-menu {
    gap: 30px;
  }
  
  .nav-link {
    padding: 8px 16px;
    font-size: 15px;
  }
  
  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
    margin-top: 40px;
  }
  
  .hero-content {
    margin-top: 0;
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 42px;
    min-height: 100px;
  }
  
  .hero-sub {
    font-size: 18px;
    margin: 20px 0 30px;
  }
  
  .hero-goals {
    justify-content: center;
    gap: 20px;
    font-size: 16px;
    margin: 20px 0 30px;
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  .hero-goals p {
    white-space: nowrap;
  }
  
  .hero-form {
    max-width: 500px;
    margin: 0 auto;
    padding: 30px;
  }
  
  .services {
    padding: 50px 30px;
  }
  
  .services h2 {
    font-size: 36px;
    margin-bottom: 40px;
  }
  
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .service-card {
    padding: 35px 20px;
  }
  
  .icon-wrap {
    width: 70px;
    height: 70px;
  }
  
  .icon-wrap img {
    width: 120px;
  }
  
  .service-header {
    font-size: 16px;
  }
  
  .service-content {
    font-size: 12px;
  }
  
  .value-section {
    padding: 70px 30px;
  }
  
  .value-content h2 {
    font-size: 34px;
  }
  
  .process {
    padding-top: 60px;
  }
  
  .process h2 {
    font-size: 36px;
  }
  
  .process-step {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-inline: 30px;
    padding-block: 30px;
  }
  
  .process-step.reverse {
    direction: ltr;
  }
  
  .image-box {
    height: 220px;
  }
  
  .text h3 {
    font-size: 30px;
    text-align: center;
  }
  
  .text p {
    text-align: center;
  }
  
  .faq-section {
    padding: 70px 30px;
  }
  
  .faq-section h2 {
    font-size: 34px;
    margin-bottom: 40px;
  }
  
  .faq-question {
    font-size: 16px;
    padding: 18px 0;
  }
  
  .faq-question span:first-child {
    padding-right: 15px;
  }
  
  .cta h2 {
    font-size: 36px;
  }
  
  .scaleup {
    font-size: 36px;
  }
  
  .cta p {
    font-size: 16px;
    padding: 0 20px;
  }
  
  .btn {
    padding: 14px 80px;
  }
  
  .footer {
    padding: 40px 30px 20px;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .footer-left,
  .footer-right {
    align-items: center;
  }
  
  .footer-right {
    align-items: center;
    text-align: center;
  }
  
  .contact-info p {
    justify-content: center;
  }
  
  .social-icons {
    justify-content: center;
  }
}

/* ================= SMALL TABLETS (600px and below) ================= */
@media (max-width: 600px) {
  .hero {
    padding: 20px;
    padding-bottom: 50px;
  }
  
  .hero-content h1 {
    font-size: 36px;
    min-height: 80px;
  }
  
  .hero-sub {
    font-size: 16px;
  }
  
  .hero-goals {
    flex-direction: column;
    gap: 15px;
    font-size: 16px;
  }
  
  .hero-form {
    padding: 25px;
  }
  
  .services {
    padding: 40px 20px;
  }
  
  .services h2 {
    font-size: 32px;
  }
  
  .service-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .service-card {
    padding: 30px 20px;
  }
  
  .value-section {
    padding: 50px 20px;
  }
  
  .value-content h2 {
    font-size: 28px;
  }
  
  .process-step {
    padding-inline: 20px;
  }
  
  .text h3 {
    font-size: 26px;
  }
  
  .faq-section {
    padding: 50px 20px;
  }
  
  .faq-section h2 {
    font-size: 28px;
  }
  
  .faq-question {
    font-size: 15px;
  }
  
  .cta h2,
  .scaleup {
    font-size: 28px;
  }
  
  .btn {
    padding: 14px 60px;
    font-size: 14px;
  }
}

/* ================= LANDSCAPE MODE FOR TABLETS ================= */
@media (max-height: 768px) and (orientation: landscape) and (max-width: 1024px) {
  .hero {
    min-height: auto;
    padding: 30px 50px 60px;
  }
  
  .hero-wrapper {
    grid-template-columns: 1.5fr 1fr;
    align-items: center;
  }
  
  .hero-content h1 {
    min-height: auto;
    font-size: 40px;
  }
  
  .hero-sub {
    font-size: 18px;
    margin: 15px 0 25px;
  }
  
  .hero-goals {
    margin: 15px 0 25px;
  }
}

/* ================= SPECIFIC FOR iPAD PRO 12.9" (1024px x 1366px) ================= */
@media (min-width: 1024px) and (max-width: 1366px) and (orientation: portrait) {
  .hero-content h1 {
    font-size: 56px;
  }
  
  .hero-sub {
    font-size: 20px;
  }
  
  .services h2,
  .value-content h2,
  .process h2,
  .faq-section h2 {
    font-size: 44px;
  }
  
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

/* ================= HIGH RESOLUTION TABLETS ================= */
@media (min-width: 768px) and (max-width: 1024px) and (-webkit-min-device-pixel-ratio: 2) {
  .hero-content h1 {
    font-size: 52px;
  }
  
  .btn {
    padding: 14px 100px;
  }
}


/* ================= VIDEO STYLE CUSTOM CURSOR ================= */



/* Inner orange dot */
.cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background: #f5902f;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
}

/* Outer ring */
.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 2px solid rgba(245, 144, 47, 0.6);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition:
    width 0.25s ease,
    height 0.25s ease,
    border 0.25s ease;
}

/* Click ripple */
.cursor-ring.ripple {
  animation: cursorRipple 0.6s ease-out;
}

@keyframes cursorRipple {
  from {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }
  to {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0;
  }
}

/* Disable on mobile */
@media (max-width: 992px) {
  body {
    cursor: auto;
  }

  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}



* {
  scrollbar-width:auto;
  scrollbar-color: #f5902f #0b0b0b;
}

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #0b0b0b;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #f2673a, #fda60e);
  border-radius: 10px;
  border: 3px solid #0b0b0b;
  transition: background 0.3s ease;
}

/* Hover effect */
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #fda60e, #f2673a);
}

/* Active (on click) */
::-webkit-scrollbar-thumb:active {
  background: linear-gradient(135deg, #f5902f, #fda60e);
}