@charset "UTF-8";

:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Quicksand",  sans-serif;
  --nav-font: "Open Sans",  sans-serif;
}

html {
  scroll-behavior: smooth;
}

:root { 
  --white: #FFFFFF;
  --black: #000000;
  --background-color: #181818;       
  --text-color: #FFFFFF;          
  --muted-text-color: #B3B3B3;       
  --accent-color: #ce1a64;       
  --accent2-color: #242C30; 
  --visualizer-bg: #181818; 
  --visualizer-bar: #FFFFFF;
  --nav-background-color: #242C30;   
  --footer-background-color: #242C30;

  color-scheme: light;
}

html[data-theme="dark"] {
  --white: #FFFFFF;
  --black: #000000;
  --background-color: #F5EFE9;     
  --text-color: #1C1C1C;        
  --muted-text-color: #5E5E5E; 
  --accent-color: #C15A5A;
  --accent2-color: #DAD1CA;      
  --visualizer-bg: #F5EFE9;
  --visualizer-bar: #1C1C1C;     
  --nav-background-color: #E7DCD0;
  --footer-background-color: #E7DCD0;

  color-scheme: dark;
}

.light-background {
  --background-color: #f7faff;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #065cc2;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #ce1a64;
  --surface-color: #2973cc;
  --contrast-color: #ffffff;
}

:root {
  scroll-behavior: smooth;
}

body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  opacity: 0;
  transition: opacity 0.25s ease-in-out;
}

body.loaded {
  opacity: 1;
}

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

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

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

html, body {
  margin: 0;
  padding: 0;
}

html, body, main, header, footer, .navmenu, .hero-content, .section {
  transition:
    background-color 0.6s ease,
    color 0.6s ease,
    border-color 0.6s ease,
    box-shadow 0.6s ease;
}

#preloader {
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  background: var(--accent2-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  opacity: 1;
  visibility: visible;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.coin-spinner {
  position: relative;
  width: 350px;
  height: 350px;
  transform-style: preserve-3d;
  animation: spinCoin 1s linear infinite;
  perspective: 1000px;
}

.coin-face {
  position: absolute;
  inset: 0;
  background: url("/assets/img/MISC/PRELOADER.png") center/contain no-repeat;
  backface-visibility: hidden;
}

.coin-face.front {
  transform: translateZ(2px);
}
.coin-face.back {
  transform: rotateY(180deg) translateZ(2px);
}

.coin-edge {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.15);
  transform: translateZ(1px);
  opacity: 0.3;
}

@keyframes spinCoin {
  0%   { transform: rotateY(0deg) rotateX(8deg); }
  100% { transform: rotateY(360deg) rotateX(8deg); }
}

main, header {
  opacity: 0;
  transform: translateY(20px);
}

body.loaded main,
body.loaded header {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1s ease, transform 1s ease;
}

body.no-scroll {
  overflow: hidden;
  height: 100vh;
}

@media (max-width: 768px) {
  #preloader {
    height: 100dvh;
    padding-bottom: env(safe-area-inset-bottom);
    overscroll-behavior: contain;
  }

  .coin-spinner {
    width: 225px;
    height: 225px;
  }
}

.header {
  color: var(--text-color);
  background-color: var(--nav-background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  padding: 8px 26px;
  margin: 0;
  border-radius: 50px;
  transition: 0.3s;
  display: grid;
  place-items: center;
  font-size: 15px;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 8px 20px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.theme-switch {
  position: relative;
  width: 70px;
  height: 25px;
  border: none;
  border-radius: 50px;
  overflow: hidden;
  cursor: pointer;
  outline: none;
  background: color-mix(in srgb, var(--accent2-color), black 40%); 
  transition: background 0.8s ease, box-shadow 0.8s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
  transform: translateX(-12px);
}

.switch-bg {
  position: absolute;
  inset: 0;
  transition: background 0.8s ease;
}

.sun,
.moon {
  position: absolute;
  top: 50%;
  left: 75%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  transition: all 0.8s ease;
}

.sun {
  background: radial-gradient(circle, #ffb347 20%, #ffcc33 90%);
  box-shadow: 0 0 20px #ffb347;
  opacity: 0;
}

.moon {
  background: #dcdcdc;
  box-shadow: inset -6px 0 0 #bbb;
  opacity: 1;
}

.clouds,
.stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  transition: opacity 1s ease;
}

html[data-theme="dark"] .theme-switch {
  background: color-mix(in srgb, var(--accent2-color), black 40%);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

html[data-theme="dark"] .sun {
  left: 25%;
  opacity: 1;
}

html[data-theme="dark"] .moon {
  left: 25%;
  opacity: 0;
}

html[data-theme="dark"] .clouds {
  opacity: 1;
}

html[data-theme="dark"] .stars {
  opacity: 0;
}

#header .logo {
  position: relative;
  display: flex;
  align-items: center;
  height: 0; 
  right: 10px;
  margin-right: -62px;
}

#header .logo img {
  height: 120px;
  width: auto;
  display: block;
  position: relative;
  transition: transform 0.25s ease;
}

#header .logo img:hover {
  transform: scale(1.2);
}

