@media (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1300px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.light-background {
  --background-color: #faf9fb;
  --surface-color: #ffffff
}
.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff
}
:root {
  scroll-behavior: smooth
}
.page-width {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  font-size: 14px;
}
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(--heading-color);
  font-family: var(--heading-font)
}
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #fff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600
}
.php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600
}
.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px
}
.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite
}
@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg)
  }
  100% {
    transform: rotate(360deg)
  }
}
.hero-subtitle {
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  border-radius: 80px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  margin-bottom: 0px;
  display: inline-block;
}
.header {
  color: var(--default-color);
  background-color: rgba(0, 0, 0, 0.7);
  transition: all 0.5s;
  z-index: 997;
  backdrop-filter: blur(4px);
  max-width: 1000px;
  margin: 0 auto;
  border: 1px solid;
  padding: 10px;
  border-radius: 10px;
  position: fixed;
  left: 0;
  right: 0;
  top: 20px;
  width: 90%;
}
.header {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  padding: 6px;
  padding-left: 0px;
}
.header .logo {
  line-height: 1
}
.header .logo img {
  max-height: 36px;
  margin-right: 8px;
  max-width: 200px;
}
.header .logo h1 {
  font-size: 24px;
  margin: 0;
  padding-left: 5px;
  font-weight: 500;
  color: var(--heading-color)
}
.header .header-social-links {
  padding-right: 15px
}
.header .header-social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding-left: 6px;
  display: inline-block;
  transition: 0.3s;
  font-size: 16px
}
.header .header-social-links a:hover {
  color: var(--accent-color)
}
.header .header-social-links a i {
  line-height: 0
}
@media (max-width:1200px) {
  .header {
    padding-top: 10px
  }
  .header .header-container {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px 5px 10px 15px
  }
  .header .logo {
    order: 1
  }
  .header .header-social-links {
    order: 2
  }
  .header .navmenu {
    order: 3
  }
}
@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(--nav-hover-color)
  }
  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0 0 30px rgb(0 0 0 / .1)
  }
  .navmenu .dropdown ul li {
    min-width: 200px
  }
  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color)
  }
  .navmenu .dropdown ul a i {
    font-size: 12px
  }
  .navmenu .dropdown ul a:hover, .navmenu .dropdown ul .active:hover, .navmenu .dropdown ul li:hover > a {
    color: var(--nav-dropdown-hover-color)
  }
  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible
  }
  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden
  }
  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible
  }
}
@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(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0 0 30px rgb(0 0 0 / .1)
  }
  .navmenu a, .navmenu a:focus {
    color: var(--nav-dropdown-color);
    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 a:hover, .navmenu .active, .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color)
  }
  .navmenu .active i, .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg)
  }
  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out
  }
  .navmenu .dropdown ul ul {
    background-color: rgb(33 37 41 / .1)
  }
  .navmenu .dropdown > .dropdown-active {
    display: block;
    background-color: rgb(33 37 41 / .03)
  }
  .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: rgb(33 37 41 / .8);
    transition: 0.3s
  }
  .mobile-nav-active .navmenu > ul {
    display: block
  }
}
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding: 40px 0;
  position: relative;
  box-shadow: 0 5px 25px rgb(0 0 0 / .05)
}
.footer .copyright p {
  margin-bottom: 0
}
.footer .social-links {
  margin-top: 20px
}
.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(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin: 0 5px;
  transition: 0.3s
}
.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color)
}
.footer .credits {
  margin-top: 10px;
  font-size: 13px;
  text-align: center
}
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s
}
.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0
}
.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color)
}
.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px
}
@media screen and (max-width:768px) {
  [data-aos-delay] {
    transition-delay: 0 !important
  }
}
.page-title {
  text-align: center;
  padding: 20px 0
}
.page-title .breadcrumbs {
  margin-bottom: 1.5rem
}
.page-title .breadcrumbs .breadcrumb {
  justify-content: center;
  margin: 0;
  padding: 0;
  background: none
}
.page-title .breadcrumbs .breadcrumb .breadcrumb-item {
  font-size: .9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%)
}
.page-title .breadcrumbs .breadcrumb .breadcrumb-item.active {
  color: var(--accent-color)
}
.page-title .breadcrumbs .breadcrumb .breadcrumb-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease
}
.page-title .breadcrumbs .breadcrumb .breadcrumb-item a:hover {
  color: var(--accent-color)
}
.page-title .breadcrumbs .breadcrumb .breadcrumb-item a i {
  font-size: .9rem;
  margin-right: .2rem
}
.page-title .breadcrumbs .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: color-mix(in srgb, var(--default-color), transparent 50%)
}
.page-title .title-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem 0
}
.page-title .title-wrapper h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--heading-color)
}
.page-title .title-wrapper p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
  line-height: 1.6
}
@media (max-width:768px) {
  .page-title .title-wrapper h1 {
    font-size: 2rem
  }
  .page-title .title-wrapper p {
    font-size: 1rem
  }
}
@media (max-width:576px) {
  .page-title .title-wrapper h1 {
    font-size: 1.75rem
  }
}
section, .section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip
}
@media (max-width:1199px) {
  section, .section {
    scroll-margin-top: 66px
  }
}
.section-title {
  text-align: center;
  padding-bottom: 40px;
  position: relative;
  width: 100%;
  margin: 0 auto;
  max-width: 1000px;
  overflow: hidden;
}
.section-title h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
  color: linear-gradient(120deg, var(--heading-color), var(--accent-color));
}
.section-title h2 {
  font-size: 70px;
  font-weight: 800;
  margin-bottom: 10px;
  text-transform: uppercase;
  line-height: 70px;
  display: inline-block;
  background: linear-gradient(90deg, #ff6a00, #ee0979, #ff6a00);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradient_animate 10s linear infinite;
  -webkit-text-fill-color: transparent;
  background-size: 400%;
  transition: all 0.5s ease-in-out 0s;
}
.section-title .title-shape {
  width: 200px;
  height: 20px;
  margin: 0 auto;
  color: var(--accent-color);
  opacity: .5
}
.section-title .title-shape svg {
  width: 100%;
  height: 100%
}
.section-title p {
  margin: 15px auto 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.8
}
@media (max-width:768px) {
  .section-title h2 {
    font-size: 32px;
    line-height: 42px;
  }
  .section-title .subtitle-wrapper .subtitle {
    font-size: 13px;
    line-height: 23px;
  }
}
.hero {
  position: relative;
  overflow: hidden;
  height: 100vh;
  align-items: center;
  vertical-align: middle;
  justify-content: center;
  display: flex;
}
.hero .content h2 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem
}
@media (max-width:991px) {
  .hero .content h2 {
    font-size: 2.5rem
  }
}
.hero .content .lead {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%)
}
.hero .cta-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem
}
@media (max-width:576px) {
  .hero .cta-buttons {
    flex-direction: column
  }
}
.hero .cta-buttons .btn {
  padding: .8rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 50px;
  transition: all 0.3s ease
}
.hero .cta-buttons .btn.btn-primary, .btn.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color)
}
.hero .cta-buttons .btn.btn-primary:hover, .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px)
}
.hero .cta-buttons .btn.btn-outline {
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  color: var(--accent-color);
  background: #fff0
}
.hero .cta-buttons .btn.btn-outline:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px)
}
.hero .hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 2rem
}
@media (max-width:576px) {
  .hero .hero-stats {
    flex-direction: column;
    gap: 1.5rem
  }
}
.hero .hero-stats .stat-item .stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1
}
.hero .hero-stats .stat-item .stat-label {
  font-size: 14px;
  margin-top: 10px;
  display: block;
}
.hero .hero-image {
  position: relative;
  padding: 2rem
}
.hero .hero-image img {
  position: relative;
  z-index: 2
}
.hero .hero-image .shape-1, .hero .hero-image .shape-2 {
  position: absolute;
  border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
  z-index: 1
}
.hero .hero-image .shape-1 {
  width: 300px;
  height: 300px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  top: -20px;
  right: -20px;
  animation: morphShape 15s linear infinite
}
.hero .hero-image .shape-2 {
  width: 200px;
  height: 200px;
  background-color: color-mix(in srgb, var(--heading-color), transparent 90%);
  bottom: -20px;
  left: -20px;
  animation: morphShape 20s linear infinite reverse
}
@media (max-width:991px) {
  .hero {
    text-align: center;
    padding: 60px 0
  }
  .hero .cta-buttons {
    justify-content: center
  }
  .hero .hero-stats {
    justify-content: center
  }
  .hero .hero-image {
    margin-top: 3rem
  }
}
@keyframes morphShape {
  0% {
    border-radius: 30% 70% 70% 30%/30% 30% 70% 70%
  }
  25% {
    border-radius: 58% 42% 75% 25%/76% 46% 54% 24%
  }
  50% {
    border-radius: 50% 50% 33% 67%/55% 27% 73% 45%
  }
  75% {
    border-radius: 33% 67% 58% 42%/63% 68% 32% 37%
  }
  100% {
    border-radius: 30% 70% 70% 30%/30% 30% 70% 70%
  }
}
.about .about-image {
  position: relative
}
.about .about-image img {
  box-shadow: 0 0 30px rgb(0 0 0 / .1)
}
.about .about-content {
  padding-left: 2rem
}
@media (max-width:991.98px) {
  .about .about-content {
    padding-left: 0;
    margin-top: 3rem
  }
}
.about .about-content .subtitle {
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--accent-color);
  margin-bottom: 1rem;
  display: block
}
.about .about-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem
}
.about .about-content .lead {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%)
}
.about .personal-info {
  margin-top: 2rem;
  padding: 2rem;
  background-color: var(--surface-color);
  border-radius: 1rem;
  box-shadow: 0 0 30px rgb(0 0 0 / .05)
}
.about .personal-info .info-item {
  display: flex;
  flex-direction: column;
  gap: .5rem
}
.about .personal-info .info-item .label {
  font-size: .875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%)
}
.about .personal-info .info-item .value {
  font-weight: 600;
  color: var(--heading-color)
}
.about .signature {
  display: flex;
  align-items: center;
  gap: 1.5rem
}
.about .signature .signature-image {
  max-width: 150px
}
.about .signature .signature-info h4 {
  font-size: 1.25rem;
  margin-bottom: .25rem
}
.about .signature .signature-info p {
  font-size: .875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0
}
.skills .skill-box {
  background-color: var(--surface-color);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 0 20px rgb(0 0 0 / .05)
}
.skills .skill-box h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600
}
.skills .skill-box p {
  font-size: .9rem;
  margin-bottom: .8rem;
  opacity: .6
}
.skills .skill-box .progress {
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 50px;
  height: 8px;
  margin-top: 5px;
  overflow: hidden
}
.skills .skill-box .progress .progress-bar {
  background-color: var(--accent-color);
  height: 100%;
  position: relative;
  border-radius: 50px;
  transition: 0.9s;
  width: 1px
}
.resume .resume-wrapper .resume-block {
  margin-bottom: 3rem
}
.resume .resume-wrapper .resume-block:last-child {
  margin-bottom: 0
}
.resume .resume-wrapper .resume-block h2 {
  font-size: 2rem;
  margin-bottom: .8rem;
  font-weight: 700
}
.resume .resume-wrapper .resume-block h2 span {
  color: var(--accent-color)
}
.resume .resume-wrapper .resume-block .lead {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 3rem
}
.resume .resume-wrapper .timeline {
  position: relative
}
.resume .resume-wrapper .timeline::before {
  content: "";
  position: absolute;
  left: 20%;
  top: 0;
  height: 100%;
  width: 2px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%)
}
.resume .resume-wrapper .timeline .timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2.5rem;
  position: relative
}
.resume .resume-wrapper .timeline .timeline-item:last-child {
  margin-bottom: 0
}
.resume .resume-wrapper .timeline .timeline-item .timeline-left {
  width: 20%;
  padding-right: 3rem
}
.resume .resume-wrapper .timeline .timeline-item .timeline-left .company {
  color: var(--heading-color);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: .25rem
}
.resume .resume-wrapper .timeline .timeline-item .timeline-left .period {
  color: var(--accent-color);
  font-size: .9rem
}
.resume .resume-wrapper .timeline .timeline-item .timeline-dot {
  position: absolute;
  left: calc(20% + 1px);
  transform: translateX(-50%);
  width: 1rem;
  height: 1rem;
  background-color: var(--accent-color);
  border-radius: 50%
}
.resume .resume-wrapper .timeline .timeline-item .timeline-right {
  width: 70%;
  padding-left: 3rem;
  margin-top: -4px
}
.resume .resume-wrapper .timeline .timeline-item .timeline-right .position {
  color: var(--heading-color);
  font-size: 1.2rem;
  margin-bottom: .6rem;
  font-weight: 600
}
.resume .resume-wrapper .timeline .timeline-item .timeline-right .description {
  color: color-mix(in srgb, var(--default-color), transparent 25%)
}
.resume .resume-wrapper .timeline .timeline-item .timeline-right ul {
  padding-left: 15px
}
.resume .resume-wrapper .timeline .timeline-item .timeline-right ul li {
  padding-bottom: 12px
}
@media (max-width:992px) {
  .resume .resume-wrapper .resume-block h2 {
    font-size: 2rem
  }
  .resume .resume-wrapper .timeline::before {
    left: 1rem
  }
  .resume .resume-wrapper .timeline .timeline-item {
    flex-direction: column;
    margin-bottom: 20px
  }
  .resume .resume-wrapper .timeline .timeline-item .timeline-left {
    width: 100%;
    text-align: left;
    padding-right: 0;
    padding-left: 2.5rem;
    margin-bottom: 1.6rem;
    margin-top: -4px
  }
  .resume .resume-wrapper .timeline .timeline-item .timeline-dot {
    left: calc(1rem + 1px)
  }
  .resume .resume-wrapper .timeline .timeline-item .timeline-right {
    width: 100%;
    padding-left: 2.5rem
  }
}
.portfolio .portfolio-filters-container {
  margin-bottom: 40px
}
.portfolio .portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none
}
.portfolio .portfolio-filters li {
  font-size: 15px;
  font-weight: 500;
  padding: 8px 20px;
  cursor: pointer;
  border-radius: 30px;
  background-color: color-mix(in srgb, var(--surface-color), transparent 50%);
  color: var(--default-color);
  transition: all 0.3s ease-in-out
}
.portfolio .portfolio-filters li:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  transform: translateY(-2px)
}
.portfolio .portfolio-filters li.filter-active {
  background-color: var(--accent-color);
  color: var(--contrast-color)
}
.portfolio .portfolio-card {
  background-color: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgb(0 0 0 / .05);
  transition: all 0.3s ease-in-out
}
.portfolio .portfolio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 35px rgb(0 0 0 / .1)
}
.portfolio .portfolio-card:hover .portfolio-overlay {
  opacity: 1;
  visibility: visible
}
.portfolio .portfolio-card:hover .portfolio-overlay .portfolio-actions {
  transform: translateY(0)
}
.portfolio .portfolio-card .portfolio-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10
}
.portfolio .portfolio-card .portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease-in-out
}
.portfolio .portfolio-card .portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgb(0 0 0 / .7), transparent);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  display: flex;
  align-items: flex-end;
  padding: 20px
}
.portfolio .portfolio-card .portfolio-overlay .portfolio-actions {
  transform: translateY(0px);
  transition: all 0.4s ease-in-out;
  display: flex;
  gap: 15px
}
.portfolio .portfolio-card .portfolio-overlay .portfolio-actions a {
  width: 45px;
  height: 45px;
  background-color: var(--surface-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 20px;
  transition: all 0.3s ease
}
.portfolio .portfolio-card .portfolio-overlay .portfolio-actions a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.1)
}
.portfolio .portfolio-card .portfolio-content {
  padding: 10px
}
.portfolio .portfolio-card .portfolio-content .category {
  font-size: 12px;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 0px;
  font-weight: 500;
  display: block;
  margin-bottom: 10px
}
.portfolio .portfolio-card .portfolio-content h3 {
  font-size: 16px;
  margin: 0;
  font-weight: 600;
  transition: color 0.3s ease
}
.portfolio .portfolio-card .portfolio-content h3:hover {
  color: var(--accent-color)
}
.portfolio .portfolio-card .portfolio-content p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
  line-height: 1.6
}
@media (max-width:768px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    padding: 6px 15px
  }
  .portfolio .portfolio-card .portfolio-content {
    padding: 10px
  }
  .portfolio .portfolio-card .portfolio-content h3 {
    font-size: 18px
  }
  .portfolio .portfolio-card .portfolio-content p {
    font-size: 14px
  }
}
.portfolio-theme-demo .portfolio-card .portfolio-overlay .portfolio-actions a {
  width: max-content;
  height: auto;
  background-color: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 20px;
  transition: all 0.3s ease
}
.portfolio-theme-demo .portfolio-card .portfolio-overlay .portfolio-actions a:hover {
  background-color: transparent;
  color: var(--contrast-color);
  transform: scale(1);
}
.testimonials .testimonials-slider {
  width: 100%;
  position: relative;
  padding-bottom: 60px;
  max-width: 800px;
}
.testimonials .swiper-wrapper {
  height: auto
}
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  padding: 40px;
  border-radius: 20px
}
@media (max-width:575px) {
  .testimonials .testimonial-item {
    padding: 20px
  }
}
.testimonials .testimonial-item h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px
}
.testimonials .testimonial-item p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
  font-style: italic
}
.testimonials .testimonial-item .profile {
  gap: 15px
}
.testimonials .testimonial-item .profile .profile-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover
}
.testimonials .testimonial-item .profile .profile-info h3 {
  font-size: 18px;
  margin: 0;
  font-weight: 600
}
.testimonials .testimonial-item .profile .profile-info span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color) 70%, transparent)
}
.testimonials .testimonial-item .featured-img-wrapper {
  min-height: 400px;
  position: relative;
  overflow: hidden;
  border-radius: 16px
}
.testimonials .testimonial-item .featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0
}
.testimonials .swiper-navigation {
  position: absolute;
  bottom: 0;
  gap: 10px
}
.testimonials .swiper-button-prev, .testimonials .swiper-button-next {
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  margin: 0;
  width: 44px;
  height: 44px;
  background-color: var(--surface-color);
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
  transition: 0.3s
}
.testimonials .swiper-button-prev::after, .testimonials .swiper-button-next::after {
  font-size: 20px;
  color: var(--default-color)
}
.testimonials .swiper-button-prev:hover, .testimonials .swiper-button-next:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color)
}
.testimonials .swiper-button-prev:hover::after, .testimonials .swiper-button-next:hover::after {
  color: var(--contrast-color)
}
.services {
  padding: 80px 0
}
.services .servies-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem
}
.services .btn-outline-primary {
  color: var(--accent-color);
  border-color: var(--accent-color);
  padding: 10px 30px;
  border-radius: 50px;
  transition: all 0.3s ease
}
.services .btn-outline-primary:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color)
}
.services .service-item {
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgb(0 0 0 / .1);
  height: 100%;
  transition: transform 0.3s ease
}
.services .service-item:hover {
  transform: scale(1.05)
}
.services .service-item i {
  font-size: 2.5rem;
  color: var(--accent-color);
  display: inline-block;
  margin-bottom: 15px
}
.services .service-item h3 {
  font-size: 1.25rem;
  margin-bottom: 15px
}
.services .service-item h3 a {
  color: var(--heading-color)
}
.services .service-item h3 a:hover {
  color: var(--accent-color)
}
.services .service-item p {
  font-size: .9rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%)
}
@media (max-width:991px) {
  .services h2 {
    font-size: 2rem
  }
}
.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 5px;
  overflow: hidden
}
.faq .faq-container .faq-item:last-child {
  margin-bottom: 0
}
.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center
}
.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color)
}
.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer
}
.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color)
}
.faq .faq-container .faq-item .faq-content {
  overflow: hidden;
  height: 0;
  opacity: 0;
  visibility: hidden;
  transition: height 0.4s ease, opacity 0.4s ease;
  padding-top: 0
}
.faq .faq-container .faq-active .faq-content {
  opacity: 1;
  visibility: visible;
  padding-top: 10px
}
.faq .faq-container .faq-active {
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%)
}
.faq .faq-container .faq-active h3 {
  color: var(--accent-color)
}
.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color)
}
.faq .faq-container .faq-item ul {
  padding-left: 1.2rem;
  margin: 0
}
.contact .section-category {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: 1px
}
.contact .content h2 {
  font-weight: 700;
  line-height: 1.2
}
.contact .content .lead {
  color: color-mix(in srgb, var(--default-color), transparent 25%)
}
.contact .contact-info .info-item {
  font-size: 1.1rem
}
.contact .contact-info .info-item i {
  color: var(--accent-color);
  font-size: 1.4rem
}
.contact .contact-info .map-link {
  color: var(--heading-color);
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.3s ease
}
.contact .contact-info .map-link i {
  transition: transform 0.3s ease
}
.contact .contact-info .map-link:hover {
  color: var(--accent-color)
}
.contact .contact-info .map-link:hover i {
  transform: translateX(5px)
}
.contact .contact-form {
  background-color: var(--surface-color);
  border: none;
  box-shadow: 0 5px 25px rgb(0 0 0 / .05);
  border-radius: 12px
}
.contact .contact-form .form-control, .contact .contact-form .form-select {
  padding: .75rem 1.25rem;
  border-color: #e5e5e5;
  border-radius: 8px;
  font-size: 1rem
}
.contact .contact-form .form-control:focus, .contact .contact-form .form-select:focus {
  border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
  box-shadow: 0 0 0 .25rem color-mix(in srgb, var(--accent-color), transparent 90%)
}
.contact .contact-form .form-control::placeholder, .contact .contact-form .form-select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%)
}
.contact .contact-form .btn-submit {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: .75rem 2rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease
}
.contact .contact-form .btn-submit:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-1px)
}
.contact .contact-form .btn-submit:active {
  transform: translateY(0)
}
.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative
}
.portfolio-details .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0
}
.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px
}
.portfolio-details .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px
}
.portfolio-details .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px
}
.portfolio-details .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  transition: 0.3s
}
.portfolio-details .portfolio-info .btn-visit:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%)
}
.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px
}
.portfolio-details .portfolio-description p {
  padding: 0
}
.portfolio-details .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  margin-bottom: 50px
}
.portfolio-details .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0
}
.portfolio-details .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 15px 0 5px 0;
  padding-top: 20px
}
.portfolio-details .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0
}
.portfolio-details .portfolio-description .testimonial-item .quote-icon-left, .portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0
}
.portfolio-details .portfolio-description .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative
}
.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1)
}
.portfolio-details .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0
}
.service-details .service-details-slider {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  z-index: 1
}
.service-details .service-details-slider .swiper-wrapper {
  height: auto !important
}
.service-details .service-details-slider .swiper-pagination {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  z-index: 2
}
.service-details .service-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: var(--contrast-color);
  opacity: .5;
  transition: 0.3s
}
.service-details .service-details-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  width: 20px;
  border-radius: 5px
}
.service-details .content h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px
}
.service-details .content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 15px
}
.service-details .content .features .feature-box {
  padding: 20px;
  background: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 0 20px rgb(0 0 0 / .05);
  height: 100%;
  transition: 0.3s
}
.service-details .content .features .feature-box:hover {
  transform: translateY(-5px)
}
.service-details .content .features .feature-box i {
  font-size: 24px;
  color: var(--accent-color);
  margin-right: 15px
}
.service-details .content .features .feature-box h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0
}
.service-details .service-info {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgb(0 0 0 / .05)
}
.service-details .service-info h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid color-mix(in srgb, var(--accent-color), transparent 85%)
}
.service-details .service-info .info-item {
  margin-bottom: 25px
}
.service-details .service-info .info-item:last-child {
  margin-bottom: 0
}
.service-details .service-info .info-item i {
  font-size: 24px;
  color: var(--accent-color);
  margin-bottom: 10px
}
.service-details .service-info .info-item h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px
}
.service-details .service-info .info-item p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0
}
.service-details .related-services {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgb(0 0 0 / .05)
}
.service-details .related-services h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid color-mix(in srgb, var(--accent-color), transparent 85%)
}
.service-details .related-services .service-item {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%)
}
.service-details .related-services .service-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none
}
.service-details .related-services .service-item i {
  font-size: 24px;
  color: var(--accent-color);
  margin-bottom: 10px
}
.service-details .related-services .service-item h5 {
  font-size: 18px;
  margin-bottom: 10px
}
.service-details .related-services .service-item h5 a {
  color: var(--heading-color);
  transition: 0.3s
}
.service-details .related-services .service-item h5 a:hover {
  color: var(--accent-color)
}
.service-details .related-services .service-item p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
  font-size: 14px
}
@media (max-width:991px) {
  .service-details .service-info, .service-details .related-services {
    margin-top: 30px
  }
}
/*GASP Cursor Animation*/
.cursor-gsap {
  position: fixed;
  width: 40px;
  height: 40px;
  margin-left: -20px;
  margin-top: -20px;
  border-radius: 50%;
  border: 2px solid #800000;
  transition: 0.3s;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1000;
}
.cursor-gsap2 {
  position: fixed;
  width: 4px;
  height: 4px;
  margin-left: -20px;
  margin-top: -20px;
  border-radius: 50%;
  background-color: #fff;
  transform: translate(-50%, -50%);
  transition: 0.1s;
  pointer-events: none;
  z-index: 1000;
}
.grow, .grow-small {
  transform: scale(4);
  background: white;
  mix-blend-mode: difference;
  border: none;
}
.grow-small {
  transform: scale(2);
}
.theme-demo-title {
  padding-top: 210px;
}
.demo-counter-text {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: -1;
}
.text-faded-big {
  font-size: 400px;
  font-weight: 800;
  margin-bottom: 10px;
  text-transform: uppercase;
  line-height: 250px;
  background-size: 200% 100%;
  background-image: linear-gradient(180deg, #cacaca 0%, #ffffff 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
  text-align: center;
  justify-content: center;
  display: flex;
}
@media (max-width:991px) {
  .text-faded-big {
    font-size: 100px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 150px;
  }
}
@media (max-width:768px) {
  .text-faded-big {
    font-size: 100px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 100px;
  }
  .theme-demo-title {
    padding-top: 70px;
  }
}
@media (max-width:450px) {
  .text-faded-big {
    font-size: 100px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 100px;
  }
  .theme-demo-title {
    padding-top: 70px;
  }
}
.faq {
  display: flex;
  align-items: center;
  margin: 0 auto;
  flex-direction: row;
}
.portfolio-theme-demo .btn {
  padding: 5px 10px;
}
@media (max-width:768px) {
  .portfolio-theme-demo .btn {
    padding: 5px 10px;
  }
  .faq {
    flex-direction: column;
  }
}
.hero-subtitle-dark {
  padding: 6px 10px;
  font-size: 12px !important;
  font-weight: 600;
  line-height: 1;
  border-radius: 80px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.6);
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  margin-bottom: 20px !important;
  display: inline-block;
}
@keyframes gradient_animate {
  0% {
    background-position: 0%;
  }
  100% {
    background-position: 400%;
  }
}
.animated-marquee-sec {
  padding: 0;
}
.responsive-icons svg {
  fill: #000000;
  width: 100px;
  height: auto;
}
.responsive-icons {
  gap: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-content-feature {
  padding: 40px 20px;
  /* min-height: 150px; */
  min-width: 200px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(29, 29, 31, 0.1);
  backdrop-filter: blur(10px);
  /* aspect-ratio: 4 / 3; */
  transition: border 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 0;
}
/* Glow on hover */
.hero-content-feature:hover, .hero-stats {
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow:
    0 0 12px rgba(255, 181, 56, 0.5), 0 0 25px rgba(118, 17, 59, 0.5);
}

.stat-number {
  background: linear-gradient(90deg, #ff6a00, #ee0979, #ff6a00);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
  font-size: 40px;
  line-height: 50px;
  font-family: var(--font-secondary);
  animation: gradient_animate 10s linear infinite;
  -webkit-text-fill-color: transparent;
  background-size: 400%;
  transition: all 0.5s ease-in-out 0s;
}
.woo-text {
  background: linear-gradient(90deg, #7B51AD, #905F8E, #7B51AD);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradient_animate 10s linear infinite;
  -webkit-text-fill-color: transparent;
  background-size: 400%;
  transition: all 0.5s ease-in-out 0s;
}
.elementor-text {
  background: linear-gradient(135deg, #E2395C, #542C6C, #E2395C);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradient_animate 10s linear infinite;
  -webkit-text-fill-color: transparent;
  background-size: 400%;
  transition: all 0.5s ease-in-out 0s;
}
.dark-light-text {
  background: linear-gradient(90deg, #000000, #ffffff, #000000);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradient_animate 10s linear infinite;
  -webkit-text-fill-color: transparent;
  background-size: 400%;
  transition: all 0.5s ease-in-out 0s;
}
.updates-text {
  background: linear-gradient(90deg, #32A350, #0D622C, #32A350);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradient_animate 10s linear infinite;
  -webkit-text-fill-color: transparent;
  background-size: 400%;
  transition: all 0.5s ease-in-out 0s;
}
.typography-text {
  background: linear-gradient(90deg, #E34133 0%, #F3B604 25%, #F7F7F7 50%, #196FE1 75%, #E34133 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradient_animate 10s linear infinite;
  -webkit-text-fill-color: transparent;
  background-size: 400%;
  transition: all 0.5s ease-in-out 0s;
}
.demo-gradient-text {
  background: linear-gradient(180deg, #3F4041 0%, #000000 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.hero-content-feature1 {
  left: 10%;
  top: 20%;
}
.hero-content-feature2 {
  left: 5%;
  top: 40%;
}
.hero-content-feature3 {
  right: 5%;
  top: 40%;
}
.hero-content-feature4 {
  right: 10%;
  top: 20%;
}
.hero-content-feature5 {
  left: 10%;
  top: 60%;
}
.hero-content-feature6 {
  right: 10%;
  top: 60%;
}
.stat-label {
  color: #FFFFFF;
} /*Animations*/
@keyframes floatUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px); /* Move up */
  }
  100% {
    transform: translateY(0); /* Back to original */
  }
}
.float-animation {
  animation: floatUpDown 3s ease-in-out infinite;
}
@media (max-width:768px) {
  .responsive-icons svg {
    width: 40px;
  }
}
.hero-section {
  position: relative;
}
.color-odd {
  background: #111111;
}
.img-wrap {
  position: relative;
  display: inline-block;
}
.img-wrap::before {
  content: "";
  position: absolute;
  inset: -20px;
  border-radius: 20px; /* match your PNG shape if needed */
  background: radial-gradient(circle, rgba(3, 33, 199, 0.4), transparent 70%);
  filter: blur(30px);
  z-index: 0;
  animation: glowPulse 3s ease-in-out infinite;
}
.img-wrap img {
  position: relative;
  z-index: 1;
  display: block;
}
@keyframes glowPulse {
  0% {
    opacity: 0.3;
    filter: blur(20px);
  }
  50% {
    opacity: 1;
    filter: blur(35px);
  }
  100% {
    opacity: 0.3;
    filter: blur(20px);
  }
}
.elementor-features {
  gap: 10px;
  display: flex;
  align-items: center;
  text-align: start;
}
.install-wrapper {
  gap: 20px;
}
.install-content {
  gap: 10px;
}
.installation-section {
  border-radius: 20px;
  padding: 50px;
  background: linear-gradient(90deg, #331918, #54312F, #331918);
  animation: gradient_animate 10s linear infinite;
  background-size: 400%;
  transition: all 0.5s ease-in-out 0s;
}
.elementor-section {
  border-radius: 20px;
  padding: 50px;
  background: linear-gradient(90deg, #D82B59, #2D2265, #D82B59);
  animation: gradient_animate 10s linear infinite;
  background-size: 400%;
  transition: all 0.5s ease-in-out 0s;
}
.woocommerce-section {
  border-radius: 20px;
  padding: 50px;
  background: linear-gradient(90deg, #96598B, #7B51AD, #96598B);
  animation: gradient_animate 10s linear infinite;
  background-size: 400%;
  transition: all 0.5s ease-in-out 0s;
}
.cta-section {
  border-radius: 20px;
  padding: 50px;
  background: linear-gradient(90deg, #111111, #000000, #111111);
  animation: gradient_animate 10s linear infinite;
  background-size: 400%;
  transition: all 0.5s ease-in-out 0s;
}
.shopify-section {
  border-radius: 20px;
  padding: 50px;
  background: linear-gradient(90deg, #5A8B37, #8FBB3B, #5A8B37);
  animation: gradient_animate 10s linear infinite;
  background-size: 400%;
  transition: all 0.5s ease-in-out 0s;
}
.horizon-section {
  border-radius: 20px;
  padding: 50px;
  background: linear-gradient(90deg, #C448BF, #7D44C2, #C448BF);
  animation: gradient_animate 10s linear infinite;
  background-size: 400%;
  transition: all 0.5s ease-in-out 0s;
}
.lighthouse-performance-section {
  border-radius: 20px;
  padding: 50px;
  background: linear-gradient(90deg, #002AC9, #005FF6, #002AC9);
  animation: gradient_animate 10s linear infinite;
  background-size: 400%;
  transition: all 0.5s ease-in-out 0s;
}
@media (max-width:768px) {
  nav.navbar {
    backdrop-filter: inherit;
  }
  .nav-link {
    font-size: 14px;
  }
}
.offer-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(45deg, var(--card-glow), transparent 40%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.offer-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(var(--color-accent-rgb), 0.1);
}
.offer-item:hover::before {
  opacity: 1;
}
.offer-item img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, var(--card-glow), transparent 70%);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% {
    transform: scale(0.95);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
  100% {
    transform: scale(0.95);
    opacity: 0.5;
  }
}
.button-wiggle {
  -webkit-animation: wiggle 4s 2s infinite;
  animation: wiggle 4s 2s infinite;
}
@-webkit-keyframes wiggle {
  5%, 50% {
    transform: scale(1);
  }
  10% {
    transform: scale(0.9);
  }
  15% {
    transform: scale(1.15);
  }
  20% {
    transform: scale(1.15) rotate(-5deg);
  }
  25% {
    transform: scale(1.15) rotate(5deg);
  }
  30% {
    transform: scale(1.15) rotate(-3deg);
  }
  35% {
    transform: scale(1.15) rotate(2deg);
  }
  40% {
    transform: scale(1.15) rotate(0);
  }
}
@keyframes wiggle {
  5%, 50% {
    transform: scale(1);
  }
  10% {
    transform: scale(0.9);
  }
  15% {
    transform: scale(1.15);
  }
  20% {
    transform: scale(1.15) rotate(-5deg);
  }
  25% {
    transform: scale(1.15) rotate(5deg);
  }
  30% {
    transform: scale(1.15) rotate(-3deg);
  }
  35% {
    transform: scale(1.15) rotate(2deg);
  }
  40% {
    transform: scale(1.15) rotate(0);
  }
}
.button-pulse {
  -webkit-animation: pulse 2s infinite 3s cubic-bezier(0.25, 0, 0, 1);
  animation: pulse 2s infinite 3s cubic-bezier(0.25, 0, 0, 1);
  box-shadow: 0 0 0 0 white;
}
@-webkit-keyframes pulse {
  to {
    box-shadow: 0 0 0 18px rgba(255, 255, 255, 0);
  }
}
@keyframes pulse {
  to {
    box-shadow: 0 0 0 18px rgba(255, 255, 255, 0);
  }
}
.button-float {
  -webkit-animation: float 1.5s linear alternate infinite;
  animation: float 1.5s linear alternate infinite;
}
@-webkit-keyframes float {
  50% {
    transform: translateY(-px);
  }
  100% {
    transform: translateY(-18px);
  }
}
@keyframes float {
  50% {
    transform: translateY(-px);
  }
  100% {
    transform: translateY(-18px);
  }
}
.particletext {
  position: relative;
  color: transparent;
  font-weight: 800;
  background-color: #1e80db !important;
  background-position: 50% 50%;
  background: url("images/particles.png") repeat-y;
  -webkit-background-clip: text;
  animation: slide 2s linear infinite;
}
@keyframes slide {
  0% {
    background-position: 50% 50%;
  }
  100% {
    background-position: 60% 100%;
  }
}
:root {
  /*--shiny-cta-bg: #000000;
  --shiny-cta-bg-subtle: #1a1818;
  --shiny-cta-fg: #ffffff;
  --shiny-cta-highlight: #53170C;
  --shiny-cta-highlight-subtle: #8484ff;*/
}
@property --gradient-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
@property --gradient-angle-offset {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
@property --gradient-percent {
  syntax: "<percentage>";
  initial-value: 5%;
  inherits: false;
}
@property --gradient-shine {
  syntax: "<color>";
  initial-value: white;
  inherits: false;
}
.shiny-cta {
  --animation: gradient-angle linear infinite;
  --duration: 3s;
  --shadow-size: 2px;
  isolation: isolate;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  outline-offset: 4px;
  padding: 15px 30px;
  font-family: inherit;
  font-size: 1.125rem;
  line-height: 1.2;
  border: 1px solid transparent;
  border-radius: 360px;
  color: var(--shiny-cta-fg);
  background: linear-gradient(var(--shiny-cta-bg), var(--shiny-cta-bg)) padding-box, conic-gradient(from calc(var(--gradient-angle) - var(--gradient-angle-offset)), transparent, var(--shiny-cta-highlight) var(--gradient-percent), var(--gradient-shine) calc(var(--gradient-percent) * 2), var(--shiny-cta-highlight) calc(var(--gradient-percent) * 3), transparent calc(var(--gradient-percent) * 4)) border-box;
  box-shadow: inset 0 0 0 1px var(--shiny-cta-bg-subtle);
  &::before, &::after, span::before {
    content: "";
    pointer-events: none;
    position: absolute;
    inset-inline-start: 50%;
    inset-block-start: 50%;
    translate: -50% -50%;
    z-index: -1;
  }
  &:active {
    translate: 0 1px;
  }
}
/* Dots pattern */
.shiny-cta::before {
  --size: calc(100% - var(--shadow-size) * 3);
  --position: 2px;
  --space: calc(var(--position) * 2);
  width: var(--size);
  height: var(--size);
  background: radial-gradient(circle at var(--position) var(--position), white calc(var(--position) / 4), transparent 0) padding-box;
  background-size: var(--space) var(--space);
  background-repeat: space;
  mask-image: conic-gradient(from calc(var(--gradient-angle) + 45deg), black, transparent 10% 90%, black);
  border-radius: inherit;
  opacity: 0.4;
  z-index: -1;
}
/* Inner shimmer */
.shiny-cta::after {
  --animation: shimmer linear infinite;
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(-50deg, transparent, var(--shiny-cta-highlight), transparent);
  mask-image: radial-gradient(circle at bottom, transparent 40%, black);
  opacity: 0.6;
}
.shiny-cta span {
  z-index: 1;
  &::before {
    --size: calc(100% + 1rem);
    width: var(--size);
    height: var(--size);
    box-shadow: inset 0 -1ex 2rem 4px var(--shiny-cta-highlight);
    opacity: 0;
  }
}
/* Animate */
.shiny-cta {
  --transition: 800ms cubic-bezier(0.25, 1, 0.5, 1);
  transition: var(--transition);
  transition-property: --gradient-angle-offset, --gradient-percent, --gradient-shine;
  &, &::before, &::after {
    animation: var(--animation) var(--duration), var(--animation) calc(var(--duration) / 0.4) reverse paused;
    animation-composition: add;
  }
  span::before {
    transition: opacity var(--transition);
    animation: calc(var(--duration) * 1.5) breathe linear infinite;
  }
}
.shiny-cta:is(:hover, :focus-visible) {
  --gradient-percent: 20%;
  --gradient-angle-offset: 95deg;
  --gradient-shine: var(--shiny-cta-highlight-subtle);
  &, &::before, &::after {
    animation-play-state: running;
  }
  span::before {
    opacity: 1;
  }
}
@keyframes gradient-angle {
  to {
    --gradient-angle: 360deg;
  }
}
@keyframes shimmer {
  to {
    rotate: 360deg;
  }
}
@keyframes breathe {
  from, to {
    scale: 1;
  }
  50% {
    scale: 1.2;
  }
}
.woocommerce-integration-inner.section, .elementor-section-inner.section, .shopify-integration-inner.section, .horizon-section-inner.section, .lighthouse-performance-section-inner.section {
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media (max-width:768px) {
  .woocommerce-integration-inner.section, .elementor-section-inner.section, .shopify-integration-inner.section, .horizon-section-inner.section, .lighthouse-performance-section-inner.section {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.installation-section-inner .section-title h2, .woocommerce-integration-inner .section-title h2, .elementor-section-inner .section-title h2, .cta-purchase .section-title h2, .shopify-integration-inner .section-title h2, .horizon-section-inner .section-title h2, .lighthouse-performance-section-inner .section-title h2 {
  position: relative;
  display: block;
  width: 100%;
  font-size: 30px;
  text-transform: uppercase;
  line-height: 40px;
  font-weight: 800;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #ffffff, #ffffff, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradient_animate 10s linear infinite;
  -webkit-text-fill-color: transparent;
  background-size: 400%;
  transition: all 0.5s ease-in-out 0s;
}
.installation-section-inner, .woocommerce-integration-inner, .elementor-section-inner, .cta-purchase, .shopify-integration-inner, .horizon-section-inner.section, .lighthouse-performance-section-inner.section {
  background: transparent;
  color: #FFFFFF;
}
.installation-section-inner p, .woocommerce-integration-inner p, .elementor-section-inner p, .cta-purchase p, .shopify-integration-inner p, .horizon-section-inner p, .lighthouse-performance-section-inner p {
  color: #FFFFFF;
}
.installation-section-inner, .woocommerce-integration-inner, .elementor-section-inner, .cta-purchase, .shopify-integration-inner, .horizon-section-inner.section, .lighthouse-performance-section-inner.section {
  padding: 0 !important;
}
@media (max-width:768px) {
  .installation-section, .elementor-section, .woocommerce-section, .cta-section, .shopify-section, .horizon-section, .lighthouse-performance-section {
    padding: 10px;
  }
  .header {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: none;
    padding-left: 0px;
  }
  .header .header-container {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px 5px 10px 15px;
    gap: 20px;
  }
  .shopify-logo {
    width: 100px;
  }
}
.shopify-logo {
  top: 20%;
  width: 150px;
  right: 5%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 200px;
  padding: 10px;
  backdrop-filter: blur(8px);
}