
html,
body {
    height: 100%;
    font-family: "Josefin Sans", sans-serif;
    background-color: #0a1118;
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
   }

   @media (hover: hover) and (pointer: fine) {
    html,
    body {
      cursor: none;
    }
    
    a, button, .primary-btn, .reference-card, .skill-card, .nav-item {
      cursor: none;
    }
    
    input, textarea, select {
      cursor: text;
    }
   }

::-webkit-scrollbar {
  width: 0;  
  height: 0; 
}

::-webkit-scrollbar-thumb {
  background: transparent; 
}


::-webkit-scrollbar-thumb:hover {
  background: transparent;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: #ffffff;
  font-weight: 600;
  font-family: "Play", sans-serif;
}

h1 {
  font-size: 70px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  font-size: 16px;
  font-family: "Josefin Sans", sans-serif;
  color: #adadad;
  font-weight: 400;
  line-height: 1.8;
  margin: 0 0 15px 0;
}

img {
  max-width: 100%;
}

input:focus,
select:focus,
button:focus,
textarea:focus {
  outline: none;
}

a {
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: none;
  outline: none;
  color: #00bfe7;
  transition: all 0.3s ease;
}

ul,
ol {
  padding: 0;
  margin: 0;
}

.section-title {
  margin-bottom: 50px;
  position: relative;
}
.section-title.center-title {
  text-align: center;
}
.section-title.center-title h2:after {
  right: 0;
  margin: 0 auto;
}
.section-title span {
  color: #00bfe7;
  display: block;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
  opacity: 0.8;
}
.section-title h2 {
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 25px;
}
.section-title h2:after {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 5px;
  width: 70px;
  background: linear-gradient(90deg, #00bfe7, #007bff);
  content: "";
  border-radius: 10px;
}

.set-bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  height: 100%;
}

.spad {
  padding-top: 100px;
  padding-bottom: 100px;
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p,
.text-white span,
.text-white li,
.text-white a {
  color: #fff;
}

.primary-btn {
  display: inline-block;
  font-size: 15px;
  font-family: "Play", sans-serif;
  font-weight: 700;
  padding: 14px 32px 12px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: all 0.4s ease;
  text-decoration: none;
}
.primary-btn:hover:before {
  height: 100%;
  width: 100%;
}
.primary-btn:hover:after {
  height: 100%;
  width: 100%;
}
.primary-btn:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 30px;
  width: 30px;
  border-left: 2px solid #00bfe7;
  border-top: 2px solid #00bfe7;
  content: "";
  z-index: -1;
  transition: all 0.5s ease;
}
.primary-btn:after {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 30px;
  width: 30px;
  border-right: 2px solid #00bfe7;
  border-bottom: 2px solid #00bfe7;
  content: "";
  z-index: -1;
  transition: all 0.5s ease;
}
.primary-btn:hover {
  color: #ffffff;
  box-shadow: 0 5px 25px rgba(0, 191, 231, 0.3);
  transform: translateY(-3px);
}
.primary-btn:hover:before,
.primary-btn:hover:after {
  height: 100%;
  width: 100%;
  opacity: 0.2;
}

.site-btn {
  font-size: 15px;
  color: #ffffff;
  background: linear-gradient(to right, #00bfe7, #007bff);
  font-family: "Play", sans-serif;
  font-weight: 700;
  border: none;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 14px 34px 12px;
  width: 100%;
  border-radius: 4px;
  transition: all 0.4s ease;
  text-decoration: none;
}
.site-btn:hover {
  box-shadow: 0 5px 15px rgba(0, 191, 231, 0.4);
  background: linear-gradient(to right, #007bff, #00bfe7);
  transform: translateY(-2px);
}

#preloder {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 999999;
  background: #000;
}

.loader {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -20px;
  margin-left: -20px;
  border-radius: 60px;
  animation: loader 1.2s linear infinite;
  -webkit-animation: loader 1.2s linear infinite;
}

@keyframes loader {
  0% {
    transform: rotate(0deg);
    border: 4px solid #00bfe7;
    border-left-color: transparent;
  }
  50% {
    transform: rotate(180deg);
    border: 4px solid #007bff;
    border-left-color: transparent;
  }
  100% {
    transform: rotate(360deg);
    border: 4px solid #00bfe7;
    border-left-color: transparent;
  }
}
@-webkit-keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    border: 4px solid #f44336;
    border-left-color: transparent;
  }
  50% {
    -webkit-transform: rotate(180deg);
    border: 4px solid #673ab7;
    border-left-color: transparent;
  }
  100% {
    -webkit-transform: rotate(360deg);
    border: 4px solid #f44336;
    border-left-color: transparent;
  }
}
.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background: rgba(10, 17, 24, 0.85);
  border-bottom: 1px solid rgba(108, 99, 255, 0.2);
  z-index: 1030;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.header.sticky {
  background: rgba(10, 17, 24, 0.95);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(108, 99, 255, 0.1);
  border-bottom-color: rgba(108, 99, 255, 0.4);
}

.header__logo {
  padding: 25px 0;
  position: relative;
  margin-bottom: 0;
}

.header__logo a {
  display: inline-block;
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
  font-family: "Play", sans-serif;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #6C63FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header__logo a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #6C63FF, #FF6384);
  transition: width 0.4s ease;
}

@media only screen and (max-width: 767px) {
  .header__logo a::after {
    bottom: -2px !important;
    height: 1px !important;
  }
}

@media (max-width: 575px) {
  .header__logo a::after {
    display: none !important;
  }
}

.header__logo a:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #6C63FF 0%, #FF6384 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header__logo a:hover::after {
  width: 100%;
}

.header__nav__option {
  text-align: right;
  padding: 28px 0px;
}

.header__nav__menu {
  display: inline-block;
}

.header__nav__menu ul {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.header__nav__menu ul li {
  list-style: none;
  display: inline-block;
  margin-right: 45px;
  position: relative;
}

.header__nav__menu ul li:last-child {
  margin-right: 0;
}

.header__nav__menu ul li.active a:after {
  transform: scale(1);
}

.header__nav__menu ul li:hover a:after {
  transform: scale(1);
}

.header__nav__menu ul li a {
  font-size: 15px;
  font-family: "Play", sans-serif;
  color: #ffffff;
  display: block;
  text-transform: uppercase;
  position: relative;
  padding: 8px 12px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.header__nav__menu ul li a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.1), rgba(255, 99, 132, 0.1));
  border-radius: 8px;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s ease;
  z-index: -1;
}