#header .container {
  min-height: auto;
  padding: 2px 0;
}

#header {
  transition: padding 0.25s ease, background-color 0.25s ease;
  padding: 8px 0;
  background-color: var(--nav-background-color);
}

#header.nav-shrink {
  padding: 1px 0;
  background: color-mix(in srgb, var(--nav-background-color));
  backdrop-filter: blur(10px) saturate(160%);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

#header.nav-shrink:hover {
  padding: 8px 0;
  background-color: var(--nav-background-color);
}

#floating-cta {
  position: fixed;
  right: 20px;
  bottom: 25px;
  z-index: 9999;
  background-color: var(--accent-color);
  color: var(--text-color);
  font-weight: 600;
  border: none;
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 70%);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  animation: floatCTA 3s ease-in-out infinite;
  transition: all 0.3s ease;
}

@keyframes floatCTA {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--accent-color);
  }
}

@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--white);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}


@media (min-width: 1200px) {
  .navmenu a {
    position: relative;
  }

.navmenu a::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 50%;
  height: 3px;
  border-radius: 3px;
  width: 0;
  background: linear-gradient(
    90deg,
    #FFFFFF,  
    #ce1a64,  
    #FFFFFF   
  );
  background-size: 250% 100%;
  background-position: 0% 50%;
  transform: translateX(-50%);
  transition:
    width 0.35s ease,
    background-position 0.6s ease;
  opacity: 1;
}
  .navmenu a:hover::after,
  .navmenu .active::after {
    width: calc(100% - 30px);
    max-width: 60px;
    animation: underlineFlow 1.2s linear infinite;
  }

  .navmenu li:last-child a::after {
    left: 58%;
    transform: translateX(-50%);
  }
}

@keyframes underlineFlow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

.navmenu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
  will-change: transform;
}

@media (max-width: 768px) {

  header,
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: var(--nav-background-color);
    transition: background-color 0.3s ease;
  }

  .logo img {
    transition: none !important;
    transform: none !important;
  }
  .logo img:active,
  .logo img:focus {
    transform: none !important;
    scale: 1 !important;
  }

  #floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--button-color), color-mix(in srgb, var(--button-color), #000 15%));
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
    animation: floatCta 3s ease-in-out infinite;
    font-weight: 600;
    font-size: 0.95rem;
    z-index: 9998;
  }

  @keyframes floatCta {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
  }

  .mobile-nav-active #floating-cta {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
  }

  .dark-mode-toggle {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}

[data-scroll-container] {
  overflow: hidden;
}

.scroll-down-indicator {
  position: absolute;
  bottom: 110px;
  left: 50%;
  text-align: center;
  font-size: 15px;
  color: var(--white);
  opacity: 0.8;
  animation: floatText 3s ease-in-out infinite; 
  cursor: default;
  transition: opacity 0.6s ease, transform 0.6s ease;
  z-index: 10;
}

.scroll-down-indicator span {
  display: block;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.scroll-down-indicator .arrow {
  width: 16px;
  height: 16px;
  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(-45deg);
  margin: 0 auto;
  animation: none; 
}

.scroll-hidden {
  opacity: 0;
  transform: translateY(15px);
  pointer-events: none;
}

@keyframes floatText {
  0%, 100% {
    transform: translate(-50%, -50px);
  }
  50% {
    transform: translate(-50%, -10px);
  }
}


@media (max-width: 768px) {
  #header {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px !important;
    background: var(--nav-background-color) !important;
    z-index: 999999 !important; 
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
  }

  body.scrolled #header {
    height: 70px;
  }

  #header .logo img {
    height: 120px;
    width: auto;
    display: block;
    margin-right: -100px;
  }

  #theme-toggle {
    margin-left: 290px;
    transform: translateY(-1px);
  }

  #navmenu ul {
    display: none;
  }

  body.mobile-nav-active #navmenu ul {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 70px; 
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--nav-background-color);
    z-index: 100000; 
    padding: 0;
    margin: 0;
    list-style: none;
    backdrop-filter: blur(8px); 
  }

  #navmenu ul li {
    transform: translateY(-50px);
    margin: 3px 0;
  }

  #navmenu ul li a {
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  #navmenu ul li a:hover {
    color: var(--accent-color);
  }

  body.mobile-nav-active {
    overflow: hidden;
  }
}

section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 40px 0;
  overflow: clip;
}

.section-title {
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 0.5px;
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--text-color);
  margin: 10px 10px;
}

.section-title p {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin: 5px 0 0 0;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--heading-font);
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh; 
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;  
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7); 
  z-index: 2; 
}

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

.hero .content-wrapper {
  max-width: 600px;
}

.hero .hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero .hero-title .typed {
  color: var(--white);
  position: relative;
}

.hero .lead {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--white), transparent 40%);
  margin-bottom: 3rem;
  line-height: 1.6;
}

.hero .hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
}

.hero .hero-stats .stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero .hero-stats .stat-item .purecounter {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
}

.hero .hero-stats .stat-item .stat-label {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-top: 0.25rem;
}

.hero .hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero .hero-actions .btn {
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
}

.hero .hero-actions .btn.btn-primary {
  background-color: var(--accent-color);
  color: var(--white);
  border: 2px solid var(--accent-color);
  transform: translateY(-3px);
  transition: all 0.3s ease;
}

.hero .hero-actions .btn.btn-primary:hover {
  transform: translateY(-12px);
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero .hero-actions .btn.btn-outline {
  background-color: var(--accent-color);
  color: var(--white);
  border: 2px solid var(--accent-color);
  transform: translateY(-3px);
  transition: all 0.3s ease;
}

.hero .hero-actions .btn.btn-outline:hover {
  transform: translateY(-12px);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero .social-links {
  display: flex;
  gap: 1rem;
}

.hero .social-links a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--accent-color);
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.hero .social-links a:hover {
  background-color: var(--heading-color);
  color: var(--accent-color);
  transform: translateY(-3px);
}

.hero .social-links a i {
  font-size: 1.2rem;
}

.hero .hero-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 30px;
}

.hero .image-container {
  position: relative;
  max-width: 500px;
  width: 100%;
  left: 120px;
}

.hero .hero-main-image {
  border-radius: 20px;
  position: relative;
  z-index: 2;
  animation: float 3s ease-in-out infinite;
}

.hero .image-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  background: linear-gradient(45deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 30%));
  border-radius: 20px;
  z-index: 1;
}

.hero .floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
}

.hero .floating-card {
  position: absolute;
  background-color: var(--surface-color);
  padding: 15px 20px;
  border-radius: 15px;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 90%);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  animation: float 6s ease-in-out infinite;
}

.hero .floating-card i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.hero .floating-card span {
  font-weight: 600;
  color: var(--default-color);
}

.hero .floating-card.card-1 {
  top: 10%;
  left: -10%;
  animation-delay: 0s;
}

.hero .floating-card.card-2 {
  top: 60%;
  right: -15%;
  animation-delay: 2s;
}

.hero .floating-card.card-3 {
  bottom: 15%;
  left: -5%;
  animation-delay: 4s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

@media (max-width: 768px) {

  #hero {
    position: relative;
    height: auto;
    padding: 100px 20px 80px;
    text-align: center;
    background: var(--surface-color);
    overflow: hidden;
  }

  #hero .hero-video {
    display: none !important;
  }

  #hero {
    background: url("/assets/img/HERO/BACKGROUND.jpg") center center / cover no-repeat;
  }

  #hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  #hero .hero-content {
    width: 100%;
    order: 1;
  }

  #hero .hero-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
    margin-top: -10px;
    text-align: center;
  }

  #hero .lead {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 25px;
    text-align: center;
  }

  #hero .hero-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 25px;
  }

  #hero .hero-actions .btn {
    font-size: 0.9rem;
    padding: 10px 20px;
    border-radius: 25px;
  }

  #hero .hero-actions .btn.btn-outline {
    transform: translateY(0px);
  }

  #hero .social-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
  }

  #hero .social-links a {
    font-size: 1.1rem;
  }

  #hero .social-links a:hover{
    background-color: var(--accent-color);
    color: var(--text-color);
  }

  #hero .hero-image {
    width: 100%;
    order: 2;
    display: flex;
    justify-content: center;
    position: relative;
  }

  #hero .hero-image .image-container {
    width: 80%;
    max-width: 300px;
    margin: 0 auto;
    position: relative;
    transform: translateX(-125px);
    margin-top: -40px;
  }

  #hero .hero-image img {
    width: 100%;
    border-radius: 15px;
    display: block;
    position: relative;
    z-index: 2;
  }

  #hero .hero-image .image-overlay {
    content: "";
    position: absolute;
    top: 10px;
    right: -10px;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    border-radius: 15px;
    z-index: 1;
  }

  #hero .scroll-down-indicator {
    display: none !important;
  }

  #floating-cta {
    background-color: var(--accent-color);
    color: var(--text-color);
    padding: 10px;
  }
}

#about.section {
  padding-bottom: 4px; 
  margin-bottom: 0;    
}

.about .profile-image-wrapper {
  position: relative;
}

.about .profile-image-wrapper .profile-image {
  position: relative;
  width: 350px;
  height: 350px;
  margin: 0 auto 40px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid var(--text-color);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--text-color), transparent 60%);
}

.about .profile-image-wrapper .profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about .profile-image-wrapper .signature-section {
  text-align: center;
}

.about .profile-image-wrapper .signature-section .signature {
  max-width: 200px;
  height: auto;
  margin-bottom: 15px;
  opacity: 0.8;
}

.about .profile-image-wrapper .signature-section .quote {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin: 0;
  max-width: 250px;
  margin: 0 auto;
}

.about .about-content .intro {
  margin-bottom: 40px;
}

.about .about-content .intro h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.about .about-content .intro p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted-text-color);
}