.header__nav__menu ul li a::after {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(to right, #6C63FF, #FF6384, #00bfe7);
  content: "";
  transform: translateX(-50%);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-radius: 2px;
}

.header__nav__menu ul li a:hover {
  color: #6C63FF;
  transform: translateY(-2px);
}

.header__nav__menu ul li a:hover::before {
  opacity: 1;
  transform: scale(1);
}

.header__nav__menu ul li a:hover::after,
.header__nav__menu ul li.active a::after {
  width: 80%;
}

.header__nav__menu ul li.active a {
  color: #6C63FF;
}

.header__nav__menu ul li.active a::before {
  opacity: 1;
  transform: scale(1);
}

.slicknav_menu {
  display: none;
  background: transparent !important;
  padding: 0 !important;
}

.slicknav_btn {
  background-color: rgba(0, 191, 231, 0.2) !important;
  margin: 0 !important;
  padding: 10px !important;
}

.slicknav_icon-bar {
  background-color: #00bfe7 !important;
  display: block !important;
  width: 22px !important;
  height: 2px !important;
  margin: 4px 0 !important;
  border-radius: 1px !important;
}

@media only screen and (max-width: 991px) {
  .header {
    padding-bottom: 0 !important;
  }
  
  .header__nav__menu {
    display: none;
  }
  
  .slicknav_menu {
    display: block;
    position: absolute;
    right: 15px;
    top: 20px;
    z-index: 1000;
  }
  
  .slicknav_nav {
    background-color: rgba(10, 17, 24, 0.95);
    border-radius: 6px;
    width: 150px;
    padding: 8px;
    margin-top: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }
  
  .slicknav_nav a {
    font-size: 12px !important;
    padding: 6px 8px !important;
    line-height: 1.4 !important;
  }
}

@media only screen and (max-width: 767px) {
  .header {
    padding-bottom: 0 !important;
  }
  
  .header .container {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  
  .header .row {
    margin-bottom: 0 !important;
  }
  
  .header__logo {
    padding: 10px 0 3px 0 !important;
    margin-bottom: 0 !important;
  }
  
  .header__logo a {
    font-size: 18px !important;
    line-height: 1.1 !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }
  
  .header__nav__option {
    padding: 10px 0 !important;
    margin-bottom: 0 !important;
  }
  
  .slicknav_menu {
    top: 15px;
    right: 8px;
  }
  
  .slicknav_btn {
    padding: 6px !important;
    width: 32px !important;
    height: 32px !important;
  }
  
  .slicknav_icon-bar {
    width: 18px !important;
    height: 2px !important;
    margin: 3px 0 !important;
  }
  
  .slicknav_nav {
    width: 140px;
    padding: 6px;
  }
  
  .slicknav_nav a {
    font-size: 11px !important;
    padding: 5px 6px !important;
    line-height: 1.3 !important;
  }
  
  .hero__item {
    padding-top: 120px;
  }
}

.header__nav__menu ul li .dropdown {
  position: absolute;
  left: 0;
  top: 60px;
  width: 140px;
  background: #ffffff;
  text-align: left;
  padding: 2px 0;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all, 0.3s;
  -o-transition: all, 0.3s;
  transition: all, 0.3s;
}
.header__nav__menu ul li .dropdown li {
  display: block;
  margin-right: 0;
}
.header__nav__menu ul li .dropdown li a {
  font-size: 14px;
  color: #111111;
  padding: 8px 20px;
  text-transform: capitalize;
}
.header__nav__menu ul li .dropdown li a:after {
  display: none;
}
.header__nav__menu ul li a {
  font-size: 15px;
  font-family: "Play", sans-serif;
  color: #ffffff;
  display: block;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
  transition: all 0.3s ease;
  text-decoration: none;
}
.header__nav__menu ul li a:after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #00bfe7, #007bff);
  content: "";
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all, 0.3s;
  -o-transition: all, 0.3s;
  transition: all, 0.3s;
  transform-origin: center;
}
.header__nav__menu ul li a:hover {
  color: #00bfe7;
}
.header__nav__menu ul li a:hover:after,
.header__nav__menu ul li.active a:after {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.header__nav__social {
  display: inline-block;
  position: relative;
  padding-left: 50px;
}
.header__nav__social:before {
  position: absolute;
  left: 0;
  top: 4px;
  height: 13px;
  width: 1px;
  background: rgba(225, 225, 225, 0.2);
  content: "";
}
.header__nav__social a {
  color: #ffffff;
  font-size: 15px;
  margin-right: 18px;
  text-decoration: none;
}
.header__nav__social a:last-child {
  margin-right: 0;
}

.slicknav_menu {
  display: none;
}

.navbar {
  padding: 15px 0;
}

.navbar-brand {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff !important;
  font-family: "Play", sans-serif;
  transition: all 0.3s;
  padding: 0;
  text-decoration: none;
}

.navbar-brand:hover {
  color: #00bfe7 !important;
}

.navbar-dark .navbar-toggler {
  border-color: rgba(0, 191, 231, 0.5);
  padding: 6px 10px;
}

.navbar-dark .navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(0, 191, 231, 0.25);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 191, 231, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-nav {
  margin-left: auto;
}

.navbar-dark .navbar-nav .nav-link {
  font-size: 15px;
  font-family: "Play", sans-serif;
  color: #ffffff;
  text-transform: uppercase;
  position: relative;
  padding: 8px 15px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.navbar-dark .navbar-nav .nav-link:after {
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 4px;
  height: 2px;
  background: linear-gradient(to right, #00bfe7, #007bff);
  content: "";
  transform: scale(0);
  transition: all 0.3s;
  transform-origin: center;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link.active {
  color: #00bfe7;
}

.navbar-dark .navbar-nav .nav-link:hover:after,
.navbar-dark .navbar-nav .nav-link.active:after {
  transform: scale(1);
}

.hero__slider.owl-carousel .owl-item.active .hero__text span {
  top: 0;
  opacity: 1;
}
.hero__slider.owl-carousel .owl-item.active .hero__text h2 {
  top: 0;
  opacity: 1;
}
.hero__slider.owl-carousel .owl-item.active .hero__text .primary-btn {
  top: 0;
  opacity: 1;
}
.hero__slider.owl-carousel .owl-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 45px;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
}
.hero__slider.owl-carousel .owl-dots button {
  color: #adadad;
  font-size: 18px;
  font-family: "Play", sans-serif;
  margin-right: 16px;
  position: relative;
  display: inline-block;
  transition: all 0.3s;
}
.hero__slider.owl-carousel .owl-dots button.active {
  color: #ffffff;
}
.hero__slider.owl-carousel .owl-dots button.active:after {
  background: linear-gradient(to right, #00bfe7, #007bff);
  height: 2px;
  width: 100%;
}
.hero__slider.owl-carousel .owl-dots button:after {
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  content: "";
  transition: all 0.3s;
}
.hero__slider.owl-carousel .owl-dots button:last-child {
  margin-right: 0;
}

.hero__item {
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 100px;
  background-position: center !important;
  background-size: cover !important;
}

.hero__item:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.hero__text {
  position: relative;
  z-index: 1;
}

.hero__text span {
  color: #00bfe7;
  font-weight: 500;
  display: block;
  font-size: 16px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
  top: 100px;
  opacity: 0;
  transition: all 0.5s ease 0.3s;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.hero__text h2 {
  color: #ffffff;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 38px;
  position: relative;
  top: 100px;
  opacity: 0;
  transition: all 0.6s ease 0.5s;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.hero__text .primary-btn {
  position: relative;
  top: 100px;
  opacity: 0;
  transition: all 0.7s ease 0.7s;
}

.hero__slider.owl-carousel .owl-item.active .hero__text span,
.hero__slider.owl-carousel .owl-item.active .hero__text h2,
.hero__slider.owl-carousel .owl-item.active .hero__text .primary-btn {
  top: 0;
  opacity: 1;
}

.hero {
  height: 100vh !important;
  width: 100% !important;
  min-height: 600px !important;
  position: relative !important;
  overflow: hidden !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.hero__slider {
  height: 100% !important;
  width: 100% !important;
}

.hero__item {
  height: 100vh !important;
  width: 100% !important;
  min-height: 600px !important;
  display: flex !important;
  align-items: center !important;
  position: relative !important;
}

.hero__text {
  position: relative !important;
  z-index: 5 !important;
  padding-top: 0 !important;
}

.hero__text span {
  color: #00bfe7;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.hero__text h2 {
  color: #ffffff;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 30px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}

.about {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: linear-gradient(180deg, rgba(10, 17, 24, 0.5) 0%, rgba(10, 17, 24, 0.8) 100%);
}

.about:before {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(108, 99, 255, 0.15) 0%, transparent 70%);
  top: -400px;
  left: -400px;
  border-radius: 50%;
  z-index: 0;
  animation: pulse 4s ease-in-out infinite;
}

.about:after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 99, 132, 0.1) 0%, transparent 70%);
  bottom: -300px;
  right: -300px;
  border-radius: 50%;
  z-index: 0;
  animation: pulse 5s ease-in-out infinite reverse;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.about__pic {
  position: relative;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  margin-bottom: 30px;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.about__pic img {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(108, 99, 255, 0.2);
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
}

.about__pic:hover img {
  transform: translateY(-15px) rotateY(5deg) rotateX(5deg) scale(1.02);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(108, 99, 255, 0.4),
    0 0 100px rgba(255, 99, 132, 0.2);
}

.about__pic::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: linear-gradient(135deg, #6C63FF 0%, #FF6384 100%);
  border-radius: 25px;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s ease;
  filter: blur(20px);
}

.about__pic:hover::before {
  opacity: 0.3;
}

.about__pic::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid transparent;
  border-image: linear-gradient(135deg, #6C63FF, #FF6384, #00bfe7) 1;
  top: 15px;
  left: 15px;
  border-radius: 20px;
  z-index: -1;
  opacity: 0;
  transition: all 0.6s ease;
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.1), rgba(255, 99, 132, 0.1));
}

.about__pic:hover::after {
  top: -10px;
  left: -10px;
  opacity: 1;
  border-width: 4px;
  box-shadow: 0 0 30px rgba(108, 99, 255, 0.5);
}

.about__text {
  padding-left: 0;
  position: relative;
  z-index: 1;
}

@media (min-width: 992px) {
  .about__text {
    padding-left: 50px;
  }
}

.about__text h3 {
  color: #ffffff;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ffffff 0%, #6C63FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
}

.about__text h3::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #6C63FF, #FF6384);
  transition: width 0.5s ease;
}

.about__text:hover h3::after {
  width: 100%;
}

.about__text h4 {
  color: #6C63FF;
  font-size: 24px;
  margin-bottom: 30px;
  font-weight: 600;
  position: relative;
  display: inline-block;
  padding-left: 20px;
}

.about__text h4::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 30px;
  background: linear-gradient(180deg, #6C63FF, #FF6384);
  border-radius: 2px;
}

.about__text p {
  color: #adadad;
  font-size: 17px;
  line-height: 1.9;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.about__text:hover p {
  color: #d0d0d0;
}

.about__counter {
  margin: 30px 0;
}

.counter__item {
  text-align: center;
  margin-bottom: 30px;
  padding: 20px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.3s;
  height: 100%;
}

.counter__item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.counter__item h2 {
  color: #00bfe7;
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 40px;
}

.counter__item p {
  margin-bottom: 0;
  color: #ffffff;
  opacity: 0.7;
}

.skills {
  background: rgba(0, 0, 0, 0.2);
  position: relative;
}

.skills:after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 123, 255, 0.1) 0%, transparent 70%);
  bottom: -200px;
  right: -200px;
  border-radius: 50%;
  z-index: 0;
}

.skill-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 191, 231, 0.1);
  border-radius: 10px;
  padding: 35px 25px;
  margin-bottom: 30px;
  transition: all 0.4s;
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.skill-card:before {
  content: '';
  position: absolute;
  top: -100%;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 191, 231, 0.1) 0%, transparent 100%);
  transition: all 0.6s ease;
  z-index: -1;
}