.about .about-content .skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.about .about-content .skills-grid .skill-item {
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  background-color: var(--accent2-color);
  transition: all 0.3s ease;
}

.about .about-content .skills-grid .skill-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px color-mix(in srgb, var(--white), transparent 80%);
}

.about .about-content .skills-grid .skill-item .skill-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  border-radius: 50%;
  color: var(--text-color);
  font-size: 24px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.about .about-content .skills-grid .skill-item h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--text-color);
}

.about .about-content .skills-grid .skill-item p {
  font-size: 14px;
  color: var(--muted-text-color);
  margin: 0;
}

.about .about-content .journey-timeline {
  margin-bottom: 40px;
}

.about .about-content .journey-timeline .timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding: 15px;
  border-left: 3px solid var(--accent-color);
  background: color-mix(in srgb, var(--surface-color), transparent 30%);
  border-radius: 0 8px 8px 0;
  transition: all 0.3s ease;
}

.about .about-content .journey-timeline .timeline-item:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-left-color: color-mix(in srgb, var(--accent-color), transparent 10%);
}

.about .about-content .journey-timeline .timeline-item:last-child {
  margin-bottom: 0;
}

.about .about-content .journey-timeline .timeline-item .year {
  font-weight: 700;
  color: var(--accent-color);
  font-size: 18px;
  min-width: 80px;
  margin-right: 20px;
}

.about .about-content .journey-timeline .timeline-item .description {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 15px;
  line-height: 1.5;
}

.about .about-content .cta-section .fun-fact {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  padding: 15px 25px;
  background: color-mix(in srgb, var(--accent-color), transparent 94%);
  border-radius: 50px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
}

.about .about-content .cta-section .fun-fact .emoji {
  font-size: 20px;
  margin-right: 10px;
}

.about .about-content .cta-section .fun-fact .text {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 14px;
  font-weight: 500;
}

.about .about-content .cta-section .action-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.about .about-content .cta-section .action-buttons .btn {
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 15px;
}

.about .about-content .cta-section .action-buttons .btn.btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
}

.about .about-content .cta-section .action-buttons .btn.btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  border-color: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
}

.about .about-content .cta-section .action-buttons .btn.btn-outline {
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
}

.about .about-content .cta-section .action-buttons .btn.btn-outline:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

@media (max-width: 768px) {

  #about {
    text-align: center;
    padding: 30px 10px 50px;
  }

  #about .section-title h2 {
    font-size: 1.8rem;
  }

  #about h2.section-title {
    margin-bottom: 8px;
  }

  #about .profile-image-wrapper .profile-image {
    height: 250px;
    width: 250px;
    margin-top: -30px;
  }

  #about .content {
    text-align: center;
    margin: 0 auto 20px;
    max-width: 90%;
  }

  #about .about-content h2 {
    font-size: 1.7rem;
    margin-bottom: 12px;
  }

  #about .content p {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 25px;
  }

  #about .skills-grid {
    display: flex;
    flex-direction: row !important;
    justify-content: space-between;
    align-items: stretch;
    gap: 10px;
    flex-wrap: nowrap;
  }

  #about .skills-grid .skill-item {
    flex: 0 0 32%; 
    background: var(--accent2-color);
    border-radius: 10px;
    padding: 10px 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    text-align: center;
  }

  #about .skills-grid .skill-item .skill-icon {
    margin-top: 8px;
  }

  #about .skills-grid .skill-item h4 {
    font-size: 0.8rem;
    margin-bottom: 5px;
  }

  #about .skills-grid .skill-item p {
    font-size: 0.7rem;
    line-height: 1.3;
  }
}

.skills .skills-grid .skill-card {
  background-color: var(--accent2-color);
  border-radius: 15px;
  padding: 30px;
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--accent2-color), transparent 85%);
  transition: all 0.3s ease;
}

.skills .skills-grid .skill-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
}

.skills .skills-grid .skill-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px color-mix(in srgb, var(--white), transparent 80%);
  border-color: color-mix(in srgb, var(--accent2-color), transparent 60%);
}

.skills .skills-grid .skill-card .skill-header {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  gap: 15px;
}

.skills .skills-grid .skill-card .skill-header i {
  font-size: 28px;
  color: var(--text-color);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-color);
  border-radius: 12px;
  animation: float 3s ease-in-out infinite;
}

.skills .skills-grid .skill-card .skill-header h3 {
  font-size: 20px;
  margin: 0;
  color: var(--text-color);
}

.skills .skills-grid .skill-card .skill-item {
  margin-bottom: 20px;
}

.skills .skills-grid .skill-card .skill-item:last-child {
  margin-bottom: 0;
}

.skills .skills-grid .skill-card .skill-item .skill-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.skills .skills-grid .skill-card .skill-item .skill-info .skill-name {
  font-weight: 600;
  color: var(--muted-text-color);
  font-size: 15px;
}

.skills .skills-grid .skill-card .skill-item .skill-bar {
  height: 6px;
  background: color-mix(in srgb, var(--text-color), transparent 92%);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.skills .skills-grid .skill-card .skill-item .skill-bar .progress-bar {
  height: 100%;
  background: linear-gradient(45deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--text-color) 20%));
  border-radius: 10px;
  width: 0;
  transition: width 1.8s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.skills .skills-grid .skill-card .skill-item .skill-bar .progress-bar:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 2s infinite;
}

.skills .skills-summary {
  background: var(--surface-color);
  padding: 40px 30px;
  border-radius: 15px;
  height: fit-content;
  position: sticky;
  top: 20px;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 90%);
}

.skills .skills-summary h3 {
  color: var(--heading-color);
  margin-bottom: 20px;
  font-size: 24px;
}

.skills .skills-summary p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 30px;
  line-height: 1.6;
}

.skills .skills-summary .summary-stats {
  margin-bottom: 30px;
}

.skills .skills-summary .summary-stats .stat-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 15px;
}

.skills .skills-summary .summary-stats .stat-item:last-child {
  margin-bottom: 0;
}

.skills .skills-summary .summary-stats .stat-item .stat-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 30%));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.skills .skills-summary .summary-stats .stat-item .stat-circle i {
  color: var(--contrast-color);
  font-size: 20px;
}

.skills .skills-summary .summary-stats .stat-item .stat-info .stat-number {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
}

.skills .skills-summary .summary-stats .stat-item .stat-info .stat-label {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.skills .skills-summary .skills-badges h4 {
  color: var(--heading-color);
  margin-bottom: 15px;
  font-size: 18px;
}

.skills .skills-summary .skills-badges .badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.skills .skills-summary .skills-badges .badge-list .skill-badge {
  background: linear-gradient(45deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 20%));
  color: var(--contrast-color);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

@media (max-width: 768px) {
  
  #skills {
    text-align: center;
    padding: 30px 10px 50px;
  }

  #skills .section-title h2 {
    font-size: 1.8rem;
  }

  #skills .row .skills-grid .skill-card ,.skill-header i {
    margin-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
  }

  #skills .row,
  #skills .skills-content {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    justify-items: center;
    align-items: start;
    margin-top: -20px;
  }

  #skills .skill-card,
  #skills .skills-item {
    width: 100% !important;
    max-width: 170px !important;
    min-height: 160px !important;
    padding: 12px 10px !important;
    border-radius: 10px;
  }

  #skills .skill-card i,
  #skills .skills-item i {
    font-size: 1.2rem !important;
    margin-bottom: 5px;
  }

  #skills .skill-card h3,
  #skills .skills-item h3 {
    font-size: 0.85rem !important;
    margin-bottom: 5px;
  }

  #skills .skill-card p,
  #skills .skills-item p,
  #skills .skill-card span,
  #skills .skills-item span {
    font-size: 0.7rem !important;
    margin-top: -5px;
  }

  #skills .row .skills-grid .skill-card .skills-animation
  .skill-item .skill-bar .progress-bar {
    height: 4px !important;
  }
}

.beats-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1px;
  width: 100%;
}

.beat {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.beat-info {
  display: flex;
  align-items: center;
  gap: 60px;            
  max-width: 800px;     
  margin: 0 auto;       
  padding: 0 20px;     
  box-sizing: border-box; 
}

.beat-cover {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 15px;
}

.beat-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

.visualizer {
  display: block;
  width: 100%;
  height: 100px;
  background-color: var(--background-color);
}

.visualizer-container {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  background: white;
  border-radius: 8px;
}

.player-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
  width: 100%;
}

.album-art {
  position: relative;
  width: 130px;
  height: 130px;
}

.album-art img {
  width: 130%;
  height: 130%;
  object-fit: cover;
  border-radius: 8px;
}

.album-art .play-btn {
  background-color: var(--white);
  border: 2px solid;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  border-color: var(--white);
}

.album-art .play-btn:hover {
  transform: translate(-50%, -50%) scale(1.15);
  box-shadow: 0 0 15px rgb(255, 255, 255);
  border-color: var(--white);
}

.album-art .play-btn .icon {
  fill: var(--black);
  pointer-events: none;
}

.play-btn {
  position: absolute;
  top: 65%;
  left: 66%;
  transform: translate(-50%, -50%);
  background-color: var(--white);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.3s;
}

.track-info {
  display: flex;
  flex-direction: column;  
  align-items: flex-start; 
  flex: 1 1 auto;         
  min-width: 0;         
}

.track-info h3 {
  white-space: nowrap;     
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 1.2rem;
  margin: 0 0 8px 0;
  max-width: 100%;
  color: var(--text-color);
}

.progress-container {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  width: 100%;
}

#main-progress {
  flex-grow: 1;
  appearance: none;
  height: 5px;
  background-color: var(--accent2-color);
  border-radius: 5px;
  outline: none;
  cursor: pointer;
}

#main-progress::-webkit-slider-thumb {
  appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--accent2-color);
  cursor: pointer;
  transition: transform 0.2s ease;
}

#main-progress::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

#time-display {
  font-size: 0.85rem;
  color: var(--text-color);
  white-space: nowrap;
}