.skill-card:hover:before {
  top: 0;
  left: 0;
}

.skill-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 191, 231, 0.3);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
}

.skill-icon {
  font-size: 48px;
  color: #00bfe7;
  margin-bottom: 25px;
  text-align: center;
  transition: all 0.3s;
}

.skill-card:hover .skill-icon {
  transform: scale(1.1);
  text-shadow: 0 0 20px rgba(0, 191, 231, 0.5);
}

.skill-card h4 {
  color: #ffffff;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.skill-card h4:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: linear-gradient(to right, #00bfe7, #007bff);
  border-radius: 10px;
}

.skill-card ul {
  list-style: none;
  padding-left: 5px;
}

.skill-card ul li {
  color: #adadad;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(173, 173, 173, 0.1);
  position: relative;
  padding-left: 20px;
  transition: all 0.3s;
}

.skill-card ul li:before {
  content: '\f105';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #00bfe7;
}

.skill-card ul li:hover {
  color: #ffffff;
  padding-left: 25px;
}

.skill-card ul li:last-child {
  border-bottom: none;
}

.portfolio {
  position: relative;
  padding: 120px 0;
  background: #0a1118;
}

.portfolio-filter {
  text-align: center;
  margin-bottom: 50px;
}

.portfolio-filter ul {
  list-style: none;
  display: inline-block;
  background: rgba(255, 255, 255, 0.03);
  padding: 10px 20px;
  border-radius: 50px;
}

.portfolio-filter ul li {
  display: inline-block;
  margin-right: 15px;
  font-size: 15px;
  color: #adadad;
  cursor: pointer;
  font-family: "Play", sans-serif;
  position: relative;
  transition: all 0.3s;
  padding: 8px 15px;
  border-radius: 20px;
}

.portfolio-filter ul li:last-child {
  margin-right: 0;
}

.portfolio-filter ul li.active {
  background: linear-gradient(to right, #00bfe7, #007bff);
  color: #ffffff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.portfolio-filter ul li:hover:not(.active) {
  color: #00bfe7;
}

.portfolio {
  padding: 100px 0;
  position: relative;
  background-color: #0a1118;
}

.portfolio-filter {
  margin-bottom: 40px;
}

.filter-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50px;
  margin: 0 auto;
  max-width: fit-content;
}

.filter-buttons li {
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
  color: #adadad;
  cursor: pointer;
  border-radius: 25px;
  transition: all 0.3s;
}

.filter-buttons li.active {
  background: linear-gradient(to right, #00bfe7, #007bff);
  color: #ffffff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.filter-buttons li:hover:not(.active) {
  color: #00bfe7;
}

.portfolio-container {
  margin-top: 30px;
}

.portfolio-item {
  margin-bottom: 30px;
}

.portfolio-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  height: 100%;
}

.portfolio-image {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: all 0.5s;
}

.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.7), transparent);
  padding: 30px 20px;
  transform: translateY(75%);
  transition: all 0.4s;
}

.portfolio-card:hover .portfolio-image {
  transform: scale(1.05);
}

.portfolio-card:hover .portfolio-overlay {
  transform: translateY(0);
}

.portfolio-header {
  margin-bottom: 15px;
}

.portfolio-title {
  color: #00bfe7;
  font-size: 22px;
  margin-bottom: 50px;
}

.portfolio-subtitle {
  color: #ffffff;
  opacity: 0.8;
  display: block;
  margin-bottom: 10px;
}

.portfolio-description {
  color: #ffffff;
  margin-bottom: 0;
  line-height: 1.6;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr)) !important;
  gap: 30px !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 2rem auto !important;
  padding: 0 15px !important;
  list-style: none;
}