canvas {
  display: block;
  width: 100%;     
  height: 180px;   
  border-radius: 10px;
}

.beat-list {
  width: 100%;
  max-width: 1300px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-sizing: border-box;
}

.beat-list-header,
.beat-item {
  display: grid;
  grid-template-columns: 80px 2fr 0.8fr 0.8fr 1.8fr 60px; 
  align-items: center;
  gap: 12px;
  padding: 6px 20px;
  border-radius: 8px;
  color: var(--text-color);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--text-color), transparent 90%);
}

.beat-list-header {
  font-weight: bold;
  background-color: var(--accent2-color);
}

.beat-item {
  background-color: var(--accent2-color);
  transition: transform 0.2s, box-shadow 0.2s;
}

#beats .beat-list .beat-list-header {
  transition: transform 0.5s ease;
}

#beats .beat-list .beat-list-header:hover {
  transform: translateY(-10px);
}

#beats .beat-list .beat-item {
  transition: transform 0.5s ease;
}

#beats .beat-list .beat-item:hover {
  transform: translateY(-10px);
}

.beat-cover-small {
  margin-left: -20px; 
}

.beat-cover-small img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
}

.beat-name {
  font-size: 1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.beat-time,
.beat-bpm,
.beat-tags {
  font-size: 0.9rem;
}

.beat-play {
  display: flex;
  justify-content: center;   
  align-items: flex-start;   
  padding-top: 5px;        
}

.list-play-btn {
  display: flex !important;
  position: relative;      
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  top: 11px;    
  left: 28px;  
}

.list-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.05);
  box-shadow: 0 0 15px rgba(255,255,255,0.7);
}

.list-play-btn .icon {
  fill: black;
  pointer-events: none;
}

.beat-list-header span:first-child {
  margin-left: -20px;
  display: flex;
  align-items: center;
}

.beat-list-header span:nth-child(3), 
.beat-list-header span:nth-child(4),
.beat-list-header span:nth-child(5) 
{
  margin-left: -2px; 
}

.beat-list-header span:nth-child(6) {
  justify-content: flex-end;
  display: flex;
  align-items: center;
}

.beat-list-header span:nth-child(2) {
  margin-left: -2px; 
}

.beat-list-header span:nth-child(3),
.beat-list-header span:nth-child(4),
.beat-list-header span:nth-child(5) {
  position: relative;
  left: 60px;
}

.beat-item .beat-time,
.beat-item .beat-bpm,
.beat-item .beat-tags {
  position: relative;
  left: 60px; 
}

@media (max-width: 768px) {
  #beats {
    text-align: center;
    padding: 40px 4vw;
  }

  #beats .section-title h2 {
    font-size: 1.8rem;
    margin-bottom: -10px;
  }

  #beats .beat-info {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  #beats .track-info {
    order: -1;
    margin-bottom: 10px;
  }

  #beats .track-info h3 {
    font-size: clamp(0.75rem, 2vw, 0.9rem);
    font-weight: 500;
    line-height: 1.4;
    max-width: 85%;
    margin-inline: auto;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  #beats .album-art {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }

  #beats .album-art img {
    width: clamp(150px, 50vw, 200px);
    border-radius: 10px;
    display: block;
    margin-inline: auto;
  }

  #beats .album-art .play-btn {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 35px;
    height: 35px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
    transform: none;
  }

  #beats .album-art .play-icon {
    width: 18px;
    height: 18px;
    fill: var(--black);
  }

  #beats .visualizer {
    width: 90%;
    height: 40px;
    opacity: 0.7;
    margin: 20px auto;
    margin-top: -10px;
  }

  #beats .beat-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    justify-items: center;
    margin-top: 25px;
  }

  #beats .beat-list-header {
    display: none;
  }

  #beats .beat-item {
    width: 100%;
    max-width: 170px;
    border-radius: 14px;
    padding: 12px 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
  }

  #beats .beat-cover-small img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 8px;
    margin-left: 20px;
  }

  #beats .beat-name {
    font-size: clamp(0.7rem, 2vw, 0.85rem);
    font-weight: 600;
    line-height: 1.3;
    height: auto;
    margin-bottom: 6px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: normal;
    max-width: 90%;
  }

  #beats .beat-time::before {
    content: "Time: ";
    font-weight: 600;
    color: var(--text-color);
    opacity: 0.9;
  }

  #beats .beat-bpm::before {
    content: "BPM: ";
    font-weight: 600;
    color: var(--text-color);
    opacity: 0.9;
  }

  #beats .beat-tags::before {
    content: "Genre: ";
    font-weight: 600;
    color: var(--text-color);
    opacity: 0.9;
  }

  #beats .beat-time,
  #beats .beat-bpm,
  #beats .beat-tags {
    font-size: clamp(0.7rem, 2vw, 0.85rem);
    opacity: 0.9;
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-right: 115px;
  }

  #beats .beat-play {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 8px;
  }

  #beats .beat-play .play-btn {
    background-color: var(--white);
    border-radius: 50%;
    padding: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.2s ease;
    margin-left: -25px;
  }

  #beats .beat-play .play-icon {
    fill: var(--black);
    width: 16px;
    height: 16px;
  }
}