.card {
  position: relative;
  display: block;
  height: 100%;
  border-radius: 5px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.4s;
  min-height: 450px !important;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3);
}

.card__image {
  width: 100%;
  height: 350px !important; /* Hauteur d'image augmentée */
  object-fit: cover;
  transition: transform 0.8s;
}

.card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  border-radius: 5px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7), transparent);
  transform: translateY(60%);
  transition: .4s ease-in-out;
}

.card:hover .card__overlay {
  transform: translateY(0);
}

.card__header {
  position: relative;
  display: flex;
  align-items: center;
  padding: 20px;
  background: rgba(0, 191, 231, 0.9);
  border-radius: 5px 5px 0 0;
  transform: translateY(-100%);
  transition: .4s ease-in-out;
}

.card:hover .card__header {
  transform: translateY(0);
}

.card__header-text {
  width: 100%;
}

.card__title {
  font-size: 1.2em;
  margin: 0;
  color: #ffffff;
  font-weight: 700;
}

.card__status {
  display: block;
  font-size: 0.9em;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 5px;
}

.card__description {
  padding: 20px;
  margin: 0;
  color: #ffffff;
  font-size: 1em;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.services {
  background: rgba(0, 0, 0, 0.2);
  position: relative;
}

.service-item {
  padding: 40px 30px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  margin-bottom: 30px;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  height: 100%;
}

.service-item:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, #00bfe7, #007bff);
  transition: all 0.4s;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-item:hover:before {
  height: 6px;
}

.service-icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  background: rgba(0, 191, 231, 0.1);
  border-radius: 50%;
  margin-bottom: 25px;
  font-size: 30px;
  color: #00bfe7;
  transition: all 0.4s;
}

.service-item:hover .service-icon {
  background: linear-gradient(to right, #00bfe7, #007bff);
  color: #ffffff;
  transform: rotateY(360deg);
}

.service-item h4 {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-size: 20px;
}

.service-item p {
  color: #adadad;
  margin-bottom: 0;
}

.contact {
  position: relative;
}

.contact-info {
  padding: 50px 40px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  border: 1px solid rgba(0, 191, 231, 0.1);
  transition: all 0.4s;
  text-align: center;
}

.contact-info:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(0, 191, 231, 0.3);
}

.contact-info h3 {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 30px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 15px;
  display: inline-block;
}

.contact-info h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, #00bfe7, #007bff);
  border-radius: 10px;
}

.contact-info ul {
  list-style: none;
  margin-bottom: 30px;
  display: inline-block;
  text-align: left;
}

.contact-info ul li {
  color: #adadad;
  font-size: 16px;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
}

.contact-info ul li i {
  color: #00bfe7;
  margin-right: 15px;
  font-size: 20px;
  width: 25px;
  text-align: center;
}

.contact-info ul li span {
  color: #ffffff;
  font-weight: 600;
  margin-right: 10px;
}

.contact-text {
  color: #adadad;
  margin: 30px 0;
  line-height: 1.8;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.contact-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: #00bfe7;
  font-size: 18px;
  transition: all 0.3s;
  text-decoration: none;
}

.contact-social a:hover {
  background: linear-gradient(to right, #00bfe7, #007bff);
  color: #ffffff;
  transform: translateY(-5px);
}

.contact-form {
  padding: 40px 30px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
  height: 100%;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  height: 50px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  border-radius: 5px;
  margin-bottom: 20px;
  color: #ffffff;
  font-size: 16px;
  transition: all 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 10px rgba(0, 191, 231, 0.3);
}

.contact-form textarea {
  height: 150px;
  resize: none;
  padding: 15px 20px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.footer {
  background: rgba(0, 0, 0, 0.3);
  padding: 30px 0;
  text-align: center;
}

.footer-logo a {
  display: inline-block;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  font-family: "Play", sans-serif;
  transition: all 0.3s;
  text-decoration: none;
}

.footer-logo a:hover {
  color: #00bfe7;
}

.footer-text p {
  color: #adadad;
  margin-bottom: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeInUp {
  animation: fadeInUp 0.8s ease forwards;
}

@media (max-width: 767px) {
  .hero__text h2 {
    font-size: 32px;
  }
  
  .about__pic:after {
    display: none;
  }
  
  .about__text {
    padding-left: 0;
    margin-top: 30px;
  }
  
  .portfolio-filter ul li {
    margin-bottom: 10px;
  }
  
  .card__description {
    -webkit-line-clamp: 2;
  }
  
  .cards {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
  
  .card__image {
    height: 260px;
  }
}
:root {
	--surface-color: #b0f0f8f1;
}

.cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin: 4rem 5vw;
	padding: 0;
	list-style-type: none;
}

.card {
	position: relative;
	display: block;
	height: 100%;
	border-radius: 5px;
	overflow: hidden;
	text-decoration: none;
}

.card__image {
	width: 100%;
	height: auto;
}

.card__overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1;
	border-radius: 5px;
	background-color: var(--surface-color);
	transform: translateY(100%);
	transition: .2s ease-in-out;
}

.card:hover .card__overlay {
	transform: translateY(0);
}

.card__header {
	position: relative;
	display: flex;
	align-items: center;
	gap: 2em;
	padding: 2em;
	border-radius: 5px 5px 0 0;
	background-color: var(--surface-color);
	transform: translateY(-100%);
	transition: .2s ease-in-out;
}

.card__arc {
	width: 80px;
	height: 80px;
	position: absolute;
	bottom: 100%;
	right: 0;
	z-index: 1;
}

.card__arc path {
	fill: var(--surface-color);
	d: path("M 40 80 c 22 0 40 -22 40 -40 v 40 Z");
}

.card:hover .card__header {
	transform: translateY(0);
}

.card__thumb {
	flex-shrink: 0;
	width: 50px;
	height: 50px;
	border-radius: 50%;
}

.card__title {
	font-size: 1em;
	margin: 0 0 .3em;
	color: #6A515E;
}

.card__tagline {
	display: block;
	margin: 1em 0;
	font-family: "MockFlowFont";
	font-size: .8em;
	color: #D7BDCA;
}

.card__status {
	font-size: .8em;
	color: #D7BDCA;
}

.card__description {
	padding: 0 2em 2em;
	margin: 0;
	color: #D7BDCA;
	font-family: "MockFlowFont";
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}

.education {
  background: rgba(0, 0, 0, 0.2);
  position: relative;
}

.timeline {
  position: relative;
  padding: 40px 0;
}

.timeline:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  margin-left: -1px;
  background: linear-gradient(to bottom, rgba(0, 191, 231, 0.1), #00bfe7, rgba(0, 191, 231, 0.1));
}

.timeline-item {
  position: relative;
  margin-bottom: 50px;
}

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

.timeline-item-inner {
  position: relative;
  width: 50%;
  padding-right: 50px;
  padding-left: 15px;
}

.timeline-item:nth-child(even) .timeline-item-inner {
  float: right;
  padding-right: 15px;
  padding-left: 50px;
  text-align: left;
}

.timeline-date {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(to right, #00bfe7, #007bff);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.timeline-content {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  padding: 25px;
  position: relative;
  transition: all 0.4s;
  border: 1px solid rgba(0, 191, 231, 0.1);
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(0, 191, 231, 0.3);
}

.timeline-content h4 {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 20px;
}

.timeline-content p {
  color: #adadad;
  margin-bottom: 0;
}

.timeline-marker {
  position: absolute;
  top: 50%;
  right: -8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #00bfe7;
  margin-top: -8px;
  box-shadow: 0 0 0 4px rgba(0, 191, 231, 0.2);
  z-index: 1;
}

.timeline-item:nth-child(even) .timeline-marker {
  right: auto;
  left: -8px;
}

.trainings {
  position: relative;
  overflow: hidden;
}

.trainings:before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 123, 255, 0.1) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  border-radius: 50%;
  z-index: 0;
}

.training-item {
  padding: 40px 30px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  margin-bottom: 30px;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  height: 100%;
  border: 1px solid rgba(0, 191, 231, 0.1);
}

.training-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(0, 191, 231, 0.3);
}

.training-icon {
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  background: rgba(0, 191, 231, 0.1);
  border-radius: 50%;
  margin-bottom: 20px;
  font-size: 24px;
  color: #00bfe7;
  transition: all 0.4s;
}

.training-item:hover .training-icon {
  background: linear-gradient(to right, #00bfe7, #007bff);
  color: #ffffff;
  transform: rotateY(360deg);
}

.training-date {
  display: inline-block;
  padding: 5px 15px;
  background: rgba(0, 191, 231, 0.1);
  color: #00bfe7;
  font-size: 14px;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 15px;
}

.training-item h4 {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.training-item p {
  color: #adadad;
  margin-bottom: 15px;
}

.training-place {
  display: flex;
  align-items: center;
  color: #adadad;
  font-size: 14px;
}

.training-place i {
  color: #00bfe7;
  margin-right: 10px;
}

.contact-info {
  padding: 50px 40px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  border: 1px solid rgba(0, 191, 231, 0.1);
  transition: all 0.4s;
  text-align: center;
}

.contact-info:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(0, 191, 231, 0.3);
}

.contact-info h3 {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 30px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 15px;
  display: inline-block;
}

.contact-info h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, #00bfe7, #007bff);
  border-radius: 10px;
}

.contact-info ul {
  list-style: none;
  margin-bottom: 30px;
  display: inline-block;
  text-align: left;
}

.contact-info ul li {
  color: #adadad;
  font-size: 16px;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
}

.contact-info ul li i {
  color: #00bfe7;
  margin-right: 15px;
  font-size: 20px;
  width: 25px;
  text-align: center;
}

.contact-info ul li span {
  color: #ffffff;
  font-weight: 600;
  margin-right: 10px;
}

.contact-text {
  color: #adadad;
  margin: 30px 0;
  line-height: 1.8;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.contact-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: #00bfe7;
  font-size: 18px;
  transition: all 0.3s;
  text-decoration: none;
}

.contact-social a:hover {
  background: linear-gradient(to right, #00bfe7, #007bff);
  color: #ffffff;
  transform: translateY(-5px);
}

@media (max-width: 991px) {
  .timeline:before {
    left: 20px;
  }
  
  .timeline-item-inner {
    width: 100%;
    padding-left: 70px;
    padding-right: 15px;
  }
  
  .timeline-item:nth-child(even) .timeline-item-inner {
    float: none;
    padding-left: 70px;
    padding-right: 15px;
    text-align: left;
  }
  
  .timeline-marker {
    left: 12px;
    right: auto;
  }
  
  .timeline-item:nth-child(even) .timeline-marker {
    left: 12px;
  }
  
  .timeline:after {
    content: '';
    clear: both;
    display: table;
  }
}

@media (max-width: 767px) {
  .training-item {
    padding: 30px 20px;
  }
  
  .contact-info {
    padding: 30px 20px;
  }
  
  .contact-info ul {
    width: 100%;
  }
  
  .section-title h2 {
    font-size: 28px;
  }
  
  .hero__text h2 {
    font-size: 32px;
  }
  
  .hero__text span {
    font-size: 14px;
  }
  
  .counter__item {
    margin-bottom: 15px;
  }
  
  .about__pic {
    margin-bottom: 30px;
  }
  
  .about__pic:after {
    display: none;
  }
  
  .timeline-date {
    font-size: 14px;
    padding: 6px 15px;
  }
  
  .timeline-content {
    padding: 15px;
  }
  
  .timeline-content h4 {
    font-size: 18px;
  }
  
  .training-item,
  .skill-card {
    padding: 25px 20px;
  }
  
  .contact-info {
    padding: 30px 20px;
  }
  
  .contact-info ul {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .header {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
    min-height: auto !important;
  }
  
  .header .container {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }
  
  .header .row {
    margin-bottom: 0 !important;
    align-items: center !important;
  }
  
  .header__logo {
    padding: 8px 0 2px 0 !important;
    margin-bottom: 0 !important;
  }
  
  .header__logo a {
    font-size: 16px !important;
    line-height: 1 !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    display: block !important;
  }
  
  .header__nav__option {
    padding: 5px 0 !important;
    margin-bottom: 0 !important;
  }
  
  .col-lg-2 {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }
  
  .slicknav_menu {
    right: 5px;
    top: 12px;
  }
  
  .slicknav_btn {
    padding: 5px !important;
    width: 28px !important;
    height: 28px !important;
  }
  
  .slicknav_icon-bar {
    width: 16px !important;
    height: 1.5px !important;
    margin: 2.5px 0 !important;
  }
  
  .slicknav_nav {
    width: 130px;
    padding: 5px;
    right: 0;
    left: auto;
    border-radius: 4px;
  }
  
  .slicknav_nav a {
    font-size: 10px !important;
    padding: 4px 5px !important;
    line-height: 1.2 !important;
  }
  
  .hero__item {
    min-height: 500px;
    padding-top: 60px;
  }
  
  .hero__text h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }
  
  .hero__text span {
    margin-bottom: 15px;
    letter-spacing: 2px;
  }
  
  .primary-btn {
    padding: 12px 25px 10px;
    font-size: 14px;
  }
  
  .timeline-content h4 {
    font-size: 16px;
  }
  
  .training-icon,
  .skill-icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 22px;
  }
  
  .section-title {
    margin-bottom: 30px;
  }
  
  .spad {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  
  .footer {
    padding: 20px 0;
  }
  
  .cards {
    grid-template-columns: 1fr;
    margin: 1rem 0;
  }
}

.portfolio-filter ul {
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.portfolio-filter ul li {
  margin: 5px;
}

.contact-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.timeline::after {
  content: "";
  display: table;
  clear: both;
}

.h-100 {
  height: 100%;
}

.g-4 {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 1.5rem;
}

@media (max-width: 991px) {
  .navbar-collapse {
    background-color: rgba(10, 17, 24, 0.98);
    padding: 15px;
    border-radius: 8px;
    margin-top: 10px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
  }
  
  .navbar-nav .nav-link {
    padding: 12px 15px;
  }
  
  .navbar-dark .navbar-nav .nav-link:after {
    bottom: 8px;
  }
}

.hero {
  height: 100vh;
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: 1;
  margin-top: 0;
  padding-top: 0;
}

.hero__slider {
  height: 100%;
  width: 100%;
}

.hero__item {
  height: 100vh;
  width: 100%;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  background-position: center center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}

.hero__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
  z-index: 1;
}

.hero__text {
  position: relative;
  z-index: 2;
  padding-top: 70px;
}

.hero__text span {
  color: #00bfe7;
  font-weight: 600;
  display: block;
  font-size: 18px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
  animation: fadeInUp 0.8s ease forwards;
}

.hero__text h2 {
  color: #ffffff;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 40px;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.8);
  animation: fadeInUp 0.8s ease 0.2s forwards;
}

.hero__text .primary-btn {
  animation: fadeInUp 0.8s ease 0.4s forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.portfolio {
  position: relative;
  padding: 120px 0;
  background: #0a1118;
}

.portfolio .container {
  max-width: 1400px;
  padding: 0 30px;
}

.portfolio-filter {
  margin-bottom: 60px;
}

.portfolio-filter ul {
  list-style: none;
  display: inline-flex;
  background: rgba(0, 191, 231, 0.05);
  padding: 15px 25px;
  border-radius: 50px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  flex-wrap: wrap;
  justify-content: center;
}

.portfolio-filter ul li {
  display: inline-block;
  margin: 5px 10px;
  font-size: 16px;
  color: #adadad;
  cursor: pointer;
  font-family: "Play", sans-serif;
  font-weight: 600;
  position: relative;
  transition: all 0.4s;
  padding: 10px 22px;
  border-radius: 25px;
}

.portfolio-filter ul li.active {
  background: linear-gradient(to right, #00bfe7, #007bff);
  color: #ffffff;
  box-shadow: 0 5px 15px rgba(0, 191, 231, 0.3);
}

.portfolio-filter ul li:hover:not(.active) {
  color: #00bfe7;
  transform: translateY(-2px);
}

.cards {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr)) !important;
  gap: 40px !important;
  width: 100% !important;
  margin: 0 auto 40px !important;
  padding: 0 !important;
}

.card {
  position: relative;
  display: block;
  min-height: 500px !important;
  border-radius: 15px !important;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3) !important;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1) !important;
  border: none !important;
  transform: translateY(0);
}