section.career {
  padding-bottom: 20px; 
}

.career .section-header {
  margin-bottom: 2.5rem;
}

.career .section-header h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.career .section-header h2 i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.career .section-header .section-subtitle {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1rem;
  line-height: 1.6;
}

.career .education-section {
  padding-left: 1.5rem;
}

.career .education-section .education-timeline {
  position: relative;
}

.career .education-section .education-timeline .timeline-track {
  position: absolute;
  left: 1rem;
  top: 2rem;
  bottom: 2rem;
  width: 2px;
  background: linear-gradient(45deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--text-color) 40%));
}

.career .education-section .education-timeline .education-item {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 2.5rem;
}

.career .education-section .education-timeline .education-item:last-child {
  margin-bottom: 0;
}

.career .education-section .education-timeline .education-item .timeline-marker {
  position: absolute;
  left: 0.5rem;
  top: 1.5rem;
  width: 1rem;
  height: 1rem;
  background: var(--accent-color);
  border: 3px solid var(--surface-color);
  border-radius: 50%;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.career .education-section .education-timeline .education-item .education-content {
  background-color: var(--accent2-color);
  border: 1px solid color-mix(in srgb, var(--accent2-color), transparent 85%);
  border-radius: 8px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.career .education-section .education-timeline .education-item .education-content:hover {
  box-shadow: 0 10px 25px color-mix(in srgb, var(--accent2-color), transparent 85%);
}

.career .education-section .education-timeline .education-item .education-content .degree-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

.career .education-section .education-timeline .education-item .education-content .degree-header h3 {
  color: var(--text-color);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}

.career .education-section .education-timeline .education-item .education-content .degree-header .year {
  background: var(--accent-color);
  color: var(--text-color);
  padding: 0.3rem 0.7rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
  animation: float 2.5s ease-in-out infinite;
}

.career .education-section .education-timeline .education-item .education-content .institution {
  color: var(--muted-text-color);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
}

.career .education-section .education-timeline .education-item .education-content p {
  color: var(--muted-text-color);
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

@media (max-width: 768px) {

  #career {
    text-align: center;
    padding: 30px 10px 5px;
  }

  #career .section-title h2 {
    font-size: 1.8rem;
    margin-bottom: -10px;
  }

  #career .education-section #first-education h2 {
    margin-left: 62px;
    font-size: 1.2rem;
  }

  #career .row .education-section #second-education h2 {
    margin-left: 50px;
    font-size: 1.2rem;
  }

  #career .row .experience-section,
  .career .education-section {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 3rem;
  }

  .career .education-item .education-content {
    background: var(--surface-color);
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 1.2rem;
    text-align: left;
    position: relative;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  }

  .career .education-item .education-content .degree-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 6px;
  }

  .career .education-item .education-content .degree-header h3 {
    font-size: 0.1rem;
    font-weight: 600;
    margin: 0;
  }

  .career .education-item .education-content .degree-header .year {
    background: var(--accent-color);
    color: #fff;
    font-size: 0.7rem;
    border-radius: 999px;
    white-space: nowrap;
    position: absolute;
    top: 20px;
    right: 5px;
  }

  .career .education-item .education-content .degree-header #kfc {
    background: var(--accent-color);
    color: #fff;
    font-size: 0.7rem;
    border-radius: 999px;
    white-space: nowrap;
    position: absolute;
    top: 60px;
    right: 5px;
  }

  .career .education-item .education-content .institution {
    font-size: 0.85rem;
    font-weight: 500;
    margin: 6px 0;
  }

  .career .education-item .education-content p {
    font-size: 0.78rem;
    line-height: 1.4;
    margin: 0;
  }
}

.services .service-item {
  height: 100%;
  padding: 2rem;
  background-color: var(--accent2-color);
  border-radius: 15px;
  box-shadow: 0 15px 25px -5px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}

.services .service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background-color: var(--accent-color);
  transition: height 0.3s ease-in-out;
}

.services .service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px -5px rgba(0, 0, 0, 0.08);
}

.services .service-item:hover::before {
  height: 100%;
}

.services .service-item:hover .icon i {
  transform: scale(1.1) rotate(10deg);
  color: var(--accent-color);
}

.services .service-item:hover .link-item i {
  transform: translateX(5px);
}

.services .service-item .icon {
  margin-bottom: 1.5rem;
  animation: float 2.5s ease-in-out infinite;
}

.services .service-item .icon i {
  font-size: 2.5rem;
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transition: all 0.3s ease-in-out;
}

.services .service-item h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: var(--text-color);
  font-family: var(--heading-font);
}