.card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5) !important;
}

.card__image {
  width: 100%;
  height: 400px !important;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.23, 1, 0.32, 1), filter 1s ease;
}

.card:hover .card__image {
  transform: scale(1.05);
  filter: brightness(1.2);
}

.card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.7), transparent);
  transform: translateY(85%);
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  padding: 20px 0;
  height: 75%;
}

.card:hover .card__overlay {
  transform: translateY(0);
}

.card__header {
  position: relative;
  display: flex;
  align-items: center;
  padding: 25px;
  background: linear-gradient(to right, rgba(0, 191, 231, 0.9), rgba(0, 123, 255, 0.9));
  border-radius: 0;
  transform: translateY(-100%);
  margin-bottom: 20px;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.card:hover .card__header {
  transform: translateY(0);
}

.card__header-text {
  width: 100%;
}

.card__title {
  font-size: 1.5em;
  margin: 0 0 5px;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.card__status {
  display: block;
  font-size: 1em;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 8px;
  font-weight: 500;
}

.card__description {
  padding: 0 25px 25px;
  margin: 0;
  color: #ffffff;
  font-size: 1.1em;
  line-height: 1.6;
  font-weight: 400;
}

@media (max-width: 1200px) {
  .cards {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)) !important;
  }
}

@media (max-width: 991px) {
  .cards {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)) !important;
  }
  
  .card__image {
    height: 350px !important;
  }
}

@media (max-width: 767px) {
  .hero__text h2 {
    font-size: 40px;
  }
  
  .cards {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 30px !important;
  }
  
  .card__image {
    height: 300px !important;
  }
  
  .card {
    min-height: 450px !important;
  }
}

@media (max-width: 575px) {
  .cards {
    grid-template-columns: 1fr !important;
    padding: 0 15px !important;
  }
}.context-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.2);
	display: none;
	z-index: 999;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.custom-context-menu {
	position: absolute;
	background: rgba(50, 50, 50, 0.95);
	backdrop-filter: blur(5px);
	border-radius: 8px;
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.4);
	padding: 8px 0;
	display: none;
	z-index: 1000;
	min-width: 180px;
	transform: scale(0.8);
	opacity: 0;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.custom-context-menu.show {
	transform: scale(1);
	opacity: 1;
}

.context-overlay.show {
	opacity: 1;
}

.custom-context-menu ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.custom-context-menu ul li {
	padding: 12px 15px;
	cursor: pointer;
	font-size: 14px;
	color: #fff;
	display: flex;
	align-items: center;
	gap: 10px;
	transition: background-color 0.2s ease;
}

.custom-context-menu ul li:hover {
	background: rgba(255, 255, 255, 0.2);
}

.separator {
	height: 1px;
	background: rgba(255, 255, 255, 0.3);
	margin: 5px 0;
}
	::-webkit-scrollbar {
		width: 10px;
		background: transparent;
	}

	::-webkit-scrollbar-track {
		background: rgba(34, 34, 34, 0.7);
		border-radius: 10px;
		margin: 5px 0;
	}

	::-webkit-scrollbar-thumb {
		background: linear-gradient(45deg, #6C63FF, #FF6384);
		border-radius: 10px;
		border: 2px solid rgba(34, 34, 34, 0.7);
		background-clip: padding-box;
	}

	::-webkit-scrollbar-thumb:hover {
		background: linear-gradient(45deg, #5953e5, #ff4d73);
	}

	body {
		overflow-y: scroll;
		padding-right: 0 !important;
		overflow-x: hidden;
	}

	html {
		scrollbar-width: thin;
		scrollbar-color: #6C63FF #222222;
		scroll-behavior: smooth;
	}

	.header__nav__menu {
		position: relative;
	}

	.header__nav__menu ul {
		display: flex;
		padding: 0;
		margin: 0;
	}

	.header__nav__menu li {
		position: relative;
	}

	.header__nav__menu li a {
		padding: 15px 20px;
		display: block;
		position: relative;
		transition: all 0.3s ease;
	}

	.header__nav__menu li a:before {
		content: '';
		position: absolute;
		bottom: 0;
		left: 50%;
		width: 0;
		height: 2px;
		background: linear-gradient(90deg, #6C63FF, #FF6384);
		transition: all 0.3s ease;
		transform: translateX(-50%);
	}

	.header__nav__menu li:hover a:before,
	.header__nav__menu li.active a:before {
		width: 70%;
	}

	.header__nav__menu li.active a {
		color: #6C63FF;
	}

	.animated-item {
		opacity: 1;
		transform: translateY(0);
		transition: all 0.6s ease;
	}

	.experience-card {
		border-radius: 12px;
		padding: 25px;
		margin-bottom: 30px;
		box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
		transition: all 0.3s ease;
		position: relative;
		overflow: hidden;
		background: #1e1e1e;
		border-left: 4px solid #6C63FF;
		color: #e0e0e0;
	}

	.experience-card:hover {
		transform: translateY(-5px);
		box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
	}

	.experience-card:before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: linear-gradient(135deg, rgba(108, 99, 255, 0.08) 0%, rgba(255, 99, 132, 0.08) 100%);
		opacity: 0;
		transition: all 0.3s ease;
	}

	.experience-card:hover:before {
		opacity: 1;
	}

	.experience-date {
		display: inline-block;
		padding: 5px 15px;
		background: linear-gradient(90deg, #6C63FF, #FF6384);
		color: white;
		border-radius: 20px;
		font-size: 14px;
		margin-bottom: 12px;
		font-weight: 500;
	}

	.experience-company {
		font-weight: 600;
		color: #6C63FF;
		margin-bottom: 5px;
	}

	.experience-projects {
		margin-top: 20px;
		padding-top: 15px;
		border-top: 1px dashed rgba(255, 255, 255, 0.15);
	}

	.experience-projects h5 {
		color: #e0e0e0;
		margin-bottom: 12px;
		font-weight: 600;
		font-size: 16px;
	}

	.experience-projects ul {
		padding-left: 18px;
	}

	.experience-projects li {
		margin-bottom: 8px;
		position: relative;
	}

	.experience-projects li:before {
		content: '•';
		color: #6C63FF;
		font-weight: bold;
		position: absolute;
		left: -15px;
	}

	.experience-tag {
		display: inline-block;
		padding: 3px 8px;
		background: rgba(108, 99, 255, 0.15);
		color: #9d97ff;
		border-radius: 4px;
		font-size: 12px;
		margin-right: 5px;
		margin-top: 8px;
	}

	.back-to-top {
		position: fixed;
		bottom: 25px;
		right: 25px;
		width: 50px;
		height: 50px;
		border-radius: 50%;
		background: linear-gradient(45deg, #6C63FF, #FF6384);
		color: white;
		display: flex;
		justify-content: center;
		align-items: center;
		text-decoration: none;
		opacity: 0;
		visibility: hidden;
		transition: all 0.3s ease;
		cursor: pointer;
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
		z-index: 9999;
	}

	.back-to-top.visible {
		opacity: 1;
		visibility: visible;
	}

	.back-to-top i {
		font-size: 24px;
		transition: transform 0.3s ease;
	}

	.back-to-top:hover i {
		transform: translateY(-4px);
	}

	@keyframes bounce {

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

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

	.back-to-top.visible i {
		animation: bounce 2s infinite;
	}

	.custom-cursor {
		width: 20px;
		height: 20px;
		border: 2px solid #6C63FF;
		border-radius: 50%;
		position: fixed;
		top: 0;
		left: 0;
		pointer-events: none;
		z-index: 99999;
		transform: translate(-50%, -50%);
		transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
		opacity: 1;
		display: none;
		background: rgba(108, 99, 255, 0.1);
		box-shadow: 0 0 10px rgba(108, 99, 255, 0.5);
	}

	.custom-cursor-follower {
		width: 8px;
		height: 8px;
		background: #6C63FF;
		border-radius: 50%;
		position: fixed;
		top: 0;
		left: 0;
		pointer-events: none;
		z-index: 99998;
		transform: translate(-50%, -50%);
		transition: transform 0.15s ease, opacity 0.3s ease;
		opacity: 1;
		display: none;
		box-shadow: 0 0 8px rgba(108, 99, 255, 0.8);
	}

	@media (hover: hover) and (pointer: fine) {
		.custom-cursor {
			display: block !important;
		}
		
		.custom-cursor-follower {
			display: block !important;
		}
	}

	.custom-cursor.hover {
		width: 50px;
		height: 50px;
		border-color: #FF6384;
		background: rgba(108, 99, 255, 0.2);
		box-shadow: 0 0 20px rgba(255, 99, 132, 0.6);
	}

	.custom-cursor.click {
		width: 30px;
		height: 30px;
		border-color: #00bfe7;
		background: rgba(0, 191, 231, 0.2);
		box-shadow: 0 0 15px rgba(0, 191, 231, 0.6);
	}

	#wireframe-network {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: -1;
		opacity: 0.3;
		background: linear-gradient(135deg, #0a1118 0%, #1a1f2e 100%);
	}

	.references {
		position: relative;
		z-index: 1;
		padding: 100px 0;
		background: linear-gradient(180deg, rgba(10, 17, 24, 0.3) 0%, rgba(10, 17, 24, 0.6) 100%);
		overflow: hidden;
	}

	.references::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: radial-gradient(circle at 20% 50%, rgba(108, 99, 255, 0.1) 0%, transparent 50%),
			radial-gradient(circle at 80% 50%, rgba(255, 99, 132, 0.1) 0%, transparent 50%);
		z-index: 0;
		pointer-events: none;
	}

	.references .container {
		position: relative;
		z-index: 1;
	}

	.references-info {
		margin-bottom: 50px;
		text-align: center;
	}

	.references-intro {
		background: rgba(108, 99, 255, 0.1);
		border-left: 4px solid #6C63FF;
		border-radius: 8px;
		padding: 20px 30px;
		color: #d0d0d0;
		font-size: 16px;
		line-height: 1.8;
		margin: 0;
		position: relative;
		backdrop-filter: blur(10px);
		box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
		transition: all 0.3s ease;
	}

	.references-intro:hover {
		background: rgba(108, 99, 255, 0.15);
		box-shadow: 0 6px 20px rgba(108, 99, 255, 0.2);
		transform: translateY(-2px);
	}

	.references-intro i {
		color: #6C63FF;
		margin-right: 10px;
		font-size: 18px;
		vertical-align: middle;
	}

	.reference-card {
		background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
		border: 2px solid rgba(108, 99, 255, 0.2);
		border-radius: 24px;
		padding: 40px 30px;
		text-align: center;
		transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
		position: relative;
		overflow: hidden;
		backdrop-filter: blur(15px);
		transform-style: preserve-3d;
		perspective: 1000px;
		height: 100%;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2),
			inset 0 1px 0 rgba(255, 255, 255, 0.1);
	}

	.reference-card::before {
		content: '';
		position: absolute;
		top: -50%;
		left: -50%;
		width: 200%;
		height: 200%;
		background: radial-gradient(circle, rgba(108, 99, 255, 0.15) 0%, transparent 70%);
		opacity: 0;
		transition: opacity 0.5s ease;
		animation: rotate 20s linear infinite;
	}

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

	.reference-card::after {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: linear-gradient(135deg, rgba(108, 99, 255, 0.1) 0%, rgba(255, 99, 132, 0.1) 100%);
		opacity: 0;
		transition: opacity 0.5s ease;
		border-radius: 24px;
		z-index: -1;
	}

	.reference-card:hover::before {
		opacity: 1;
	}

	.reference-card:hover::after {
		opacity: 1;
	}

	.reference-card:hover {
		transform: translateY(-15px) rotateX(8deg) rotateY(8deg) scale(1.02);
		border-color: rgba(108, 99, 255, 0.6);
		box-shadow: 0 25px 60px rgba(108, 99, 255, 0.3),
			0 0 40px rgba(108, 99, 255, 0.2),
			0 0 80px rgba(255, 99, 132, 0.1),
			inset 0 1px 0 rgba(255, 255, 255, 0.2);
		background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
	}

	.reference-icon {
		width: 100px;
		height: 100px;
		margin: 0 auto 25px;
		background: linear-gradient(135deg, #6C63FF 0%, #FF6384 100%);
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 40px;
		color: white;
		transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
		position: relative;
		overflow: visible;
		box-shadow: 0 10px 30px rgba(108, 99, 255, 0.4),
			0 0 20px rgba(108, 99, 255, 0.3);
		z-index: 2;
	}

	.reference-icon::before {
		content: '';
		position: absolute;
		top: 50%;
		left: 50%;
		width: 0;
		height: 0;
		background: rgba(255, 255, 255, 0.4);
		border-radius: 50%;
		transform: translate(-50%, -50%);
		transition: width 0.6s ease, height 0.6s ease;
		z-index: -1;
	}

	.reference-icon::after {
		content: '';
		position: absolute;
		top: -10px;
		left: -10px;
		right: -10px;
		bottom: -10px;
		border: 2px solid rgba(108, 99, 255, 0.3);
		border-radius: 50%;
		opacity: 0;
		transition: all 0.5s ease;
		animation: pulse-ring 2s ease-out infinite;
	}

	@keyframes pulse-ring {
		0% {
			transform: scale(0.8);
			opacity: 1;
		}
		100% {
			transform: scale(1.3);
			opacity: 0;
		}
	}

	.reference-card:hover .reference-icon::before {
		width: 200%;
		height: 200%;
	}

	.reference-card:hover .reference-icon::after {
		opacity: 1;
		border-color: rgba(108, 99, 255, 0.6);
	}

	.reference-card:hover .reference-icon {
		transform: rotateY(360deg) scale(1.15);
		box-shadow: 0 15px 40px rgba(108, 99, 255, 0.5),
			0 0 30px rgba(108, 99, 255, 0.4),
			0 0 50px rgba(255, 99, 132, 0.3);
	}

	.reference-card h4 {
		color: #ffffff;
		margin-bottom: 18px;
		font-size: 26px;
		font-weight: 700;
		transition: all 0.4s ease;
		position: relative;
		display: inline-block;
		background: linear-gradient(135deg, #ffffff 0%, #6C63FF 100%);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
		background-clip: text;
	}

	.reference-card:hover h4 {
		background: linear-gradient(135deg, #6C63FF 0%, #FF6384 100%);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
		background-clip: text;
		transform: scale(1.05);
	}

	.reference-card p {
		color: #adadad;
		margin-bottom: 25px;
		line-height: 1.8;
		font-size: 16px;
		transition: color 0.3s ease;
		flex-grow: 1;
	}

	.reference-card:hover p {
		color: #d0d0d0;
	}

	.reference-link {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		gap: 10px;
		color: #6C63FF;
		font-weight: 600;
		font-size: 15px;
		text-decoration: none;
		padding: 14px 28px;
		border: 2px solid rgba(108, 99, 255, 0.4);
		border-radius: 12px;
		transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
		position: relative;
		overflow: hidden;
		background: rgba(108, 99, 255, 0.05);
		text-transform: uppercase;
		letter-spacing: 0.5px;
		z-index: 2;
	}

	.reference-link::before {
		content: '';
		position: absolute;
		top: 0;
		left: -100%;
		width: 100%;
		height: 100%;
		background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
		transition: left 0.6s ease;
		z-index: -1;
	}

	.reference-link::after {
		content: '';
		position: absolute;
		top: 50%;
		left: 50%;
		width: 0;
		height: 0;
		background: linear-gradient(135deg, #6C63FF 0%, #FF6384 100%);
		border-radius: 50%;
		transform: translate(-50%, -50%);
		transition: width 0.6s ease, height 0.6s ease;
		z-index: -1;
	}

	.reference-link:hover::before {
		left: 100%;
	}

	.reference-link:hover::after {
		width: 300px;
		height: 300px;
	}

	.reference-link:hover {
		color: #ffffff;
		background: linear-gradient(135deg, #6C63FF 0%, #FF6384 100%);
		border-color: transparent;
		transform: translateY(-3px) scale(1.05);
		box-shadow: 0 8px 25px rgba(108, 99, 255, 0.5),
			0 0 20px rgba(108, 99, 255, 0.3);
	}

	.reference-link i {
		transition: transform 0.4s ease;
		font-size: 14px;
	}

	.reference-link:hover i {
		transform: translateX(5px) rotate(-45deg);
	}

	.reference-link:active {
		transform: translateY(-1px) scale(1.02);
	}

	.skill-card {
		transform-style: preserve-3d;
		perspective: 1000px;
		transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	}

	.skill-card:hover {
		transform: translateY(-10px) rotateX(5deg);
	}

	.skill-icon {
		transform-style: preserve-3d;
		transition: transform 0.4s ease;
	}

	.skill-card:hover .skill-icon {
		transform: rotateY(360deg) scale(1.1);
	}

	.about__pic {
		position: relative;
		transform-style: preserve-3d;
		transition: transform 0.4s ease;
	}

	.about__pic:hover {
		transform: rotateY(5deg) rotateX(5deg);
	}

	.about__pic::after {
		content: '';
		position: absolute;
		top: 10px;
		left: 10px;
		right: -10px;
		bottom: -10px;
		border: 2px solid rgba(108, 99, 255, 0.3);
		border-radius: 8px;
		z-index: -1;
		transition: all 0.4s ease;
	}

	.about__pic:hover::after {
		top: 15px;
		left: 15px;
		right: -15px;
		bottom: -15px;
		border-color: rgba(108, 99, 255, 0.6);
	}

	section {
		position: relative;
		transform-style: preserve-3d;
	}

	.section-title {
		position: relative;
		transform-style: preserve-3d;
	}

	.section-title h2 {
		transition: transform 0.3s ease;
	}

	.section-title:hover h2 {
		transform: translateZ(20px);
	}

	@keyframes float {
		0%, 100% {
			transform: translateY(0) rotate(0deg);
		}
		50% {
			transform: translateY(-20px) rotate(180deg);
		}
	}

	.header {
		backdrop-filter: blur(10px);
		background: rgba(10, 17, 24, 0.8);
		box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
		transform-style: preserve-3d;
	}

	.primary-btn {
		position: relative;
		overflow: hidden;
		transform-style: preserve-3d;
		transition: all 0.3s ease;
	}

	.primary-btn::before {
		content: '';
		position: absolute;
		top: 50%;
		left: 50%;
		width: 0;
		height: 0;
		background: rgba(255, 255, 255, 0.2);
		border-radius: 50%;
		transform: translate(-50%, -50%);
		transition: width 0.6s ease, height 0.6s ease;
	}

	.primary-btn:hover::before {
		width: 300px;
		height: 300px;
	}

	.primary-btn:hover {
		transform: translateY(-3px) scale(1.05);
		box-shadow: 0 10px 25px rgba(108, 99, 255, 0.4);
	}

	.about__text .primary-btn {
		display: inline-block;
		padding: 15px 40px;
		background: linear-gradient(135deg, #6C63FF 0%, #FF6384 100%);
		color: #ffffff;
		font-weight: 600;
		border-radius: 50px;
		text-transform: uppercase;
		letter-spacing: 1px;
		position: relative;
		overflow: hidden;
		margin-top: 20px;
		box-shadow: 0 10px 30px rgba(108, 99, 255, 0.3);
		transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	}

	.about__text .primary-btn::before {
		content: '';
		position: absolute;
		top: 50%;
		left: 50%;
		width: 0;
		height: 0;
		background: rgba(255, 255, 255, 0.2);
		border-radius: 50%;
		transform: translate(-50%, -50%);
		transition: width 0.6s ease, height 0.6s ease;
	}

	.about__text .primary-btn:hover::before {
		width: 400px;
		height: 400px;
	}

	.about__text .primary-btn:hover {
		transform: translateY(-5px) scale(1.05);
		box-shadow: 0 15px 40px rgba(108, 99, 255, 0.5),
			0 0 30px rgba(255, 99, 132, 0.3);
	}

	.about__text .primary-btn:active {
		transform: translateY(-2px) scale(1.02);
	}