.services .service-item p {
  color: var(--muted-text-color);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.services .service-item .card-links {
  margin-top: auto;
}

.services .service-item .card-links .link-item {
  display: inline-flex;
  align-items: center;
  color: var(--accent-color);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.services .service-item .card-links .link-item i {
  margin-left: 0.5rem;
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.services .service-item .card-links .link-item:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.service-item .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px; 
}

@media (max-width: 768px) {
  
  #services {
    text-align: center;
    padding: 30px 10px 50px;
  }

  #services .section-title h2 {
    margin-top: -10px;
    font-size: 1.8rem;
  }

  #services {
    padding: 40px 0;
    text-align: center;
  }

  #services .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  #services .col-lg-4 {
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
  }

  #services .service-item {
    background: var(--accent2-color);
    border-radius: 10px;
    padding: 15px 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  #services .service-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
  }

  #services .service-item .icon {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 10px;
  }

  #services .service-item h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
  }

  #services .service-item p {
    font-size: 0.82rem;
    line-height: 1.4;
    color: var(--muted-text-color);
    margin: 0;
  }
}

@media (max-width: 500px) {
  #services .col-lg-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.contact .info-box {
  background-color: var(--accent2-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
}

.contact .info-box .info-item .icon-box {
  background-color: var(--accent-color);
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.3s;
  animation: float 3s ease-in-out infinite;
}

.contact .info-item .icon-box i {
  font-size: 1.5rem;
  color: var(--text-color);
}

.contact .info-item .content h4 {
  color: var(--text-color);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.contact .info-item .content p {
  color: var(--muted-text-color);
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

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

.contact .info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact .contact-form {
  background-color: var(--accent2-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
  color: var(--text-color);
}

.contact .contact-form h3 {
  color: var(--text-color);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact .contact-form .form-control,
.contact .contact-form .form-select {
  padding: 0.875rem 1.25rem;
  border: 1.5px solid color-mix(in srgb, var(--accent2-color), transparent 85%);
  background: color-mix(in srgb, var(--accent2-color), black 15%);
  border-radius: 0.6rem;
  color: var(--text-color);
  transition: all 0.25s ease;
  font-size: 0.95rem;
}

.contact .contact-form .form-control:focus,
.contact .contact-form .form-select:focus,
.contact .contact-form .form-control:hover,
.contact .contact-form .form-select:hover {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(60, 43, 40, 0.15); 
  outline: none;
}

.contact .contact-form .form-control::placeholder,
.contact .contact-form .form-select::placeholder {
  color: var(--form-text-color);
  transition: color 0.25s ease;
}

.contact .contact-form .btn {
  background-color: var(--accent-color);
  color: var(--text-color);
  padding: 1rem 2rem;
  border-radius: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: 0.3s;
}

.contact .contact-form .btn i {
  font-size: 1.25rem;
}

.contact .contact-form .btn:hover {
  transform: translateY(-10px);
  background-color: color-mix(in srgb, var(--accent-color), transparent 10%);
}

@media (max-width: 768px) {

#contact {
  padding: 30px 10px 50px;
  text-align: center;
}

#contact .section-title h2 {
  font-size: 1.8rem;
  display: inline-block;
  position: relative;
}

#contact .section-title h2::after {
  content: "";
  display: inline-block;
  width: 50px;
  height: 2px;
  background: var(--text-color);
  margin-left: 10px;
  vertical-align: middle;
}

#contact .info-box {
  background: var(--accent2-color);
  border-radius: 12px;
  padding: 18px 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  margin-bottom: 25px;
}

#contact .info-box h3 {
  font-size: 1.4rem;
  margin-bottom: -10px;
}

#contact .info-item {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 0px;
}

#contact .info-item #content2{
  margin-left: 18px;
}

#contact .info-item .icon-box {
  width: 40px;
  height: 40px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-left: 40px;
}

#contact .info-item .content h4 {
  font-size: 0.95rem;
  margin-bottom: 3px;
}

#contact .info-item .content p {
  font-size: 0.8rem;
  color: var(--muted-text-color);
  margin: 0;
}

#contact .contact-form {
  background: var(--accent2-color);
  border-radius: 12px;
  padding: 18px 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

#contact .contact-form h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

#contact .contact-form input,
#contact .contact-form textarea {
  text-align: center;
  font-size: 0.85rem;
  padding: 10px;
}

#contact .contact-form button.btn {
  background: var(--accent-color);
  color: var(--text-color);
  border: none;
  padding: 10px 25px;
  border-radius: 30px;
  margin-top: -35px;
  transition: all 0.3s ease;
}

#contact .contact-form button.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
}

}

#custom-footer {
  color: var(--text-color);
  background: var(--footer-background-color);
  font-size: 14px;
  padding: 15px 0 10px 0; 
  text-align: center;
  font-family: var(--heading-font);
}

#custom-footer .footer-title {
  margin-bottom: 20px; 
  color: var(--text-color); 
}

#custom-footer .social-links {
  margin-top: 20px;
}

#custom-footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--text-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--text-color), transparent 50%);
  margin: 0 5px;
  transition: 0.3s;
  margin-bottom: 10px;
}

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

#custom-footer .footer-copy-bottom {
  font-size: 12px;
  color: var(--muted-text-color);
  margin-top: 15px;
}

#custom-footer .footer-title .subtitle2 {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--accent-color);
  letter-spacing: 2px;
  position: relative;
}