/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  font-family: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

a {
  color: #000000;
  text-decoration: none;
  transition: 0.3s;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #292929;
  font-family: "Lato", sans-serif;
}

.white {
  color: #ffffff !important;
}

.black {
  color: #000000 !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

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

.php-email-form .sent-message {
  display: none;
  color: #111111;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: #ffffff;
  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 #ff0080;
  border-top-color: #ffffff;
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 997;
}

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

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

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: #292929;
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .header-right {
    order: 2;
  }

  .header .navmenu {
    order: 3;
  }
}

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

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@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>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

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

  .navmenu a,
  .navmenu a:focus {
    color: #000000;
    font-size: 15px;
    padding: 0 2px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

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

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: #ff0080;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #ff0080;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: #ffffff;
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 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: #dddddd;
  }

  .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: #dddddd;
  }

  .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;
  }
}


.header-right {
  padding-right: 15px;
}

.header-right a {
  color: #000000;
  padding-left: 6px;
  display: inline-block;
  transition: 0.3s;
  font-size: 16px;
  font-weight: 400;
}

.header-right a:hover {
  color: #ff0080;
}

.header-right a i {
  line-height: 0px;
}

.header-right .btn-free {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  transition: color 0.3s ease;
  border-radius: 10px;
  padding: 8px 20px;
  background: #ff0080;
}

.header-right .btn-free i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.header-right .btn-free:hover {
  color: #ffffff;
  background: color-mix(in srgb, #ff0080, transparent 15%);
}

.header-right .btn-free:hover i {
  background: color-mix(in srgb, #ff0080, transparent 85%);
  color: #ffffff;
}


/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: #000000;
    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: #ffffff;
    border: 1px solid color-mix(in srgb, #111111, transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #ff01a2;
    padding: 10px 20px;
    font-family: "Poppins", sans-serif;
    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, #ff0080, transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: #ff0080;
    color: #ffffff;
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: #ffffff;
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: #ff0080;
    color: #ffffff;
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: #ffffff;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.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: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

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

.breadcrumb {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #ffffff;
  font-size: 12px;
  display: block;
  text-align: right;
  padding: 10px 2px 10px 2px;
}

.breadcrumb li:first-child a:before {
  font-family: FontAwesome;
  content: '\f015';
  font-weight: normal;
  color: #fb7bbb;
  padding-right: 5px;
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  background: url(../img/footer/cover1.png) no-repeat center fixed;
  background-position: -65px 265px;
  box-shadow: 0px 0px 5px 0px rgba(146, 146, 146, 0.1);
  padding: 50px 0px 0px 0px;
  margin-top: 50px;

  color: #000000;
  font-size: 14px;
  padding: 80px 0 0;
  position: relative;
  border-top: 1px solid color-mix(in srgb, #fcfcfc, transparent 85%);
}

.footer .footer-content .logo {
  line-height: 1;
}

.footer .footer-content .logo span {
  color: #292929;
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-family: "Lato", sans-serif;
}

.footer .footer-content p {
  font-size: 13px;
  line-height: 1.6;
  color: color-mix(in srgb, #6c6c6c, transparent 15%);
}

.footer .newsletter-form {
  margin-top: 30px;
}

.footer .newsletter-form h5 {
  color: #292929;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  font-family: "Lato", sans-serif;
}

.footer .newsletter-form .input-group {
  position: relative;
  display: flex;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 2px 10px color-mix(in srgb, #111111, transparent 90%);
}

.footer .newsletter-form input[type=email] {
  flex: 1;
  padding: 12px 20px;
  border: none;
  background-color: #ffffff;
  color: #ffffff;
  font-size: 14px;
}

.footer .newsletter-form input[type=email]:focus {
  outline: none;
  box-shadow: none;
}

.footer .newsletter-form input[type=email]::placeholder {
  color: color-mix(in srgb, #111111, transparent 60%);
}

.footer .newsletter-form .btn-subscribe {
  background-color: #ff0080;
  color: #ffffff;
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  transition: 0.3s;
}

.footer .newsletter-form .btn-subscribe:hover {
  background-color: color-mix(in srgb, #ff0080, black 10%);
}

.footer .newsletter-form .btn-subscribe i {
  font-size: 16px;
}

.footer .newsletter-form .loading,
.footer .newsletter-form .error-message,
.footer .newsletter-form .sent-message {
  font-size: 13px;
  margin-top: 8px;
}

.footer h4 {
  color: #a7a7a7;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 25px;
  position: relative;
  font-family: "Lato", sans-serif;
  text-align: left;
}

.footer h4:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background-color: #ff0080;
}

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

.footer .footer-links ul li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  transition: 0.3s;
}

.footer .footer-links ul li:hover {
  transform: translateX(5px);
}

.footer .footer-links ul a {
  color: color-mix(in srgb, #111111, transparent 25%);
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 14px;
  transition: 0.3s;
}

.footer .footer-links ul a:hover {
  color: #ff0080;
}

.footer .footer-links ul a i {
  margin-right: 8px;
  font-size: 12px;
  color: #ff0080;
}

/*  footer-links-2　*/

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

.footer .footer-links-2 ul li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  transition: 0.3s;
}

.footer .footer-links-2 ul li:hover {
  transform: translateX(5px);
}

.footer .footer-links-2 ul a {
  color: color-mix(in srgb, #111111, transparent 20%);
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 11px;
  line-height: 21px;
  transition: 0.3s;
}

.footer .footer-links-2 ul a:hover {
  color: #ff0080;
}

.footer .footer-links-2 ul a i {
  margin-right: 8px;
  font-size: 12px;
  color: #ff0080;
}



.footer .footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.footer .footer-contact .contact-item .contact-icon {
  width: 40px;
  height: 40px;
  background-color: color-mix(in srgb, #ff0080, transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.footer .footer-contact .contact-item .contact-icon i {
  color: #ff0080;
  font-size: 16px;
}

.footer .footer-contact .contact-item .contact-info p {
  margin: 0;
  color: color-mix(in srgb, #111111, transparent 20%);
  font-size: 14px;
  line-height: 1.5;
}

.footer .social-links {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.footer .social-links a {
  width: 42px;
  height: 42px;
  background-color: color-mix(in srgb, #ffffff, transparent 92%);
  color: color-mix(in srgb, #111111, transparent 30%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
  text-decoration: none;
}

.footer .social-links a:hover {
  background-color: #ff0080;
  color: #ffffff;
  transform: translateY(-3px);
}

.footer .social-links a i {
  font-size: 16px;
}

.footer .footer-bottom {
  margin-top: 50px;
  padding: 25px 0;
  background-color: color-mix(in srgb, #ffffff, transparent 95%);
  border-top: 1px solid color-mix(in srgb, #111111, transparent 85%);
}

.footer .footer-bottom .copyright p {
  margin: 0;
  font-size: 14px;
  color: color-mix(in srgb, #000000, transparent 20%);
}

@media (max-width: 991px) {
  .footer .footer-bottom .copyright p {
    text-align: center;
    margin-bottom: 15px;
  }
}

.footer .footer-bottom .footer-bottom-links {
  text-align: right;
  margin-bottom: 8px;
}

@media (max-width: 991px) {
  .footer .footer-bottom .footer-bottom-links {
    text-align: center;
    margin-bottom: 10px;
  }
}

.footer .footer-bottom .footer-bottom-links a {
  color: color-mix(in srgb, #111111, transparent 30%);
  font-size: 13px;
  margin-left: 20px;
  text-decoration: none;
}

.footer .footer-bottom .footer-bottom-links a:first-child {
  margin-left: 0;
}

.footer .footer-bottom .footer-bottom-links a:hover {
  color: #ff0080;
}

@media (max-width: 991px) {
  .footer .footer-bottom .footer-bottom-links a {
    margin: 0 10px;
  }
}

.footer .footer-bottom .credits {
  text-align: right;
  font-size: 13px;
  color: color-mix(in srgb, #000000, transparent 40%);
}

@media (max-width: 991px) {
  .footer .footer-bottom .credits {
    text-align: center;
  }
}

.footer .footer-bottom .credits a {
  color: #ff0080;
  text-decoration: none;
}

.footer .footer-bottom .credits a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer {
    padding: 60px 0 0;
  }

  .footer .footer-content {
    text-align: center;
    margin-bottom: 40px;
  }

  .footer .footer-links,
  .footer .footer-contact {
    margin-bottom: 40px;
  }
}

input[type=text],
input[type=email],
textarea {
  color: #ffffff;
  background-color: #ffffff;
  font-size: 14px;
  border-color: color-mix(in srgb, #ffffff, transparent 80%);
}

input[type=text]:focus,
input[type=email]:focus,
textarea:focus {
  border-color: #ff0080;
}

input[type=text]::placeholder,
input[type=email]::placeholder,
textarea::placeholder {
  color: color-mix(in srgb, #ffffff, transparent 70%);
}

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

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

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

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

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

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

.scroll-top:hover {
  background-color: color-mix(in srgb, #ff0080, transparent 20%);
  color: #ffffff;
}

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

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: #ffffff;
  background-color: #ffffff;
  position: relative;
}

.page-title .heading {
  padding: 100px 0px 10px 0px;
  border-top: 1px solid color-mix(in srgb, #111111, transparent 90%);
}

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

.page-title nav {
  background-color: color-mix(in srgb, #ffffff, transparent 96%);
  padding: 20px 0;
}

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

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

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 5px;
  color: color-mix(in srgb, #000000, transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}


.section-gray {
  background: #f0f0f0;
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {
  .section-gray {
    scroll-margin-top: 66px;
  }
}


/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, #ffffff, transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: #ff0080;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 0px 0 50px;
  box-shadow: 0 1px 20px 0 rgba(33, 33, 33, 0.1);
  height: auto;
  /*

  background-image:
    linear-gradient(rgba(255, 255, 255, 0.5), rgba(0, 0, 0, 0.3)),
    url(../img/home/top-3.jpg);
  background-size: 100%;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: 0px -80px;
  clip-path: polygon(0 50px, 100% 0, 100% calc(100% - 50px), 0 100%);
  */
}


.hero:after {
  content: "";
  background-image: url(../img/home/baner-top-left.png);
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 0px;
  width: 98px;
  height: 290px;
}

.hero:before {
  content: "";
  background-image: url(../img/home/baner-top-right.png);
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  top: 0px;
  width: 193px;
  height: 467px;
}


.hero .hero-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding-top: 50px;
}

.hero .hero-header h1 {
  font-size: 39px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: -1px;
  color: #000;
}

.hero .media-block {
  position: relative;
  border-radius: 10px 10px;
  overflow: hidden;
  min-height: 380px;
}

.hero .media-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero .media-block .overlay-content {
  position: absolute;
  bottom: 60px;
  left: 1px;
  right: 1px;
  padding: 30px;
  /*
  background: linear-gradient(to top, rgb(255 229 229 / 70%), rgba(255, 255, 255, 0.7));
  */
  border-radius: 10px 10px;
}

.hero .media-block .overlay-content .stats-item {
  display: flex;
  flex-direction: column;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.5)) !important;
  border-radius: 20px;
  padding: 5px 10px;
}

.hero .media-block .overlay-content .stats-item .number {
  font-size: 32px;
  font-weight: 700;
  color: #000000;
  line-height: 1.1;
  text-align: center;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
  /*
  text-shadow: 5px 5px 3px rgba(0, 0, 0, 0.5);
  text-shadow: 3px 2px 1px #111111; */
}

.hero .media-block .overlay-content .stats-item .label {
  font-size: 18px;
  font-weight: 400;
  color: rgba(1, 232, 232, 0.8);
  text-shadow: 1px 1px 2px rgba(8, 1, 22, 0.5);
  margin-top: 5px;
  text-align: center;
}

.hero .info-block {
  border: 1px solid color-mix(in srgb, #ff0080, transparent 90%);
  border-radius: 20px;
  padding: 25px 25px;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero .info-block .lead-text {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  color: #000000;
  margin-bottom: 15px;
}

.hero .info-block .feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 35px;
}

.hero .info-block .feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: #000000;
  padding: 10px 0;
  border-bottom: 1px solid color-mix(in srgb, #ff0080, transparent 92%);
}

.hero .info-block .feature-list li:last-child {
  border-bottom: none;
}

.hero .info-block .feature-list li i {
  color: #ff0080;
  font-size: 18px;
}

.hero .info-block .action-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.hero .info-block .action-row .btn-get-started {
  display: inline-block;
  padding: 14px 50px;
  background: #ff0080;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.hero .info-block .action-row .btn-get-started:hover {
  background: color-mix(in srgb, #ff0080, #ffffff 15%);
  transform: translateY(-3px);
}

.hero .info-block .action-row .btn-get-started i {
  height: 42px;
  padding-left: 10px;
}

.hero .info-block .action-row .btn-contact {
  display: inline-flex;
  padding: 3px 50px;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #000000;
  transition: color 0.3s ease;
  border: 1px solid #64d1d7;
  border-radius: 10px;
}

.hero .info-block .action-row .btn-contact i {
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, #ffffff, transparent 92%);
  border-radius: 50%;
  font-size: 16px;
  transition: all 0.3s ease;
}

.hero .info-block .action-row .btn-contact:hover {
  color: #ff0080;
  border: 1px solid #ff0080;
}

.hero .info-block .action-row .btn-contact:hover i {
  color: #ff0080;
}

@media (max-width: 991px) {
  .hero {
    padding: 80px 0 70px;
  }

  .hero .hero-header h1 {
    font-size: 40px;
  }

  .hero .media-block {
    min-height: 300px;
  }

  .hero .info-block {
    margin-top: 10px;
    padding: 30px;
  }
}

@media (max-width: 575px) {
  .hero {
    padding: 100px 0 50px;
  }

  .hero .hero-header h1 {
    font-size: 32px;
  }

  .hero .hero-header h1 .highlight::after {
    height: 6px;
    bottom: 3px;
  }

  .hero .media-block {
    min-height: 250px;
  }

  .hero .media-block .overlay-content {
    padding: 20px;
  }

  .hero .media-block .overlay-content .stats-item .number {
    font-size: 36px;
  }

  .hero .info-block {
    padding: 25px;
  }

  .hero .info-block .lead-text {
    font-size: 15px;
  }

  .hero .info-block .action-row {
    flex-direction: column;
    gap: 15px;
  }

  .hero .info-block .action-row .btn-get-started {
    width: 100%;
    text-align: center;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 992px) {
  .about .about-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.about .image-gallery {
  position: relative;
}

.about .image-gallery .gallery-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 576px) {
  .about .image-gallery .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.about .image-gallery .gallery-item {
  overflow: hidden;
  border-radius: 16px;
}

.about .image-gallery .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about .image-gallery .gallery-item:hover img {
  transform: scale(1.05);
}

.about .image-gallery .main-image {
  height: 400px;
  box-shadow: 0 20px 50px color-mix(in srgb, #ffffff, transparent 85%);
}

@media (max-width: 576px) {
  .about .image-gallery .main-image {
    height: 280px;
  }
}

.about .image-gallery .side-image {
  height: 400px;
  align-self: end;
  margin-top: 3rem;
}

@media (max-width: 576px) {
  .about .image-gallery .side-image {
    height: 220px;
    margin-top: 0;
  }
}

.about .image-gallery .experience-badge {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.about .image-gallery .experience-badge .badge-inner {
  /*
  background: linear-gradient(135deg, #ff0080, color-mix(in srgb, #ff0080, black 20%));
  */
  color: #1f1f1f;
  padding: 1.5rem 2.5rem;
  border-radius: 60px;
  text-align: center;
  box-shadow: 0 5px 20px color-mix(in srgb, #ff0080, transparent 80%);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

@media (max-width: 576px) {
  .about .image-gallery .experience-badge .badge-inner {
    padding: 1rem 1.75rem;
  }
}

.about .image-gallery .experience-badge .number {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

@media (max-width: 576px) {
  .about .image-gallery .experience-badge .number {
    font-size: 2rem;
  }
}

.about .image-gallery .experience-badge .label {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

@media (max-width: 992px) {
  .about .info-panel {
    margin-top: 2rem;
  }
}

.about .info-panel .panel-header {
  margin-bottom: 1.5rem;
}

.about .info-panel .panel-header .tagline {
  display: inline-block;
  background: color-mix(in srgb, #ff0080, transparent 88%);
  color: #ff0080;
  padding: 0.5rem 1.25rem;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.about .info-panel .panel-header h2 {
  font-size: 30px;
  font-weight: 500;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .about .info-panel .panel-header h2 {
    font-size: 2rem;
  }
}

.about .info-panel .description {
  color: color-mix(in srgb, #000000, transparent 25%);
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.about .info-panel .highlights-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 576px) {
  .about .info-panel .highlights-row {
    grid-template-columns: 1fr;
  }
}

.about .info-panel .highlight-box {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, #111111, transparent 90%);
  transition: all 0.3s ease;
}

.about .info-panel .highlight-box:hover {
  box-shadow: 0 10px 30px color-mix(in srgb, #ffffff, transparent 90%);
  /* transform: translateY(-3px); */
}

.about .info-panel .highlight-box .icon-wrap {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: color-mix(in srgb, #ff0080, transparent 90%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about .info-panel .highlight-box .icon-wrap i {
  font-size: 1.5rem;
  color: #ff0080;
}

.about .info-panel .highlight-box .highlight-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.about .info-panel .highlight-box .highlight-content p {
  font-size: 0.875rem;
  color: color-mix(in srgb, #000000, transparent 40%);
  margin: 0;
  line-height: 1.5;
}

.about .info-panel .stats-row {
  display: flex;
  gap: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid color-mix(in srgb, #111111, transparent 88%);
  border-bottom: 1px solid color-mix(in srgb, #111111, transparent 88%);
  margin-bottom: 2rem;
}

@media (max-width: 576px) {
  .about .info-panel .stats-row {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
}

.about .info-panel .stats-row .stat-block {
  text-align: center;
  flex: 1;
}

@media (max-width: 576px) {
  .about .info-panel .stats-row .stat-block {
    flex: 0 0 calc(50% - 0.75rem);
  }
}

.about .info-panel .stats-row .stat-block h3 {
  font-size: 2.25rem;
  font-weight: 800;
  color: #ff0080;
  margin: 0;
  line-height: 1;
}

@media (max-width: 768px) {
  .about .info-panel .stats-row .stat-block h3 {
    font-size: 1.75rem;
  }
}

.about .info-panel .stats-row .stat-block span {
  font-size: 0.85rem;
  color: color-mix(in srgb, #111111, transparent 35%);
  font-weight: 500;
  display: block;
  margin-top: 0.5rem;
}

.about .info-panel .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: transparent;
  color: #ff0080;
  border: 2px solid #ff0080;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.about .info-panel .cta-button i {
  transition: transform 0.3s ease;
}

.about .info-panel .cta-button:hover {
  background: #ff0080;
  color: #ffffff;
}

.about .info-panel .cta-button:hover i {
  transform: translateX(5px);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  position: relative;
  border: 1px solid color-mix(in srgb, #111111, transparent 90%);
  transition: all 0.4s ease;
  overflow: hidden;
}

.services .service-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff0080, color-mix(in srgb, #ff0080, #8b5cf6 50%));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.services .service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px color-mix(in srgb, #ffffff, transparent 90%);
  border-color: color-mix(in srgb, #ff0080, transparent 70%);
}

.services .service-card:hover::after {
  transform: scaleX(1);
}

.services .service-card:hover .icon-circle {
  background: #ff0080;
  transform: rotate(10deg);
}

.services .service-card:hover .icon-circle i {
  color: #ffffff;
}

.services .service-card:hover .card-link {
  color: #ff0080;
}

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

.services .service-card.pro {
  background: linear-gradient(160deg, #ffffff 0%, color-mix(in srgb, #ff0080, #ffffff 95%) 100%);
  border-color: color-mix(in srgb, #ff0080, transparent 75%);
}

.services .service-card.pro::after {
  transform: scaleX(1);
}

.services .card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 5px 14px;
  border-radius: 30px;
}

.services .card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.services .icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: color-mix(in srgb, #ff0080, transparent 85%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.services .icon-circle i {
  font-size: 28px;
  color: #ff0080;
  transition: color 0.3s ease;
}

.services .service-num {
  font-size: 42px;
  font-weight: 800;
  font-family: "Lato", sans-serif;
  color: color-mix(in srgb, #000000, transparent 90%);
  line-height: 1;
}

.services .card-body {
  margin-bottom: 20px;
}

.services .card-body h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.services .card-body h4 a {
  color: #292929;
  text-decoration: none;
  transition: color 0.3s ease;
}

.services .card-body h4 a:hover {
  color: #ff0080;
}

.services .card-body p {
  font-size: 14px;
  line-height: 1.7;
  color: color-mix(in srgb, #111111, transparent 30%);
  margin-bottom: 16px;
}

.services .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: -10px;
}

.services .feature-list li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: color-mix(in srgb, #111111, transparent 20%);
  background: color-mix(in srgb, #ffffff, transparent 95%);
  padding: 5px 12px;
  border-radius: 20px;
}

.services .feature-list li i {
  color: #ff0080;
  font-size: 12px;
}

.services .card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #292929;
  text-decoration: none;
  transition: all 0.3s ease;
}

.services .card-link i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.services .services-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}

.services .sidebar-service-item {
  display: flex;
  gap: 18px;
  background: #ffffff;
  border: 1px solid color-mix(in srgb, #111111, transparent 90%);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
}

.services .sidebar-service-item:hover {
  border-color: color-mix(in srgb, #ff0080, transparent 70%);
  box-shadow: 0 10px 30px color-mix(in srgb, #ffffff, transparent 92%);
}

.services .sidebar-service-item:hover .sidebar-icon {
  background: #ff0080;
}

.services .sidebar-service-item:hover .sidebar-icon i {
  color: #ffffff;
}

.services .sidebar-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 12px;
  background: color-mix(in srgb, #ff0080, transparent 88%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.services .sidebar-icon i {
  font-size: 24px;
  color: #ff0080;
  transition: color 0.3s ease;
}

.services .sidebar-content {
  flex: 1;
}

.services .sidebar-content .sidebar-num {
  font-size: 20px;
  font-weight: 700;
  color: #e5e5e5;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: right;
  display: block;
  margin-top: -9px;
}

.services .sidebar-content h5 {
  font-size: 17px;
  font-weight: 700;
  margin: 6px 0 10px;
}

.services .sidebar-content h5 a {
  color: #292929;
  text-decoration: none;
  transition: color 0.3s ease;
}

.services .sidebar-content h5 a:hover {
  color: #ff0080;
}

.services .sidebar-content p {
  font-size: 13px;
  line-height: 1.6;
  color: color-mix(in srgb, #111111, transparent 35%);
  margin: 0;
}

.services .sidebar-cta {
  flex: 1;
  min-height: 280px;
  border-radius: 20px;
  border-top: 2px solid #ff0080;
  border-bottom: 2px solid #ff0080;
  padding: 0px;
}

.services .sidebar-cta .cta-inner {
  height: 100%;
  border-radius: 17px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #ffffff 0%, color-mix(in srgb, #ff0080, #ffffff 95%) 100%);
  border-top: 2px solid color-mix(in srgb, #ff0080, transparent 75%);
  border-bottom: 2px solid color-mix(in srgb, #ff0080, transparent 75%);
}

.services .sidebar-cta .cta-inner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, color-mix(in srgb, #ffffff, transparent 90%) 0%, transparent 70%);
  pointer-events: none;
}

.services .sidebar-cta .cta-inner>i {
  font-size: 42px;
  color: #ff0080;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.services .sidebar-cta .cta-inner h4 {
  font-size: 24px;
  font-weight: 700;
  color: #001995;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.services .sidebar-cta .cta-inner p {
  font-size: 14px;
  color: color-mix(in srgb, #ff0080, transparent 15%);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.services .cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #fff1f1;
  color: #ff0080;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 30px color-mix(in srgb, #000, transparent 75%);
}

.services .cta-button i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.services .cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px color-mix(in srgb, #000, transparent 65%);
}

.services .cta-button:hover i {
  transform: translateX(4px);
}

@media (max-width: 992px) {
  .services .services-sidebar {
    margin-top: 20px;
  }

  .services .sidebar-cta {
    min-height: 220px;
  }
}

@media (max-width: 768px) {
  .services .service-card {
    padding: 24px;
  }

  .services .icon-circle {
    width: 56px;
    height: 56px;
  }

  .services .icon-circle i {
    font-size: 24px;
  }

  .services .service-num {
    font-size: 36px;
  }

  .services .card-body h4 {
    font-size: 18px;
  }

  .services .sidebar-cta .cta-inner {
    padding: 28px 24px;
  }

  .services .sidebar-cta .cta-inner h4 {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .services .service-card {
    padding: 20px;
  }

  .services .card-header {
    margin-bottom: 18px;
  }

  .services .icon-circle {
    width: 50px;
    height: 50px;
  }

  .services .icon-circle i {
    font-size: 22px;
  }

  .services .service-num {
    font-size: 32px;
  }

  .services .feature-list li {
    font-size: 12px;
    padding: 4px 10px;
  }

  .services .sidebar-service-item {
    padding: 20px;
  }

  .services .sidebar-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
  }

  .services .sidebar-icon i {
    font-size: 20px;
  }

  .services .sidebar-content h5 {
    font-size: 15px;
  }
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us {
  padding: 80px 0;
}

.why-us .intro-content {
  padding-right: 40px;
}

.why-us .intro-content h3 {
  font-size: 32px;
  font-weight: 700;
  color: #292929;
  margin-bottom: 20px;
  line-height: 1.3;
}

.why-us .intro-content .intro-text {
  font-size: 18px;
  color: color-mix(in srgb, #111111, transparent 25%);
  line-height: 1.7;
  margin-bottom: 30px;
}

.why-us .intro-content .stats-row {
  display: flex;
  gap: 40px;
}

.why-us .intro-content .stats-row .stat-item .stat-value {
  font-size: 28px;
  font-weight: 800;
  color: #ff0080;
  line-height: 1;
}

.why-us .intro-content .stats-row .stat-item .stat-unit {
  font-size: 32px;
  font-weight: 700;
  color: #ff0080;
}

.why-us .intro-content .stats-row .stat-item .stat-desc {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, #111111, transparent 40%);
  margin-top: 5px;
}

@media (max-width: 991px) {
  .why-us .intro-content {
    padding-right: 0;
    margin-bottom: 40px;
    text-align: center;
  }

  .why-us .intro-content .stats-row {
    justify-content: center;
  }
}

.why-us .features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.why-us .features-grid .grid-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 25px;
  background: #ffffff;
  border-radius: 16px;
  border-left: 4px solid #ff0080;
  transition: all 0.3s ease;
}

.why-us .features-grid .grid-item:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 30px color-mix(in srgb, #111111, transparent 90%);
}

.why-us .features-grid .grid-item .grid-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: color-mix(in srgb, #ff0080, transparent 88%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-us .features-grid .grid-item .grid-icon i {
  font-size: 22px;
  color: #ff0080;
}

.why-us .features-grid .grid-item .grid-content h5 {
  font-size: 17px;
  font-weight: 600;
  color: #292929;
  margin-bottom: 8px;
}

.why-us .features-grid .grid-item .grid-content p {
  font-size: 15px;
  color: color-mix(in srgb, #111111, transparent 30%);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .why-us .features-grid {
    grid-template-columns: 1fr;
  }
}

.why-us .highlight-cards {
  margin-top: 60px;
}

.why-us .highlight-cards .highlight-card {
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 20px;
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, #111111, transparent 92%);
  transition: all 0.3s ease;
}

.why-us .highlight-cards .highlight-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff0080, color-mix(in srgb, #ff0080, #6366f1 40%));
  opacity: 0;
  /*  transition: opacity 0.3s ease; */
}

.why-us .highlight-cards .highlight-card:hover {
  /*  transform: translateY(-8px); */
  box-shadow: 0 20px 50px color-mix(in srgb, #111111, transparent 88%);
}

.why-us .highlight-cards .highlight-card:hover::before {
  opacity: 1;
}

.why-us .highlight-cards .highlight-card:hover .card-link i {
  /* transform: translateX(5px); */
}


.why-us .highlight-cards .highlight-card .card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.why-us .highlight-cards .highlight-card .card-header i {
  width: 45px;
  height: 45px;
  background: color-mix(in srgb, #ff0080, transparent 85%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #ff0080;
}

.why-us .highlight-cards .highlight-card .card-header .card-badge {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 12px;
  background: color-mix(in srgb, #ff0080, transparent 88%);
  color: #ff0080;
  border-radius: 20px;
}

.why-us .highlight-cards .highlight-card h4 {
  font-size: 22px;
  font-weight: 700;
  color: #292929;
  margin-bottom: 15px;
}

.why-us .highlight-cards .highlight-card p {
  font-size: 16px;
  color: color-mix(in srgb, #111111, transparent 25%);
  line-height: 1.7;
  margin-bottom: 20px;
}

.why-us .highlight-cards .highlight-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #ff0080;
  text-decoration: none;
  transition: all 0.3s ease;
}

.why-us .highlight-cards .highlight-card .card-link i {
  transition: transform 0.3s ease;
}

/* highlight-card-2　*/

.why-us .highlight-cards .highlight-card-2 {
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 20px;
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, #ff0080, transparent 92%);
  transition: all 0.3s ease;
}

.why-us .highlight-cards .highlight-card-2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff0080, color-mix(in srgb, #ff0080, #6366f1 40%));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.why-us .highlight-cards .highlight-card.featured {
  border: 1px solid #fbdeec;
  background: linear-gradient(145deg, #fff2f8, color-mix(in srgb, #f7eced, #f5f1e8 35%));
}

.why-us .highlight-cards .highlight-card.featured::before {
  display: none;
}

.why-us .highlight-cards .highlight-card.featured .card-header i {
  background: color-mix(in srgb, #ff0080, transparent 80%);
  color: #1f1f1d;
}

.why-us .highlight-cards .highlight-card.featured .card-header .card-badge {
  background: color-mix(in srgb, #ff0080, transparent 80%);
  color: #1f1f1d;
}

.why-us .highlight-cards .highlight-card.featured h4 {
  color: #1f1f1d;
}

.why-us .highlight-cards .highlight-card.featured p {
  color: color-mix(in srgb, #1f1f1d, transparent 15%);
}

.why-us .highlight-cards .highlight-cardfeatured .card-link {
  color: #111111;
}



.why-us .cta-banner {
  background: linear-gradient(135deg, color-mix(in srgb, #ff0080, transparent 92%), color-mix(in srgb, #ff0080, transparent 96%));
  border-radius: 24px;
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border: 1px solid color-mix(in srgb, #ff0080, transparent 80%);
}

.why-us .cta-banner .cta-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: #292929;
  margin-bottom: 10px;
}

.why-us .cta-banner .cta-content p {
  font-size: 16px;
  color: color-mix(in srgb, #111111, transparent 30%);
  margin: 0;
}

.why-us .cta-banner .cta-actions {
  display: flex;
  gap: 15px;
  flex-shrink: 0;
}

.why-us .cta-banner .cta-actions .btn-cta-primary {
  display: inline-block;
  padding: 16px 32px;
  background: #ff0080;
  color: #ffffff;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.why-us .cta-banner .cta-actions .btn-cta-primary:hover {
  background: color-mix(in srgb, #ff0080, #000 15%);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px color-mix(in srgb, #ff0080, transparent 50%);
}

.why-us .cta-banner .cta-actions .btn-cta-secondary {
  display: inline-block;
  padding: 16px 32px;
  background: transparent;
  color: #ff0080;
  border: 2px solid #ff0080;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.why-us .cta-banner .cta-actions .btn-cta-secondary:hover {
  background: #ff0080;
  color: #ffffff;
  transform: translateY(-3px);
}

@media (max-width: 991px) {
  .why-us .cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 40px 30px;
  }

  .why-us .cta-banner .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .why-us .cta-banner .cta-actions a {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .why-us {
    padding: 60px 0;
  }

  .why-us .intro-content h3 {
    font-size: 26px;
  }

  .why-us .intro-content .stats-row {
    gap: 30px;
  }

  .why-us .intro-content .stats-row .stat-item .stat-value {
    font-size: 36px;
  }

  .why-us .intro-content .stats-row .stat-item .stat-unit {
    font-size: 24px;
  }

  .why-us .highlight-cards {
    margin-top: 40px;
  }

  .why-us .highlight-cards .highlight-card {
    padding: 28px 24px;
  }

  .why-us .highlight-cards .highlight-card h4 {
    font-size: 20px;
  }

  .why-us .cta-banner .cta-content h3 {
    font-size: 22px;
  }
}


/* =========================================================================================
   # INDEX 比較
============================================================================================ */

.why-us .table-1 {
  border-collapse: collapse;
  width: 100%;
  table-layout: fixed;
}

.why-us .table-1 thead th {
  padding: 5px 8px;
  border-right: 1px solid#fff;
  color: #292929;
  text-align: center;
  font-size: 12px;
}

.why-us .table-1 th {
  font-size: 15px;
  font-weight: 400;
  padding: 3px;
}

.why-us .table-1 tr {
  background-color: #fff;
  padding: 0.35em;
}

.why-us .table-1 tr:nth-child(even) {
  background-color: #f9f9f9;
}

.why-us .table-1 td {
  color: #686868;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  padding: 10px 10px;
}

.why-us .table-1 td small {
  font-size: 12px;
  font-weight: 500;
  text-align: left;
}

.why-us .table-1 img {
  width: 100%;
  padding-bottom: 5px;
}

.why-us .table-1 i {
  font-size: 24px;
  color: rgb(253, 175, 79);
}

.why-us .table-1 .plan1 {
  background: #03a9f4;
  font-size: 30px;
  color: #ffffff;
}

.why-us .table-1 .plan1_i {
  border-right: 1px solid #f39800;
  border-left: 1px solid #f39800;
  line-height: 16px;
}

.why-us .table-1 .plan2 {
  background: #cddc39;
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
}

.why-us .table-1 .plan2_i {
  color: #cddc39;
}

.why-us .table-1 .plan3 {
  background: #4caf50;
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
}

.why-us .table-1 .plan3_i {
  color: #4caf50;
}

.why-us .table-1 .plan4 {
  background: #009688;
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
}

.why-us .table-1 .plan4_i {
  color: #009688;
}

.why-us .table-1 .plan5 {
  font-size: 22px;
  background: #d538e3;
  color: #ffffff;
  padding: 10px;
}

.why-us .table-1 .plan5_i {
  font-size: 24px !important;
  font-weight: 900 !important;
  color: #009688 !important;
  border-left: 1px solid #f39800;
}

.why-us .table-1 .plan6 {
  background: #03a9f4;
}

.why-us .table-1 .plan6 img {
  width: 60%;
}

.why-us .table-1 .plan6_i {
  border-left: 1px solid #f39800;
  line-height: 16px;
}
}


@media (max-width: 767px) {
  .why-us .table-1 td {
    font-size: 12px;
    font-weight: 600;
    padding: 1em 0.1em;
  }

  .why-us .table-1 th {
    font-size: 12px;
    padding: 1em 0.1em;
    line-height: 14px;
  }

  .why-us .table-1 td small {
    font-size: 11px;
    font-weight: 500;
  }

  .why-us .table-1 .price {
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
  }

  .why-us .table-1 .price img {
    width: 90%;
  }

  .why-us .table-1 i {
    font-size: 2em;
    display: block;
    text-align: center !important;
  }

}


/*--------------------------------------------------------------
# Portfolio Section　INDEX 対応業種一覧
--------------------------------------------------------------*/
.portfolio {
  padding: 100px 0;
}

.portfolio .filter-header {
  margin-bottom: 50px;
}

.portfolio .portfolio-filters {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  color: color-mix(in srgb, #090909, transparent 40%);
  transition: all 0.3s ease-out;
  position: relative;
  padding-bottom: 8px;
}

.portfolio .portfolio-filters li::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #ffffff;
  transition: width 0.3s ease-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: #ff0080;
}

.portfolio .portfolio-filters li:hover::after,
.portfolio .portfolio-filters li.filter-active::after {
  width: 100%;
}

@media (max-width: 576px) {
  .portfolio .portfolio-filters {
    gap: 20px;
  }

  .portfolio .portfolio-filters li {
    font-size: 14px;
  }
}

.portfolio .portfolio-card {
  position: relative;
}

.portfolio .portfolio-image {
  position: relative;
  overflow: hidden;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: brightness(0.8);
}

.portfolio .portfolio-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.5s ease-out;
  max-height: 150px;
}

.portfolio .portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: color-mix(in srgb, #000000, transparent 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease-out;
}

.portfolio .overlay-actions {
  display: flex;
  gap: 15px;
}

.portfolio .action-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ffffff;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease-out;
  transform: translateY(20px);
  opacity: 0;
}

.portfolio .action-btn:hover {
  background: #ff0080;
  color: #ffffff;
  transform: translateY(-4px);
}

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

.portfolio .portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio .portfolio-card:hover .action-btn {
  transform: translateY(0);
  opacity: 1;
}

.portfolio .portfolio-card:hover .action-btn:nth-child(2) {
  transition-delay: 0.1s;
}

.portfolio .portfolio-content {
  padding: 25px 15px;
  margin-top: -150px;
  position: absolute;
  color: #ffffff;
}

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

.portfolio .portfolio-content a:hover {
  color: color-mix(in srgb, #ff0080, transparent 25%);
  text-decoration: none;
}


.portfolio .portfolio-category {
  font-size: 14px;
  font-weight: 500;
  color: color-mix(in srgb, #ffffff, transparent 40%);
  display: block;
  margin-bottom: 8px;
}

.portfolio .portfolio-title {
  font-size: 24px;
  font-weight: 600;
  color: #292929;
  margin: 0;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.portfolio .portfolio-cta {
  text-align: center;
  margin-top: 60px;
}

.portfolio .view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  position: relative;
  padding-bottom: 4px;
  background: linear-gradient(currentColor, currentColor) 0 100%/0 1px no-repeat;
  transition: background-size 0.3s ease-out;
}

.portfolio .view-all-link i {
  transition: transform 0.3s ease-out;
}

.portfolio .view-all-link:hover {
  color: #ffffff;
  background-size: 100% 1px;
}

.portfolio .view-all-link:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .portfolio {
    padding: 80px 0;
  }

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

  .portfolio .portfolio-content {
    padding: 20px 0;
  }

  .portfolio .portfolio-title {
    font-size: 20px;
  }

  .portfolio .portfolio-cta {
    margin-top: 40px;
  }
}

/*--------------------------------------------------------------
# Team Section　INDEX industry
--------------------------------------------------------------*/
.team {
  padding: 20px 0px 25px 0px;
  background-image: url(../img/home/bg3.jpg);
  background-repeat: no-repeat;
}

.team .team-card {
  height: 100%;
}

.team .team-card .card-inner {
  background: #ffffff;
  border-radius: 20px;
  padding: 15px 20px;
  text-align: center;
  height: 100%;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid color-mix(in srgb, #111111, transparent 92%);
}

.team .team-card .card-inner:hover {
  /* transform: translateY(-10px); */
  box-shadow: 0 25px 60px color-mix(in srgb, #ff0080, transparent 85%);
  border-color: color-mix(in srgb, #ff0080, transparent 70%);
}

.team .team-card .card-inner:hover .avatar-container .avatar-ring {
  transform: scale(1.1);
  opacity: 1;
}

.team .team-card .card-inner:hover .avatar-container img {
  transform: scale(1.05);
}

.team .team-card .card-inner:hover .social-links a {
  background: #ff0080;
  color: #ffffff;
}

.team .team-card .avatar-container {
  position: relative;
  margin: 0 auto 25px;
}

.team .team-card .avatar-container img {
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
  position: relative;
  z-index: 2;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: brightness(0.8);
}

.team .team-card .avatar-container .avatar-ring {
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border: 3px solid #ff0080;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.4s ease;
}

.team .team-card .member-info {
  margin-bottom: 15px;
}

.team .team-card .member-info h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px 0;
  color: #292929;
}

.team .team-card .member-info p {
  font-size: 16px;
  font-weight: 400;
  margin: 0 0 8px 0;
  color: #292929;
  text-align: left;
}

.team .team-card .member-info .position {
  display: inline-block;
  font-size: 0.8rem;
  color: #ff0080;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 4px 12px;
  background: color-mix(in srgb, #ff0080, transparent 90%);
  border-radius: 20px;
  margin-bottom: 10px;
}

.team .team-card .member-bio {
  font-size: 0.9rem;
  line-height: 1.7;
  color: color-mix(in srgb, #111111, transparent 30%);
  margin-bottom: 20px;
}

.team .team-card .social-links {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.team .team-card .social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: color-mix(in srgb, #ffffff, transparent 92%);
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.team .team-card .social-links a:hover {
  background: color-mix(in srgb, #ff0080, black 15%);
  color: #ffffff;
  transform: translateY(-3px);
}

.team .stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
  padding: 0;
}

@media (max-width: 992px) {
  .team .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .team .stats-row {
    grid-template-columns: 1fr;
  }
}

.team .stats-row .stat-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, #111111, transparent 90%);
  transition: all 0.3s ease;
}

.team .stats-row .stat-item:hover {
  border-color: #ff0080;
  transform: translateY(-5px);
  box-shadow: 0 15px 40px color-mix(in srgb, #ff0080, transparent 88%);
}

.team .stats-row .stat-item:hover .stat-icon {
  background: #ff0080;
  color: #ffffff;
}

.team .stats-row .stat-item .stat-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: color-mix(in srgb, #ff0080, transparent 88%);
  color: #ff0080;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.team .stats-row .stat-item .stat-data {
  display: flex;
  flex-direction: column;
}

.team .stats-row .stat-item .stat-data .stat-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: #292929;
  line-height: 1.2;
}

.team .stats-row .stat-item .stat-data .stat-label {
  font-size: 0.85rem;
  color: color-mix(in srgb, #111111, transparent 30%);
  margin-top: 4px;
}

.team .join-team-banner {
  margin-top: 60px;
  background: linear-gradient(120deg, #ff0080 0%, color-mix(in srgb, #ff0080, black 25%) 100%);
  border-radius: 24px;
  padding: 60px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .team .join-team-banner {
    padding: 40px 30px;
  }
}

.team .join-team-banner .banner-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 80%, color-mix(in srgb, #ffffff, transparent 90%) 0%, transparent 50%), radial-gradient(circle at 80% 20%, color-mix(in srgb, #ffffff, transparent 92%) 0%, transparent 40%);
  pointer-events: none;
}

.team .join-team-banner .banner-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

@media (max-width: 992px) {
  .team .join-team-banner .banner-content {
    flex-direction: column;
    text-align: center;
  }
}

.team .join-team-banner .banner-text {
  flex: 1;
}

.team .join-team-banner .banner-text .badge-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: color-mix(in srgb, #ffffff, transparent 85%);
  color: #ffffff;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.team .join-team-banner .banner-text .badge-label i {
  font-size: 1rem;
}

.team .join-team-banner .banner-text h3 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 15px 0;
}

@media (max-width: 768px) {
  .team .join-team-banner .banner-text h3 {
    font-size: 1.75rem;
  }
}

.team .join-team-banner .banner-text p {
  font-size: 1rem;
  color: color-mix(in srgb, #ffffff, transparent 15%);
  line-height: 1.7;
  margin: 0;
  max-width: 550px;
}

@media (max-width: 992px) {
  .team .join-team-banner .banner-text p {
    max-width: none;
  }
}

.team .join-team-banner .banner-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

@media (max-width: 992px) {
  .team .join-team-banner .banner-actions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .team .join-team-banner .banner-actions {
    flex-direction: column;
    width: 100%;
  }
}

.team .join-team-banner .banner-actions .btn-primary-action,
.team .join-team-banner .banner-actions .btn-secondary-action {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.team .join-team-banner .banner-actions .btn-primary-action i,
.team .join-team-banner .banner-actions .btn-secondary-action i {
  font-size: 1.1rem;
}

.team .join-team-banner .banner-actions .btn-primary-action {
  background: #ffffff;
  color: #ff0080;
}

.team .join-team-banner .banner-actions .btn-primary-action:hover {
  background: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px color-mix(in srgb, black, transparent 70%);
}

.team .join-team-banner .banner-actions .btn-secondary-action {
  background: transparent;
  border: 2px solid color-mix(in srgb, #111111, transparent 50%);
  color: #ffffff;
}

.team .join-team-banner .banner-actions .btn-secondary-action:hover {
  background: color-mix(in srgb, #ffffff, transparent 85%);
  border-color: #ffffff;
  transform: translateY(-3px);
}



/*--------------------------------------------------------------
# Testimonials Section 　対応業種一覧　横スライダー
--------------------------------------------------------------*/
.testimonials {
  height: auto !important;
  padding-bottom: 100px;
}

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

.testimonials .testimonial-item {
  background: #ffffff;
  border-radius: 0;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
}

.testimonials .testimonial-item:hover {
  /* transform: translateY(-8px); */
}

.testimonials .testimonial-quote {
  position: absolute;
  top: 25px;
  right: 30px;
}

.testimonials .testimonial-quote i {
  font-size: 60px;
  color: color-mix(in srgb, #ff0080, transparent 85%);
  line-height: 1;
}

.testimonials .testimonial-text {
  font-size: 17px;
  line-height: 1.8;
  color: color-mix(in srgb, #ffffff, transparent 20%);
  font-style: italic;
  margin-bottom: 25px;
  flex-grow: 1;
  position: relative;
  z-index: 1;
}

.testimonials .stars-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 25px;
}

.testimonials .stars-rating i {
  color: #f59e0b;
  font-size: 16px;
}

.testimonials .testimonial-author {
  align-items: center;
  gap: 15px;
  padding-top: 25px;
  border-top: 2px dashed color-mix(in srgb, #ffffff, transparent 88%);
  position: relative;
}

.testimonials .author-image {
  flex-shrink: 0;
}

.testimonials .author-image img {
  width: 100%;
  object-fit: contain;
  border-radius: 10px;
}

.testimonials .author-details {
  flex: 1;
}

.testimonials .author-details h4 {
  margin: 10px 0 5px;
  font-size: 16px;
  font-weight: 500;
  color: #292929;
  text-align: center;
}

.testimonials .author-details>span {
  display: block;
  font-size: 14px;
  color: #ff0080;
  font-weight: 600;
  margin-bottom: 8px;
}

.testimonials .company-info {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: color-mix(in srgb, #ffffff, transparent 40%);
}

.testimonials .company-info i {
  font-size: 12px;
}

.testimonials .verified-icon {
  position: absolute;
  top: 25px;
  right: 0;
}

.testimonials .verified-icon i {
  font-size: 24px;
  color: #22c55e;
}

.testimonials .swiper-navigation-wrapper {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.testimonials .swiper-button-prev,
.testimonials .swiper-button-next {
  position: static;
  width: 50px;
  height: 50px;
  background: #ff0080;
  border-radius: 50%;
  margin: 0;
  transition: all 0.3s ease;
}

.testimonials .swiper-button-prev::after,
.testimonials .swiper-button-next::after {
  font-size: 18px;
  color: #ffffff;
  font-weight: bold;
}

.testimonials .swiper-button-prev:hover,
.testimonials .swiper-button-next:hover {
  background: color-mix(in srgb, #ff0080, #000 15%);
  transform: scale(1.1);
}

@media (max-width: 992px) {
  .testimonials .testimonial-item {
    padding: 35px 30px;
  }

  .testimonials .testimonial-quote i {
    font-size: 50px;
  }

  .testimonials .testimonial-text {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .testimonials .testimonial-item {
    padding: 30px 25px;
  }

  .testimonials .testimonial-quote {
    top: 20px;
    right: 20px;
  }

  .testimonials .testimonial-quote i {
    font-size: 40px;
  }

  .testimonials .testimonial-text {
    font-size: 15px;
    line-height: 1.7;
  }

  .testimonials .author-image img {
    width: 60px;
    height: 60px;
  }

  .testimonials .author-details h4 {
    font-size: 16px;
  }

  .testimonials .author-details>span {
    font-size: 13px;
  }

  .testimonials .verified-icon i {
    font-size: 20px;
  }

  .testimonials .swiper-button-prev,
  .testimonials .swiper-button-next {
    width: 44px;
    height: 44px;
  }

  .testimonials .swiper-button-prev::after,
  .testimonials .swiper-button-next::after {
    font-size: 16px;
  }
}

/*------- testimonials .cta-banner    -------*/

.testimonials .cta-banner {
  margin-top: 60px;
  background: linear-gradient(135deg, color-mix(in srgb, #ff0080, transparent 92%), color-mix(in srgb, #ff0080, transparent 96%));
  border-radius: 24px;
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border: 1px solid color-mix(in srgb, #ff0080, transparent 80%);
}

.testimonials .cta-banner .cta-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: #292929;
  margin-bottom: 10px;
}

.testimonials .cta-banner .cta-content p {
  font-size: 16px;
  color: color-mix(in srgb, #111111, transparent 30%);
  margin: 0;
}

.testimonials .cta-banner .cta-actions {
  display: flex;
  gap: 15px;
  flex-shrink: 0;
}

.testimonials .cta-banner .cta-actions .btn-cta-primary {
  display: inline-block;
  padding: 16px 32px;
  background: #ff0080;
  color: #ffffff;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.testimonials .cta-banner .cta-actions .btn-cta-primary:hover {
  background: color-mix(in srgb, #ff0080, #000 15%);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px color-mix(in srgb, #ff0080, transparent 50%);
}

.testimonials .cta-banner .cta-actions .btn-cta-secondary {
  display: inline-block;
  padding: 16px 32px;
  background: transparent;
  color: #ff0080;
  border: 2px solid #ff0080;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.testimonials .cta-banner .cta-actions .btn-cta-secondary:hover {
  background: #ff0080;
  color: #ffffff;
  transform: translateY(-3px);
}

@media (max-width: 991px) {
  .testimonials .cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 40px 30px;
  }

  .testimonials .cta-banner .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .testimonials .cta-banner .cta-actions a {
    width: 100%;
    text-align: center;
  }
}


/*--------------------------------------------------------------
# customer Section
--------------------------------------------------------------*/
.customer {
  position: relative;
  overflow: hidden;
  background-image: url(../img/home/customer-bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-position: 20px 0px 30px 0px;
  padding: 20px 0px 30px 0px;
}

.customer .customer-sidebar {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 40px;
}

.customer .customer-sidebar .avatar-stack {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
}

.customer .customer-sidebar .avatar-stack .avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #0c5f7a;
  margin-left: -12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.customer .customer-sidebar .avatar-stack .avatar:first-child {
  margin-left: 0;
}

.customer .customer-sidebar .avatar-stack .avatar:hover {
  transform: scale(1.1) translateY(-4px);
  z-index: 5;
}

.customer .customer-sidebar .avatar-stack .avatar-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #0c5f7a;
  color: #475569;
  font-size: 12px;
  font-weight: 700;
  margin-left: -12px;
  border: 3px solid #0c5f7a;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.customer .customer-sidebar .sidebar-content .satisfied-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: color-mix(in srgb, #0c5f7a, transparent 85%);
  color: #0c5f7a;
  margin-bottom: 24px;
}

.customer .customer-sidebar .sidebar-content .satisfied-badge i {
  font-size: 12px;
}

.customer .customer-sidebar .sidebar-content h3 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  color: #0c5f7a;
  margin-bottom: 16px;
}

.customer .customer-sidebar .sidebar-content p {
  font-size: 16px;
  line-height: 1.7;
  color: color-mix(in srgb, #0c5f7a, transparent 30%);
  margin-bottom: 32px;
}

.customer .customer-sidebar .sidebar-content .btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  background: #0c5f7a;
  color: #475569;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 8px 24px color-mix(in srgb, #0c5f7a, transparent 60%);
}

.customer .customer-sidebar .sidebar-content .btn-view-all i {
  transition: transform 0.3s ease;
}

.customer .customer-sidebar .sidebar-content .btn-view-all:hover {
  background: color-mix(in srgb, #0c5f7a, #0c5f7a 15%);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px color-mix(in srgb, #0c5f7a, transparent 50%);
}

.customer .customer-sidebar .sidebar-content .btn-view-all:hover i {
  transform: translateX(5px);
}

.customer .customer-carousel {
  padding-bottom: 60px;
}

.customer .customer-carousel .swiper-wrapper {
  height: auto !important;
}

.customer .customer-card {
  border-radius: 20px;
  padding: 32px;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  border: 1px solid #dddddd;
}

.customer .customer-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0c5f7a, color-mix(in srgb, #0c5f7a, #9333ea 40%));
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.customer .customer-card:hover .quote-mark {
  transform: scale(1.15);
  background: #0c5f7a;
  color: #475569;
}

.customer .customer-card .card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.customer .customer-card .card-top .stars {
  display: flex;
  gap: 4px;
}

.customer .customer-card .card-top .stars i {
  color: #f59e0b;
  font-size: 16px;
}

.customer .customer-card .card-top .quote-mark {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: color-mix(in srgb, #0c5f7a, transparent 88%);
  color: #0c5f7a;
  transition: all 0.4s ease;
}

.customer .customer-card .card-top .quote-mark i {
  font-size: 22px;
}

.customer .customer-card .customer-title {
  font-size: 16px;
  line-height: 1.75;
  position: relative;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 5px;
}

.customer .customer-card .author-info {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 10px;
  position: relative;
}

.customer .customer-card .customer-text {
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 28px;
  position: relative;
}


.customer .customer-card .author-info .author-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid color-mix(in srgb, #0c5f7a, transparent 75%);
}

.customer .customer-card .author-info .author-details h5 {
  font-size: 17px;
  font-weight: 600;
  color: #0c5f7a;
  margin: 0 0 4px;
}

.customer .customer-card .author-info .author-details span {
  font-size: 14px;
  color: color-mix(in srgb, #0c5f7a, transparent 40%);
}

.customer .swiper-pagination {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
}

.customer .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: color-mix(in srgb, #0c5f7a, transparent 75%);
  opacity: 1;
  margin: 0 6px;
  border-radius: 50%;
  transition: all 0.4s ease;
}

.customer .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 32px;
  border-radius: 10px;
  background: #0c5f7a;
}

@media (max-width: 1199px) {
  .customer .customer-sidebar {
    padding-right: 24px;
  }

  .customer .customer-sidebar .sidebar-content h3 {
    font-size: 28px;
  }

  .customer .customer-card {
    padding: 28px;
  }
}

@media (max-width: 991px) {
  .customer .customer-sidebar {
    padding-right: 0;
    padding-bottom: 48px;
    text-align: center;
  }

  .customer .customer-sidebar .avatar-stack {
    justify-content: center;
  }

  .customer .customer-sidebar .sidebar-content h3 {
    font-size: 26px;
  }

  .customer .customer-sidebar .sidebar-content p {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px;
  }
}

@media (max-width: 767px) {

  .customer .customer-sidebar .avatar-stack .avatar,
  .customer .customer-sidebar .avatar-stack .avatar-count {
    width: 42px;
    height: 42px;
  }

  .customer .customer-sidebar .sidebar-content .satisfied-badge {
    font-size: 12px;
    padding: 6px 14px;
  }

  .customer .customer-sidebar .sidebar-content h3 {
    font-size: 24px;
  }

  .customer .customer-sidebar .sidebar-content p {
    font-size: 15px;
  }

  .customer .customer-sidebar .sidebar-content .btn-view-all {
    padding: 12px 28px;
    font-size: 14px;
  }

  .customer .customer-card {
    padding: 24px;
  }

  .customer .customer-card .card-top .stars i {
    font-size: 14px;
  }

  .customer .customer-card .card-top .quote-mark {
    width: 40px;
    height: 40px;
  }

  .customer .customer-card .card-top .quote-mark i {
    font-size: 18px;
  }

  .customer .customer-card .customer-text {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .customer .customer-card .author-info {
    gap: 12px;
    padding-top: 16px;
  }

  .customer .customer-card .author-info .author-img {
    width: 46px;
    height: 46px;
  }

  .customer .customer-card .author-info .author-details h5 {
    font-size: 15px;
  }

  .customer .customer-card .author-info .author-details span {
    font-size: 13px;
  }

  .customer .customer-carousel {
    padding-bottom: 50px;
  }
}

@media (max-width: 575px) {

  .customer::before,
  .customer::after {
    display: none;
  }

  .customer .customer-sidebar {
    padding-bottom: 40px;
  }

  .customer .customer-sidebar .avatar-stack {
    margin-bottom: 24px;
  }

  .customer .customer-sidebar .avatar-stack .avatar,
  .customer .customer-sidebar .avatar-stack .avatar-count {
    width: 38px;
    height: 38px;
    margin-left: -10px;
  }

  .customer .customer-sidebar .avatar-stack .avatar:first-child,
  .customer .customer-sidebar .avatar-stack .avatar-count:first-child {
    margin-left: 0;
  }

  .customer .customer-sidebar .avatar-stack .avatar-count {
    font-size: 11px;
  }

  .customer .customer-sidebar .sidebar-content h3 {
    font-size: 22px;
  }

  .customer .customer-sidebar .sidebar-content p {
    font-size: 14px;
  }

  .customer .customer-card {
    padding: 20px;
  }

  .customer .customer-card .card-top {
    margin-bottom: 20px;
  }

  .customer .customer-card .card-top .quote-mark {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .customer .customer-card .card-top .quote-mark i {
    font-size: 16px;
  }

  .customer .customer-card .customer-text {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .customer .customer-card .author-info .author-img {
    width: 42px;
    height: 42px;
    border-width: 2px;
  }

  .customer .customer-card .author-info .author-details h5 {
    font-size: 14px;
  }

  .customer .customer-card .author-info .author-details span {
    font-size: 12px;
  }

  .customer .customer-carousel {
    padding-bottom: 45px;
  }

  .customer .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 5px;
  }

  .customer .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 26px;
  }
}


/*--------------------------------------------------------------
# INDEX Pricing Section
--------------------------------------------------------------*/
.pricing {
  padding-bottom: 50px;
}

.pricing-top {
  background-image: url(../img/home/bg1.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.pricing .pricing-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
  border: 1px solid color-mix(in srgb, #111111 8%, transparent);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing .pricing-card:hover {
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1);
  /* transform: translateY(-6px); */
}

.pricing .pricing-card.pro {
  border: 2px solid #ff0080;
  box-shadow: 0 8px 32px color-mix(in srgb, #ff0080 20%, transparent);
}

.pricing .pricing-card.pro .card-header {
  background: #eaf5fb;
  border-top: 4px solid #2d9bc1;
}

.pricing .pricing-card.pro .card-header .plan-icon {
  background: color-mix(in srgb, #ffffff 20%, transparent);
  color: #ffffff;
}

.pricing .pricing-card.pro .card-header .plan-title,
.pricing .pricing-card.pro .card-header .plan-subtitle {
  color: #ffffff;
}

.pricing .pricing-card.pro .btn-pricing {
  background: #ff0080;
  color: #ffffff;
}

.pricing .pricing-card.pro .btn-pricing:hover {
  background: color-mix(in srgb, #ff0080 85%, black);
}

.pricing .pricing-card.pro:hover {
  /*  transform: translateY(-8px); */
  box-shadow: 0 16px 56px color-mix(in srgb, #ff0080 25%, transparent);
}

.pricing .card-header {
  padding: 32px 28px 24px;
  background: #eaf8ee;
  border-top: 4px solid #51b56d;
  text-align: center;
  border-bottom: 1px solid color-mix(in srgb, #111111 6%, transparent);
}

.pricing .plan-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: color-mix(in srgb, #ff0080 15%, transparent);
  color: #ff0080;
  font-size: 24px;
  margin-bottom: 16px;
}

.pricing .plan-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #292929;
}

.pricing .plan-subtitle {
  font-size: 16px;
  color: color-mix(in srgb, #000000 60%, transparent);
  margin: 0;
}

.pricing .card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.pricing .price-wrapper {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 4px;
}

.pricing .price-wrapper .currency {
  font-size: 22px;
  font-weight: 700;
  color: #292929;
  align-self: flex-start;
  margin-top: 8px;
}

.pricing .price-wrapper .amount {
  font-size: 32px;
  font-weight: 600;
  color: #292929;
  line-height: 1;
  letter-spacing: -2px;
}

.pricing .price-wrapper .amount.annual-price {
  display: none;
}

.pricing .price-wrapper .period {
  font-size: 16px;
  color: color-mix(in srgb, #000000 50%, transparent);
  font-weight: 500;
}

.pricing .price-wrapper.custom-pricing {
  padding: 12px 0;
}

.pricing .price-wrapper.custom-pricing .custom-text {
  font-size: 36px;
  font-weight: 800;
  color: #292929;
  letter-spacing: -1px;
}

.pricing .billing-info {
  font-size: 18px;
  color: color-mix(in srgb, #000000 50%, transparent);
  text-align: center;
  margin-bottom: 24px;
}

.pricing .billing-info.annual-billing {
  display: none;
}

.pricing .feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex-grow: 1;
}

.pricing .feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 14px;
  color: #000000;
}

.pricing .feature-list li i {
  font-size: 16px;
  color: #ff0080;
  flex-shrink: 0;
}

.pricing .btn-pricing.neo {
  display: block;
  width: 100%;
  padding: 14px 24px;
  background: color-mix(in srgb, #50b26b 80%, transparent);
  color: #ffffff;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
}

.pricing .btn-pricing.neo:hover {
  background: #268541;
  color: #ffffff;
}


.pricing .btn-pricing {
  display: block;
  width: 100%;
  padding: 14px 24px;
  background: color-mix(in srgb, #51b56d 80%, transparent);
  color: #f5f5f5;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
}

.pricing .btn-pricing:hover {
  background: #2aa54d;
  color: #ffffff;
}

.pricing .trial-note {
  display: block;
  font-size: 12px;
  color: color-mix(in srgb, #ffffff 50%, transparent);
  text-align: center;
  margin-top: 12px;
}

.pricing .security-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 64px;
  padding: 32px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

@media (max-width: 992px) {
  .pricing .security-badges {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .pricing .security-badges {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 16px;
  }
}

.pricing .badge-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: color-mix(in srgb, #ff0080 5%, transparent);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.pricing .badge-item:hover {
  background: color-mix(in srgb, #ff0080 10%, transparent);
}

.pricing .badge-item i {
  font-size: 28px;
  color: #ff0080;
  flex-shrink: 0;
}

.pricing .badge-item .badge-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pricing .badge-item .badge-content strong {
  font-size: 14px;
  font-weight: 600;
  color: #292929;
}

.pricing .badge-item .badge-content span {
  font-size: 12px;
  color: color-mix(in srgb, #ffffff 60%, transparent);
}

.pricing .help-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin-top: 40px;
}

.pricing .help-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #ff0080;
  transition: all 0.3s ease;
  padding: 8px 0;
}

.pricing .help-links a i {
  font-size: 18px;
}

.pricing .help-links a:hover {
  color: color-mix(in srgb, #ff0080 75%, black);
  transform: translateY(-2px);
}

@media (max-width: 576px) {
  .pricing .help-links {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .pricing .card-header {
    padding: 24px 20px 20px;
  }

  .pricing .card-body {
    padding: 24px 20px;
  }

  .pricing .price-wrapper .amount {
    font-size: 44px;
  }

  .pricing .price-wrapper.custom-pricing .custom-text {
    font-size: 30px;
  }

  .pricing .plan-icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .pricing .security-badges {
    margin-top: 48px;
  }
}

/*-------  pricing .cta-banner    -------*/

.pricing .cta-banner {
  margin-top: 60px;
  /*
  background: linear-gradient(135deg, color-mix(in srgb, #ff0080, transparent 92%), color-mix(in srgb, #ff0080, transparent 96%));
  */
  border-radius: 24px;
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border: 1px solid color-mix(in srgb, #ff0080, transparent 80%);
}

.pricing .cta-banner .cta-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: #292929;
  margin-bottom: 10px;
}

.pricing .cta-banner .cta-content p {
  font-size: 16px;
  color: color-mix(in srgb, #111111, transparent 30%);
  margin: 0;
}

.pricing .cta-banner .cta-actions {
  display: flex;
  gap: 15px;
  flex-shrink: 0;
}

.pricing .cta-banner .cta-actions .btn-cta-primary {
  display: inline-block;
  padding: 16px 32px;
  background: #ff0080;
  color: #ffffff;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.pricing .cta-banner .cta-actions .btn-cta-primary:hover {
  background: color-mix(in srgb, #ff0080, #000 15%);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px color-mix(in srgb, #ff0080, transparent 50%);
}

.pricing .cta-banner .cta-actions .btn-cta-secondary {
  display: inline-block;
  padding: 16px 32px;
  background: transparent;
  color: #ff0080;
  border: 2px solid #ff0080;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.pricing .cta-banner .cta-actions .btn-cta-secondary:hover {
  background: #ff0080;
  color: #ffffff;
  transform: translateY(-3px);
}

@media (max-width: 991px) {
  .pricing .cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 40px 30px;
  }

  .pricing .cta-banner .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .pricing .cta-banner .cta-actions a {
    width: 100%;
    text-align: center;
  }
}

/*-------  pricing .pricing-banner    -------*/

.pricing .pricing-banner {
  margin-top: 60px;
  background: linear-gradient(120deg, #ff0080 0%, color-mix(in srgb, #ff0080, black 25%) 100%);
  border-radius: 24px;
  padding: 60px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .pricing .pricing-banner {
    padding: 40px 30px;
  }
}

.pricing .pricing-banner .banner-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 80%, color-mix(in srgb, #ffffff, transparent 90%) 0%, transparent 50%), radial-gradient(circle at 80% 20%, color-mix(in srgb, #ffffff, transparent 92%) 0%, transparent 40%);
  pointer-events: none;
}

.pricing .pricing-banner .banner-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

@media (max-width: 992px) {
  .pricing .pricing-banner .banner-content {
    flex-direction: column;
    text-align: center;
  }
}

.pricing .pricing-banner .banner-text {
  flex: 1;
}

.pricing .pricing-banner .banner-text .badge-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: color-mix(in srgb, #ffffff, transparent 85%);
  color: #ffffff;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.pricing .pricing-banner .banner-text .badge-label i {
  font-size: 1rem;
}

.pricing .pricing-banner .banner-text h3 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 15px 0;
}

@media (max-width: 768px) {
  .pricing .pricing-banner .banner-text h3 {
    font-size: 1.75rem;
  }
}

.pricing .pricing-banner .banner-text p {
  font-size: 1rem;
  color: color-mix(in srgb, #ffffff, transparent 15%);
  line-height: 1.7;
  margin: 0;
  max-width: 550px;
}

@media (max-width: 992px) {
  .pricing .pricing-banner .banner-text p {
    max-width: none;
  }
}

.pricing .pricing-banner .banner-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

@media (max-width: 992px) {
  .pricing .pricing-banner .banner-actions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .pricing .pricing-banner .banner-actions {
    flex-direction: column;
    width: 100%;
  }
}

.pricing .pricing-banner .banner-actions .btn-primary-action,
.pricing .pricing-banner .banner-actions .btn-secondary-action {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.pricing .pricing-banner .banner-actions .btn-primary-action i,
.pricing .pricing-banner .banner-actions .btn-secondary-action i {
  font-size: 1.1rem;
}

.pricing .pricing-banner .banner-actions .btn-primary-action {
  background: #ffffff;
  color: #ff0080;
}

.pricing .pricing-banner .banner-actions .btn-primary-action:hover {
  background: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px color-mix(in srgb, black, transparent 70%);
}

.pricing .pricing-banner .banner-actions .btn-secondary-action {
  background: transparent;
  border: 2px solid color-mix(in srgb, #111111, transparent 50%);
  color: #ffffff;
}

.pricing .pricing-banner .banner-actions .btn-secondary-action:hover {
  background: color-mix(in srgb, #ffffff, transparent 85%);
  border-color: #ffffff;
  transform: translateY(-3px);
}


/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-wrapper {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 992px) {
  .faq .faq-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.faq .faq-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: sticky;
  top: 100px;
}

@media (max-width: 992px) {
  .faq .faq-categories {
    position: static;
  }
}

.faq .faq-categories .nav-tabs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: none;
  width: 100%;
}

@media (max-width: 992px) {
  .faq .faq-categories .nav-tabs {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.faq .faq-categories .nav-tabs .nav-item {
  width: 100%;
}

@media (max-width: 992px) {
  .faq .faq-categories .nav-tabs .nav-item {
    flex: 1;
    min-width: 140px;
    width: auto;
  }
}

.faq .category-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: #ffffff;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid #dddddd;
  width: 100%;
  text-align: left;
}

@media (max-width: 992px) {
  .faq .category-card {
    padding: 16px 20px;
  }
}

@media (max-width: 576px) {
  .faq .category-card {
    padding: 14px 16px;
    gap: 12px;
  }
}

.faq .category-card:hover {
  border-color: color-mix(in srgb, #ff0080 30%, transparent);
  transform: translateX(4px);
}

@media (max-width: 992px) {
  .faq .category-card:hover {
    transform: translateY(-4px);
  }
}

.faq .category-card.active {
  background: #ff0080;
  border-color: #ff0080;
}

.faq .category-card.active .category-icon {
  background: color-mix(in srgb, #ffffff 20%, transparent);
  color: #ffffff;
}

.faq .category-card.active .category-info h5 {
  color: #ffffff;
}

.faq .category-card.active .category-info span {
  color: color-mix(in srgb, #ffffff 80%, transparent);
}

.faq .category-card .category-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, #ff0080 12%, transparent);
  border-radius: 12px;
  color: #ff0080;
  font-size: 22px;
  transition: all 0.3s ease;
}

@media (max-width: 576px) {
  .faq .category-card .category-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
    border-radius: 10px;
  }
}

.faq .category-card .category-info h5 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 600;
  color: #292929;
  transition: all 0.3s ease;
}

@media (max-width: 576px) {
  .faq .category-card .category-info h5 {
    font-size: 14px;
  }
}

.faq .category-card .category-info span {
  font-size: 13px;
  color: color-mix(in srgb, #000000 60%, transparent);
  transition: all 0.3s ease;
}

@media (max-width: 576px) {
  .faq .category-card .category-info span {
    font-size: 12px;
  }
}

.faq .help-box {
  margin-top: 24px;
  padding: 28px;
  background: linear-gradient(135deg, color-mix(in srgb, #ff0080 10%, transparent) 0%, color-mix(in srgb, #ff0080 5%, transparent) 100%);
  border-radius: 16px;
  text-align: center;
  border: 1px solid color-mix(in srgb, #ff0080 20%, transparent);
}

@media (max-width: 992px) {
  .faq .help-box {
    flex-basis: 100%;
    margin-top: 12px;
  }
}

.faq .help-box .help-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ff0080;
  border-radius: 50%;
  color: #ffffff;
  font-size: 24px;
}

.faq .help-box h4 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: #292929;
}

.faq .help-box p {
  margin: 0 0 20px;
  font-size: 14px;
  color: color-mix(in srgb, #000000 70%, transparent);
  line-height: 1.6;
}

.faq .help-box .help-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #ff0080;
  text-decoration: none;
  transition: all 0.3s ease;
}

.faq .help-box .help-link i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.faq .help-box .help-link:hover {
  gap: 12px;
}

.faq .help-box .help-link:hover i {
  transform: translateX(4px);
}

.faq .faq-content-area .faq-header-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.faq .faq-content-area .faq-header-info .questions-count {
  font-size: 14px;
  font-weight: 600;
  color: #ff0080;
  padding: 8px 16px;
  background: color-mix(in srgb, #ff0080 10%, transparent);
  border-radius: 20px;
}

.faq .faq-content-area .faq-header-info .search-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: #ffffff;
  border-radius: 30px;
  border: 1px solid color-mix(in srgb, #111111 12%, transparent);
  transition: all 0.3s ease;
}

.faq .faq-content-area .faq-header-info .search-box:focus-within {
  border-color: #ff0080;
  box-shadow: 0 0 0 4px color-mix(in srgb, #ff0080 15%, transparent);
}

.faq .faq-content-area .faq-header-info .search-box i {
  color: color-mix(in srgb, #ffffff 50%, transparent);
  font-size: 18px;
}

.faq .faq-content-area .faq-header-info .search-box input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 14px;
  color: #ffffff;
  width: 200px;
}

.faq .faq-content-area .faq-header-info .search-box input::placeholder {
  color: color-mix(in srgb, #ffffff 50%, transparent);
}

@media (max-width: 576px) {
  .faq .faq-content-area .faq-header-info .search-box input {
    width: 140px;
  }
}

.faq .tab-content .tab-pane.show {
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq .faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq .faq-item {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid color-mix(in srgb, #111111 8%, transparent);
}

.faq .faq-item:hover {
  border-color: color-mix(in srgb, #ff0080 25%, transparent);
}

.faq .faq-item.faq-active {
  border-color: #ff0080;
  box-shadow: 0 8px 32px color-mix(in srgb, #ff0080 12%, transparent);
}

.faq .faq-item.faq-active .faq-question {
  background: color-mix(in srgb, #ff0080 5%, transparent);
}

.faq .faq-item.faq-active .faq-question .question-icon {
  background: #ff0080;
  color: #ffffff;
}

.faq .faq-item.faq-active .faq-question .toggle-icon {
  transform: rotate(180deg);
  color: #ff0080;
}

.faq .faq-item.faq-active .faq-answer {
  max-height: 300px;
  padding: 15px 25px 15px 76px;
  opacity: 1;
}

@media (max-width: 576px) {
  .faq .faq-item.faq-active .faq-answer {
    padding: 0 20px 20px 20px;
  }
}

.faq .faq-item .faq-question {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  color: #292929;
  line-height: 1.5;
}

@media (max-width: 576px) {
  .faq .faq-item .faq-question {
    padding: 18px 20px;
    gap: 12px;
    font-size: 15px;
  }
}

.faq .faq-item .faq-question .question-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, #ff0080 10%, transparent);
  border-radius: 50%;
  color: #ff0080;
  font-size: 18px;
  transition: all 0.3s ease;
}

@media (max-width: 576px) {
  .faq .faq-item .faq-question .question-icon {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
}

.faq .faq-item .faq-question .toggle-icon {
  flex-shrink: 0;
  margin-left: auto;
  color: color-mix(in srgb, #ffffff 50%, transparent);
  font-size: 20px;
  transition: all 0.4s ease;
}

@media (max-width: 576px) {
  .faq .faq-item .faq-question .toggle-icon {
    font-size: 16px;
  }
}

.faq .faq-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 28px 0 76px;
  opacity: 0;
  transition: all 0.4s ease;
}

@media (max-width: 576px) {
  .faq .faq-item .faq-answer {
    padding: 0 20px 0 20px;
  }
}

.faq .faq-item .faq-answer p {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: color-mix(in srgb, #000000 75%, transparent);
}

@media (max-width: 576px) {
  .faq .faq-item .faq-answer p {
    font-size: 14px;
  }
}

/* =========================================================================================
   # INDEX flow Area css
============================================================================================ */

.flow-area {
  padding: 30px 0px;
  background-image: url(../img/home/leaf-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-color: rgba(255, 255, 255, 0.2);
  background-blend-mode: color-burn;
  background-size: cover;
}

.flow_row {
  margin-top: 50px;
  background-image: url(../img/home/flow-1.png);
  background-repeat: no-repeat;
  background-position: 5px -34px;
  background-position-x: center;
}

@media (max-width: 767px) {
  .flow_row {
    background-image: none;
  }
}

.flow .section-heading p {
  text-align: center;
}

.flow_dots {
  position: absolute;
  top: -137px;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.flow_icon_container {
  width: 143px;
  height: 143px;
  border-radius: 50%;
  background: #d5dfe3;
}

.flow_col:nth-child(1) .flow_icon_container {
  background: #83e6f7;
}

.flow_col:nth-child(1) .flow_icon_container::before {
  background: rgba(215, 216, 233, 0.25);
}

.flow_col:nth-child(2) .flow_icon_container {
  background: #a5d58d;
}

.flow_col:nth-child(2) .flow_icon_container::before {
  background: rgba(247, 245, 229, 0.25);
}

.flow_col:nth-child(3) .flow_icon_container {
  background: #1befc5;
}

.flow_col:nth-child(3) .flow_icon_container::before {
  background: rgba(27, 239, 197, 0.25);
}

.flow_icon_container::before {
  position: relative;
  top: 70%;
  left: 46%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 188px;
  height: 188px;
  border-radius: 50%;
  z-index: 0;
  background: rgba(213, 223, 227, 0.25);
  content: "";
}

.flow_icon {
  width: 56px;
  height: 56px;
}

.flow_icon img {
  max-width: 100%;
}

.flow_item_content {
  padding-top: 15px;
  padding-bottom: 30px;
}

.flow_item_content i {
  padding-right: 5px;
}

.flow_item_content .title {
  color: #3e3e3e;
  font-size: 24px;
  line-height: 30px;
  font-weight: 500;
  text-align: center;
  margin: -5px 0px 15px 0px;
}

.flow_item_content p {
  color: #3e3e3e;
  font-size: 17px;
  line-height: 30px;
  font-weight: 500;
  text-align: left;
}

.flow_item_content .icon01 {
  font-size: 0.6em;
  color: #fff;
  background: rgb(107, 144, 219);
  background: -moz-linear-gradient(left, rgba(107, 144, 219, 1) 0%, rgba(102, 213, 233, 1) 100%);
  background: -webkit-linear-gradient(left, rgba(107, 144, 219, 1) 0%, rgba(102, 213, 233, 1) 100%);
  background: linear-gradient(to right, rgba(107, 144, 219, 1) 0%, rgba(102, 213, 233, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#6b90db', endColorstr='#66d5e9', GradientType=1);
  padding: 5px 10px;
  margin-bottom: 10px;
  display: block;
  border-radius: 20px;
  position: relative;
  min-width: 100px;
  font-size: 18px;
}

.flow_item_content .icon02 {
  font-size: 0.6em;
  color: #fff;
  background: rgb(107, 144, 219);
  background: -moz-linear-gradient(left, rgb(107, 219, 156) 0%, rgba(102, 213, 233, 1) 100%);
  background: -webkit-linear-gradient(left, rgb(107, 219, 180) 0%, rgba(102, 213, 233, 1) 100%);
  background: linear-gradient(to right, rgb(107, 219, 156) 0%, rgba(102, 213, 233, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#6b90db', endColorstr='#66d5e9', GradientType=1);
  padding: 5px 10px;
  margin-bottom: 10px;
  display: block;
  border-radius: 20px;
  position: relative;
  min-width: 100px;
  font-size: 18px;
}

/*--------------------------------------------------------------
# guide Section
--------------------------------------------------------------*/
.guide .main-contact-wrapper {
  background: #ffffff;
  border-radius: 30px;
  box-shadow: 0 25px 80px color-mix(in srgb, #ffffff, transparent 94%);
}

.guide .info-box {
  text-align: center;
  padding: 20px 15px;
  background: linear-gradient(180deg, color-mix(in srgb, #ff0080, transparent 95%), transparent);
  border-radius: 20px;
  border: 1px solid color-mix(in srgb, #ff0080, transparent 88%);
  height: 100%;
  transition: all 0.3s ease;
}

.guide .info-box:hover {
  /* transform: translateY(-5px); */
  box-shadow: 0 15px 40px color-mix(in srgb, #ff0080, transparent 85%);
  border-color: color-mix(in srgb, #ff0080, transparent 70%);
}

.guide .info-box:hover .icon-wrap {
  background: #ff0080;
  transform: scale(1.1);
}

.guide .info-box:hover .icon-wrap i {
  color: #ffffff;
}

.guide .info-box .icon-wrap {
  width: 56px;
  height: 56px;
  background: color-mix(in srgb, #ff0080, transparent 88%);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: all 0.3s ease;
}

.guide .info-box .icon-wrap i {
  font-size: 24px;
  color: #ff0080;
  transition: all 0.3s ease;
}

.guide .info-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.guide .info-box h5 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #292929;
}

.guide .info-box p {
  font-size: 15px;
  font-weight: 400;
  color: #333333;
  margin-bottom: 10px;
  text-align: left;
}

.guide .feature-list {
  list-style: none;
  padding: 0;
}

.guide .feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 400;
  color: #000000;
  padding: 1px 0;
}

.guide .feature-list li:last-child {
  border-bottom: none;
}

.guide .feature-list li i {
  color: #ff0080;
  font-size: 18px;
}

.guide .info-box .availability {
  font-size: 12px;
  color: color-mix(in srgb, #ff007b, transparent 40%);
  display: block;
  text-align: left;
}

.guide .form-section {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid color-mix(in srgb, #111111, transparent 90%);
}

.guide .form-section .form-intro {
  margin-bottom: 30px;
}

.guide .form-section .form-intro h3 {
  font-size: 28px;
  font-weight: 700;
  color: #292929;
  margin-bottom: 10px;
}

.guide .form-section .form-intro p {
  font-size: 15px;
  color: color-mix(in srgb, #000000, transparent 25%);
  line-height: 1.7;
  margin-bottom: 0;
}

.guide .form-section .php-email-form .input-group-custom {
  position: relative;
}

.guide .form-section .php-email-form .input-group-custom i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: color-mix(in srgb, #ffffff, transparent 50%);
  z-index: 2;
  transition: color 0.3s ease;
}

.guide .form-section .php-email-form .input-group-custom.textarea-group i {
  top: 20px;
  transform: none;
}

.guide .form-section .php-email-form .input-group-custom:focus-within i {
  color: #ff0080;
}

.guide .form-section .php-email-form .form-control {
  padding: 15px 18px 15px 50px;
  border-radius: 14px;
  border: 2px solid color-mix(in srgb, #ffffff, transparent 88%);
  background-color: #ffffff;
  color: #ffffff;
  font-size: 15px;
  transition: all 0.3s ease;
}

.guide .form-section .php-email-form .form-control:focus {
  border-color: #ff0080;
  box-shadow: 0 0 0 5px color-mix(in srgb, #ff0080, transparent 92%);
  outline: none;
}

.guide .form-section .php-email-form .form-control::placeholder {
  color: color-mix(in srgb, #ffffff, transparent 55%);
}

.guide .form-section .php-email-form textarea.form-control {
  min-height: 130px;
  resize: vertical;
}

.guide .form-section .form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 25px;
  gap: 20px;
}

.guide .form-section .form-footer .form-messages {
  flex: 1;
}


.guide .sidebar-panel .btn-submit {

  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #ff0080;
  color: #6e57e0;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  width: 100%;
  flex-wrap: wrap;
  flex-direction: column-reverse;
}

.guide .sidebar-panel .btn-submit i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.guide .sidebar-panel .btn-submit:hover {
  background: color-mix(in srgb, #ffffff, #ffffff 15%);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px color-mix(in srgb, #ff0080, transparent 70%);
}

.guide .sidebar-panel .btn-submit:hover i {
  transform: translateX(3px) rotate(-15deg);
}

.guide .sidebar-panel {
  border-radius: 30px;
  padding: 35px;
  height: 100%;
  color: #1f1f1f;
  position: relative;
  overflow: hidden;
  border: 1px solid #feb4d9;
  background: radial-gradient(circle, color-mix(in srgb, #ff0080, transparent 90%) 0%, transparent 70%);
}

.guide .sidebar-panel:before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, color-mix(in srgb, #e8e7e7, transparent 90%) 0%, transparent 70%);
  pointer-events: none;
}

.guide .sidebar-panel .panel-header {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.guide .sidebar-panel .panel-header .header-badge {
  width: 60px;
  height: 60px;
  background: color-mix(in srgb, #ffffff, transparent 85%);
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.guide .sidebar-panel .panel-header .header-badge i {
  font-size: 28px;
  color: #1f1f1f;
}

.guide .sidebar-panel .panel-header h4 {
  font-size: 22px;
  font-weight: 700;
  color: #1f1f1f;
  margin-bottom: 0;
}

.guide .sidebar-panel .metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 30px;
  position: relative;
}

.guide .sidebar-panel .metrics-grid .metric-item {
  background: color-mix(in srgb, #ffffff, transparent 88%);
  border-radius: 16px;
  padding: 20px 15px;
  text-align: center;
  transition: all 0.3s ease;
}

.guide .sidebar-panel .metrics-grid .metric-item:hover {
  background: color-mix(in srgb, #ffffff, transparent 80%);
  transform: scale(1.03);
}

.guide .sidebar-panel .metrics-grid .metric-item .metric-value {
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
}

.guide .sidebar-panel .metrics-grid .metric-item .metric-desc {
  font-size: 12px;
  color: color-mix(in srgb, #ffffff, transparent 20%);
  font-weight: 500;
}

.guide .sidebar-panel .testimonial-mini {
  background: color-mix(in srgb, #ed59a3, transparent 20%);
  border-radius: 18px;
  padding: 24px;
  margin-bottom: 25px;
  position: relative;
}

.guide .sidebar-panel .testimonial-mini .quote-icon {
  position: absolute;
  top: -10px;
  left: 20px;
  width: 32px;
  height: 32px;
  background: #ffffff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guide .sidebar-panel .testimonial-mini .quote-icon i {
  font-size: 16px;
  color: #ff0080;
}

.guide .sidebar-panel .testimonial-mini p {
  font-size: 14px;
  line-height: 1.7;
  color: color-mix(in srgb, #ffffff, transparent 10%);
  margin-bottom: 0px;
  margin-top: 10px;
}

.guide .sidebar-panel .testimonial-mini .client-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.guide .sidebar-panel .testimonial-mini .client-info .client-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid color-mix(in srgb, #ffffff, transparent 70%);
}

.guide .sidebar-panel .testimonial-mini .client-info .client-details {
  display: flex;
  flex-direction: column;
}

.guide .sidebar-panel .testimonial-mini .client-info .client-details .client-name {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}

.guide .sidebar-panel .testimonial-mini .client-info .client-details .client-role {
  font-size: 12px;
  color: color-mix(in srgb, #111111, transparent 30%);
}

.guide .sidebar-panel .social-bar {
  text-align: center;
  position: relative;
}

.guide .sidebar-panel .social-bar .social-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: color-mix(in srgb, #ffffff, transparent 15%);
  margin-bottom: 14px;
}

.guide .sidebar-panel .social-bar .social-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.guide .sidebar-panel .social-bar .social-icons a {
  width: 38px;
  height: 38px;
  background: color-mix(in srgb, #ffffff, transparent 85%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.3s ease;
}

.guide .sidebar-panel .social-bar .social-icons a:hover {
  background: #ffffff;
  color: #ff0080;
  transform: translateY(-4px);
}

.guide .sidebar-panel .social-bar .social-icons a i {
  font-size: 16px;
}

@media (max-width: 992px) {
  .guide .main-contact-wrapper {
    padding: 30px;
  }

  .guide .sidebar-panel {
    margin-top: 20px;
  }

  .guide .form-section .form-intro h3 {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .guide .main-contact-wrapper {
    padding: 25px 20px;
  }

  .guide .form-section {
    margin-top: 30px;
    padding-top: 30px;
  }

  .guide .form-section .form-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .guide .form-section .btn-submit {
    width: 100%;
    justify-content: center;
  }

  .guide .sidebar-panel {
    padding: 30px 25px;
  }

  .guide .sidebar-panel .metrics-grid {
    gap: 12px;
  }

  .guide .sidebar-panel .metrics-grid .metric-item {
    padding: 16px 12px;
  }

  .guide .sidebar-panel .metrics-grid .metric-item .metric-value {
    font-size: 22px;
  }
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .project-header {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 3rem;
}

.portfolio-details .project-header .header-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.portfolio-details .project-header .header-meta .category-tag {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, #ff0080, color-mix(in srgb, #ff0080, black 20%));
  color: #ffffff;
  border-radius: 50px;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.portfolio-details .project-header .header-meta .project-info {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.portfolio-details .project-header .header-meta .project-info span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: color-mix(in srgb, #ffffff, transparent 35%);
}

.portfolio-details .project-header .header-meta .project-info span i {
  color: #ff0080;
  font-size: 16px;
}

.portfolio-details .project-header .main-title {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: #292929;
}

.portfolio-details .project-header .subtitle {
  font-size: 1.1rem;
  line-height: 1.75;
  color: color-mix(in srgb, #ffffff, transparent 25%);
  margin-bottom: 1.25rem;
}

.portfolio-details .project-header .project-link a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
}

.portfolio-details .project-header .project-link a i {
  font-size: 18px;
}

.portfolio-details .project-header .project-link a:hover {
  gap: 12px;
}

.portfolio-details .gallery-showcase {
  margin-bottom: 3.5rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.portfolio-details .gallery-showcase .showcase-slider {
  position: relative;
}

.portfolio-details .gallery-showcase .showcase-slider .swiper-wrapper {
  height: auto !important;
}

.portfolio-details .gallery-showcase .showcase-slider .swiper-slide img {
  width: 100%;
  aspect-ratio: 16/8;
  object-fit: cover;
}

.portfolio-details .gallery-showcase .showcase-slider .swiper-pagination {
  bottom: 20px;
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  background: color-mix(in srgb, #ff0080, transparent 10%);
  width: auto;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  border-radius: 20px;
}

.portfolio-details .gallery-showcase .showcase-slider .swiper-button-next,
.portfolio-details .gallery-showcase .showcase-slider .swiper-button-prev {
  width: 50px;
  height: 50px;
  background: #ffffff;
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.portfolio-details .gallery-showcase .showcase-slider .swiper-button-next:after,
.portfolio-details .gallery-showcase .showcase-slider .swiper-button-prev:after {
  font-size: 18px;
  font-weight: bold;
  color: #ff0080;
}

.portfolio-details .gallery-showcase .showcase-slider .swiper-button-next:hover,
.portfolio-details .gallery-showcase .showcase-slider .swiper-button-prev:hover {
  background: #ff0080;
  transform: scale(1.1);
}

.portfolio-details .gallery-showcase .showcase-slider .swiper-button-next:hover:after,
.portfolio-details .gallery-showcase .showcase-slider .swiper-button-prev:hover:after {
  color: #ffffff;
}

.portfolio-details .gallery-showcase .showcase-slider .swiper-button-prev {
  left: 25px;
}

.portfolio-details .gallery-showcase .showcase-slider .swiper-button-next {
  right: 25px;
}

.portfolio-details .content-section {
  margin-bottom: 3rem;
}

.portfolio-details .content-section .info-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 16px;
  height: 100%;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, #111111, transparent 92%);
}

.portfolio-details .content-section .info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.portfolio-details .content-section .info-card .card-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, color-mix(in srgb, #ff0080, transparent 85%), color-mix(in srgb, #ff0080, transparent 90%));
  border-radius: 14px;
  margin-bottom: 1.25rem;
}

.portfolio-details .content-section .info-card .card-icon i {
  font-size: 26px;
  color: #ff0080;
}

.portfolio-details .content-section .info-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
  color: #292929;
}

.portfolio-details .content-section .info-card p {
  margin-bottom: 0;
  color: color-mix(in srgb, #ffffff, transparent 25%);
  line-height: 1.7;
  font-size: 15px;
}

.portfolio-details .details-row .features-block {
  background: #ffffff;
  padding: 2rem;
  border-radius: 16px;
  margin-bottom: 1.5rem;
  border: 1px solid color-mix(in srgb, #111111, transparent 92%);
}

.portfolio-details .details-row .features-block h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #292929;
}

.portfolio-details .details-row .features-block h3 i {
  color: #ff0080;
}

.portfolio-details .details-row .features-block .features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.portfolio-details .details-row .features-block .features-grid .feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: color-mix(in srgb, #ff0080, transparent 95%);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.portfolio-details .details-row .features-block .features-grid .feature-item i {
  font-size: 20px;
  color: #ff0080;
}

.portfolio-details .details-row .features-block .features-grid .feature-item span {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
}

.portfolio-details .details-row .features-block .features-grid .feature-item:hover {
  background: color-mix(in srgb, #ff0080, transparent 88%);
  transform: translateX(5px);
}

.portfolio-details .details-row .gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.portfolio-details .details-row .gallery-grid .gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.portfolio-details .details-row .gallery-grid .gallery-item img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.portfolio-details .details-row .gallery-grid .gallery-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: color-mix(in srgb, #ff0080, transparent 40%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-details .details-row .gallery-grid .gallery-item .overlay i {
  font-size: 28px;
  color: #ffffff;
}

.portfolio-details .details-row .gallery-grid .gallery-item:hover img {
  transform: scale(1.1);
}

.portfolio-details .details-row .gallery-grid .gallery-item:hover .overlay {
  opacity: 1;
}

.portfolio-details .details-row .sidebar-content {
  background: linear-gradient(180deg, color-mix(in srgb, #ff0080, transparent 95%) 0%, #ffffff 100%);
  padding: 2rem;
  border-radius: 16px;
  height: 100%;
  border: 1px solid color-mix(in srgb, #ff0080, transparent 85%);
}

.portfolio-details .details-row .sidebar-content .tech-section {
  margin-bottom: 2rem;
}

.portfolio-details .details-row .sidebar-content .tech-section h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: #292929;
}

.portfolio-details .details-row .sidebar-content .tech-section h4 i {
  color: #ff0080;
}

.portfolio-details .details-row .sidebar-content .tech-section .tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.portfolio-details .details-row .sidebar-content .tech-section .tech-tags span {
  padding: 8px 16px;
  background: #ffffff;
  color: #ffffff;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid color-mix(in srgb, #111111, transparent 88%);
  transition: all 0.3s ease;
}

.portfolio-details .details-row .sidebar-content .tech-section .tech-tags span:hover {
  background: #ff0080;
  color: #ffffff;
  border-color: #ff0080;
  transform: translateY(-3px);
}

.portfolio-details .details-row .sidebar-content .stats-section {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid color-mix(in srgb, #111111, transparent 88%);
}

.portfolio-details .details-row .sidebar-content .stats-section h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: #292929;
}

.portfolio-details .details-row .sidebar-content .stats-section h4 i {
  color: #ff0080;
}

.portfolio-details .details-row .sidebar-content .stats-section .stats-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.portfolio-details .details-row .sidebar-content .stats-section .stats-list .stat-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #ffffff;
  border-radius: 10px;
}

.portfolio-details .details-row .sidebar-content .stats-section .stats-list .stat-item .stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ff0080;
}

.portfolio-details .details-row .sidebar-content .stats-section .stats-list .stat-item .stat-label {
  font-size: 14px;
  color: color-mix(in srgb, #111111, transparent 30%);
}

.portfolio-details .details-row .sidebar-content .action-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.portfolio-details .details-row .sidebar-content .action-buttons .btn-primary-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  background: #ff0080;
  color: #ffffff;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}

.portfolio-details .details-row .sidebar-content .action-buttons .btn-primary-action:hover {
  background: color-mix(in srgb, #ff0080, black 15%);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px color-mix(in srgb, #ff0080, transparent 50%);
}

.portfolio-details .details-row .sidebar-content .action-buttons .btn-secondary-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  background: transparent;
  color: #ffffff;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid color-mix(in srgb, #ffffff, transparent 80%);
  transition: all 0.3s ease;
}

.portfolio-details .details-row .sidebar-content .action-buttons .btn-secondary-action:hover {
  border-color: #ff0080;
  color: #ff0080;
}

.portfolio-details .details-row .sidebar-content .action-buttons .btn-secondary-action:hover i {
  transform: translateX(5px);
}

.portfolio-details .details-row .sidebar-content .action-buttons .btn-secondary-action i {
  transition: transform 0.3s ease;
}

@media (max-width: 992px) {
  .portfolio-details .project-header .main-title {
    font-size: 2.2rem;
  }

  .portfolio-details .gallery-showcase .showcase-slider .swiper-button-next,
  .portfolio-details .gallery-showcase .showcase-slider .swiper-button-prev {
    width: 40px;
    height: 40px;
  }

  .portfolio-details .gallery-showcase .showcase-slider .swiper-button-next:after,
  .portfolio-details .gallery-showcase .showcase-slider .swiper-button-prev:after {
    font-size: 14px;
  }

  .portfolio-details .gallery-showcase .showcase-slider .swiper-button-prev {
    left: 15px;
  }

  .portfolio-details .gallery-showcase .showcase-slider .swiper-button-next {
    right: 15px;
  }

  .portfolio-details .details-row .features-block .features-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-details .details-row .sidebar-content {
    margin-top: 1.5rem;
  }
}

@media (max-width: 768px) {
  .portfolio-details .project-header {
    margin-bottom: 2rem;
  }

  .portfolio-details .project-header .main-title {
    font-size: 1.8rem;
  }

  .portfolio-details .project-header .header-meta .project-info {
    flex-direction: column;
    gap: 0.5rem;
  }

  .portfolio-details .gallery-showcase {
    margin-bottom: 2.5rem;
    border-radius: 12px;
  }

  .portfolio-details .gallery-showcase .showcase-slider .swiper-slide img {
    aspect-ratio: 16/10;
  }

  .portfolio-details .details-row .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }

  .portfolio-details .details-row .gallery-grid .gallery-item img {
    height: 100px;
  }
}

@media (max-width: 576px) {
  .portfolio-details .details-row .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .portfolio-details .details-row .gallery-grid .gallery-item:last-child {
    grid-column: span 2;
  }

  .portfolio-details .details-row .gallery-grid .gallery-item:last-child img {
    height: 120px;
  }
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-hero {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 0;
}

.service-details .service-hero img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.service-details .service-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, color-mix(in srgb, #ff0080, transparent 20%) 0%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
}

.service-details .service-hero .hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem;
  z-index: 2;
}

.service-details .service-hero .hero-content .service-badge {
  display: inline-block;
  background: #ff0080;
  color: #ffffff;
  padding: 0.4rem 1rem;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.service-details .service-hero .hero-content h2 {
  color: #ffffff;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.service-details .service-hero .hero-content p {
  color: color-mix(in srgb, #ffffff, transparent 15%);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0;
}

.service-details .facts-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  margin-top: -3rem;
  margin-left: 2rem;
  margin-right: 2rem;
  position: relative;
  z-index: 3;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
}

.service-details .facts-strip .fact-box {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.service-details .facts-strip .fact-box i {
  font-size: 2rem;
  color: #ff0080;
}

.service-details .facts-strip .fact-box .fact-info {
  display: flex;
  flex-direction: column;
}

.service-details .facts-strip .fact-box .fact-info .label {
  font-size: 0.8rem;
  color: color-mix(in srgb, #ffffff, transparent 40%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-details .facts-strip .fact-box .fact-info strong {
  color: #292929;
  font-size: 1rem;
}

.service-details .content-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.service-details .main-column .description-block {
  margin-bottom: 2.5rem;
}

.service-details .main-column .description-block h3 {
  color: #292929;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.service-details .main-column .description-block p {
  line-height: 1.8;
  color: color-mix(in srgb, #ffffff, transparent 15%);
  margin-bottom: 1rem;
}

.service-details .main-column .description-block p:last-child {
  margin-bottom: 0;
}

.service-details .main-column .features-grid h4 {
  color: #292929;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.service-details .main-column .features-grid .features-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.service-details .main-column .features-grid .feature-card {
  background: #ffffff;
  padding: 1.75rem;
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, #111111, transparent 90%);
  transition: all 0.3s ease;
}

.service-details .main-column .features-grid .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border-color: color-mix(in srgb, #ff0080, transparent 60%);
}

.service-details .main-column .features-grid .feature-card .card-icon {
  width: 50px;
  height: 50px;
  background: color-mix(in srgb, #ff0080, transparent 85%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.service-details .main-column .features-grid .feature-card .card-icon i {
  font-size: 1.5rem;
  color: #ff0080;
}

.service-details .main-column .features-grid .feature-card h5 {
  color: #292929;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.service-details .main-column .features-grid .feature-card p {
  font-size: 0.9rem;
  color: color-mix(in srgb, #ffffff, transparent 25%);
  line-height: 1.6;
  margin: 0;
}

.service-details .side-column .process-timeline {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, #111111, transparent 90%);
  margin-bottom: 2rem;
}

.service-details .side-column .process-timeline h4 {
  color: #292929;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.75rem;
}

.service-details .side-column .process-timeline .timeline-items {
  position: relative;
}

.service-details .side-column .process-timeline .timeline-items::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: color-mix(in srgb, #ff0080, transparent 70%);
}

.service-details .side-column .process-timeline .timeline-item {
  display: flex;
  gap: 1.25rem;
  padding-bottom: 1.5rem;
  position: relative;
}

.service-details .side-column .process-timeline .timeline-item:last-child {
  padding-bottom: 0;
}

.service-details .side-column .process-timeline .timeline-item .timeline-marker {
  width: 32px;
  height: 32px;
  background: #ff0080;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.service-details .side-column .process-timeline .timeline-item .timeline-marker span {
  color: #ffffff;
  font-weight: 700;
  font-size: 0.85rem;
}

.service-details .side-column .process-timeline .timeline-item .timeline-content {
  padding-top: 0.25rem;
}

.service-details .side-column .process-timeline .timeline-item .timeline-content h6 {
  color: #292929;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.service-details .side-column .process-timeline .timeline-item .timeline-content p {
  font-size: 0.875rem;
  color: color-mix(in srgb, #ffffff, transparent 25%);
  line-height: 1.5;
  margin: 0;
}

.service-details .side-column .client-feedback {
  background: linear-gradient(135deg, #ff0080 0%, color-mix(in srgb, #ff0080, #000 20%) 100%);
  padding: 2rem;
  border-radius: 12px;
  position: relative;
}

.service-details .side-column .client-feedback .quote-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  opacity: 0.2;
}

.service-details .side-column .client-feedback .quote-icon i {
  font-size: 3rem;
  color: #ffffff;
}

.service-details .side-column .client-feedback blockquote {
  color: #ffffff;
  font-size: 1rem;
  font-style: italic;
  line-height: 1.7;
  margin: 0 0 1.5rem 0;
  position: relative;
  z-index: 1;
}

.service-details .side-column .client-feedback .client-profile {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.service-details .side-column .client-feedback .client-profile .client-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid color-mix(in srgb, #ffffff, transparent 70%);
}

.service-details .side-column .client-feedback .client-profile .client-details strong {
  display: block;
  color: #ffffff;
  font-size: 1rem;
}

.service-details .side-column .client-feedback .client-profile .client-details span {
  font-size: 0.85rem;
  color: color-mix(in srgb, #ffffff, transparent 25%);
}

.service-details .inquiry-section {
  background: #ffffff;
  border-radius: 16px;
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: center;
  border: 1px solid color-mix(in srgb, #111111, transparent 90%);
}

.service-details .inquiry-section .inquiry-content h3 {
  color: #292929;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-details .inquiry-section .inquiry-content p {
  color: color-mix(in srgb, #ffffff, transparent 20%);
  line-height: 1.7;
  margin: 0;
}

.service-details .inquiry-section .inquiry-form-wrapper .form-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.service-details .inquiry-section .inquiry-form-wrapper .form-row .message-group {
  grid-column: span 3;
}

.service-details .inquiry-section .inquiry-form-wrapper .form-control {
  border: 1px solid color-mix(in srgb, #111111, transparent 80%);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  color: #ffffff;
  background-color: #ffffff;
}

.service-details .inquiry-section .inquiry-form-wrapper .form-control:focus {
  border-color: #ff0080;
  box-shadow: 0 0 0 3px color-mix(in srgb, #ff0080, transparent 85%);
}

.service-details .inquiry-section .inquiry-form-wrapper .form-control::placeholder {
  color: color-mix(in srgb, #ffffff, transparent 60%);
}

.service-details .inquiry-section .inquiry-form-wrapper .form-actions {
  margin-top: 1.25rem;
  text-align: right;
}

.service-details .inquiry-section .inquiry-form-wrapper .btn-request {
  background: #ff0080;
  color: #ffffff;
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.service-details .inquiry-section .inquiry-form-wrapper .btn-request i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.service-details .inquiry-section .inquiry-form-wrapper .btn-request:hover {
  background: color-mix(in srgb, #ff0080, #000 15%);
  transform: translateY(-2px);
}

.service-details .inquiry-section .inquiry-form-wrapper .btn-request:hover i {
  transform: translateX(4px);
}

@media (max-width: 1200px) {
  .service-details .content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-details .side-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .service-details .side-column .process-timeline,
  .service-details .side-column .client-feedback {
    margin-bottom: 0;
  }
}

@media (max-width: 992px) {
  .service-details .facts-strip {
    grid-template-columns: repeat(2, 1fr);
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .service-details .inquiry-section {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }

  .service-details .inquiry-section .inquiry-form-wrapper .form-row {
    grid-template-columns: 1fr 1fr;
  }

  .service-details .inquiry-section .inquiry-form-wrapper .form-row .message-group {
    grid-column: span 2;
  }

  .service-details .side-column {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .service-details .service-hero img {
    height: 300px;
  }

  .service-details .service-hero .hero-content {
    padding: 2rem;
  }

  .service-details .service-hero .hero-content h2 {
    font-size: 2rem;
  }

  .service-details .service-hero .hero-content p {
    font-size: 1rem;
  }

  .service-details .facts-strip {
    grid-template-columns: 1fr;
    margin-left: 0;
    margin-right: 0;
    margin-top: -2rem;
    padding: 1.5rem;
  }

  .service-details .facts-strip .fact-box {
    padding-bottom: 1rem;
    border-bottom: 1px solid color-mix(in srgb, #111111, transparent 90%);
  }

  .service-details .facts-strip .fact-box:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }

  .service-details .main-column .features-grid .features-wrapper {
    grid-template-columns: 1fr;
  }

  .service-details .inquiry-section .inquiry-form-wrapper .form-row {
    grid-template-columns: 1fr;
  }

  .service-details .inquiry-section .inquiry-form-wrapper .form-row .message-group {
    grid-column: span 1;
  }

  .service-details .inquiry-section .inquiry-form-wrapper .form-actions {
    text-align: center;
  }

  .service-details .inquiry-section .inquiry-form-wrapper .btn-request {
    width: 100%;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Terms Of Service Section
--------------------------------------------------------------*/
.terms-of-service .tos-header {
  margin-bottom: 50px;
  padding: 40px 30px;
  background: linear-gradient(135deg, color-mix(in srgb, #ff0080, transparent 97%) 0%, color-mix(in srgb, #ff0080, transparent 100%) 100%);
  border-radius: 20px;
  text-align: center;
}

.terms-of-service .tos-header .header-content {
  max-width: 800px;
  margin: 0 auto;
}

.terms-of-service .tos-header .header-content .badge-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background-color: #ffffff;
  border-radius: 50px;
  margin-bottom: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.terms-of-service .tos-header .header-content .badge-wrapper i {
  color: #ff0080;
  font-size: 1.1rem;
}

.terms-of-service .tos-header .header-content .badge-wrapper .last-updated {
  color: color-mix(in srgb, #111111, transparent 30%);
  font-size: 0.9rem;
  font-weight: 500;
}

.terms-of-service .tos-header .header-content h2 {
  font-size: 2.8rem;
  margin-bottom: 18px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .terms-of-service .tos-header .header-content h2 {
    font-size: 2.2rem;
  }
}

.terms-of-service .tos-header .header-content p {
  color: color-mix(in srgb, #ffffff, transparent 40%);
  font-size: 1.05rem;
  line-height: 1.6;
}

.terms-of-service .tos-sidebar {
  position: sticky;
  top: 100px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
  .terms-of-service .tos-sidebar {
    position: static;
    margin-bottom: 30px;
  }
}

.terms-of-service .tos-sidebar h5 {
  font-size: 1rem;
  color: color-mix(in srgb, #ffffff, transparent 40%);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  font-weight: 600;
}

.terms-of-service .tos-sidebar .terms-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.terms-of-service .tos-sidebar .terms-nav .nav-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 15px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s;
  color: color-mix(in srgb, #111111, transparent 30%);
}

.terms-of-service .tos-sidebar .terms-nav .nav-item .number {
  font-size: 0.85rem;
  font-weight: 700;
  color: color-mix(in srgb, #ffffff, transparent 60%);
  min-width: 25px;
}

.terms-of-service .tos-sidebar .terms-nav .nav-item .text {
  font-size: 0.95rem;
  font-weight: 500;
}

.terms-of-service .tos-sidebar .terms-nav .nav-item:hover,
.terms-of-service .tos-sidebar .terms-nav .nav-item.active {
  background-color: color-mix(in srgb, #ff0080, transparent 92%);
  color: #ff0080;
}

.terms-of-service .tos-sidebar .terms-nav .nav-item:hover .number,
.terms-of-service .tos-sidebar .terms-nav .nav-item.active .number {
  color: #ff0080;
}

.terms-of-service .tos-content .content-section {
  position: relative;
  margin-bottom: 45px;
  padding: 35px;
  background-color: #ffffff;
  border-radius: 16px;
  scroll-margin-top: 100px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.terms-of-service .tos-content .content-section:last-of-type {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .section-number {
  position: absolute;
  top: -15px;
  left: 35px;
  width: 50px;
  height: 50px;
  background-color: #ff0080;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.terms-of-service .tos-content .content-section h3 {
  font-size: 1.6rem;
  margin-bottom: 18px;
  margin-top: 15px;
  color: #292929;
  font-weight: 700;
}

.terms-of-service .tos-content .content-section p {
  color: color-mix(in srgb, #ffffff, transparent 25%);
  line-height: 1.8;
  margin-bottom: 18px;
  font-size: 1rem;
}

.terms-of-service .tos-content .content-section p:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .highlight-card {
  display: flex;
  gap: 18px;
  padding: 22px;
  background: linear-gradient(135deg, color-mix(in srgb, #ff0080, transparent 94%) 0%, color-mix(in srgb, #ff0080, transparent 97%) 100%);
  border-radius: 12px;
  margin-top: 20px;
  border: 1px solid color-mix(in srgb, #ff0080, transparent 85%);
}

.terms-of-service .tos-content .content-section .highlight-card .card-icon {
  width: 45px;
  height: 45px;
  background-color: #ff0080;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .highlight-card .card-icon i {
  font-size: 1.3rem;
  color: #ffffff;
}

.terms-of-service .tos-content .content-section .highlight-card .card-text {
  flex: 1;
  display: flex;
  align-items: center;
}

.terms-of-service .tos-content .content-section .highlight-card .card-text p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.terms-of-service .tos-content .content-section .list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .terms-of-service .tos-content .content-section .list-grid {
    grid-template-columns: 1fr;
  }
}

.terms-of-service .tos-content .content-section .list-grid .list-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background-color: color-mix(in srgb, #ff0080, transparent 96%);
  border-radius: 10px;
  border-left: 3px solid #ff0080;
}

.terms-of-service .tos-content .content-section .list-grid .list-card i {
  color: #ff0080;
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .list-grid .list-card span {
  font-size: 0.93rem;
  color: color-mix(in srgb, #ffffff, transparent 20%);
  line-height: 1.5;
}

.terms-of-service .tos-content .content-section .warning-card {
  padding: 25px;
  background-color: color-mix(in srgb, #ffc107, transparent 94%);
  border-radius: 12px;
  margin-top: 20px;
  border: 1px solid color-mix(in srgb, #ffc107, transparent 80%);
}

.terms-of-service .tos-content .content-section .warning-card .warning-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.terms-of-service .tos-content .content-section .warning-card .warning-header i {
  font-size: 1.5rem;
  color: #ffc107;
}

.terms-of-service .tos-content .content-section .warning-card .warning-header h5 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.terms-of-service .tos-content .content-section .warning-card p {
  margin: 0;
  font-size: 0.95rem;
  padding-left: 38px;
}

.terms-of-service .tos-content .content-section .prohibited-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .terms-of-service .tos-content .content-section .prohibited-grid {
    grid-template-columns: 1fr;
  }
}

.terms-of-service .tos-content .content-section .prohibited-grid .prohibited-card {
  padding: 18px;
  background-color: color-mix(in srgb, #dc3545, transparent 96%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.terms-of-service .tos-content .content-section .prohibited-grid .prohibited-card .prohibited-icon {
  width: 40px;
  height: 40px;
  background-color: color-mix(in srgb, #dc3545, transparent 88%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .prohibited-grid .prohibited-card .prohibited-icon i {
  color: #dc3545;
  font-size: 1.2rem;
}

.terms-of-service .tos-content .content-section .prohibited-grid .prohibited-card p {
  margin: 0;
  font-size: 0.93rem;
  color: color-mix(in srgb, #ffffff, transparent 20%);
}

.terms-of-service .tos-content .content-section .disclaimer-card {
  background-color: color-mix(in srgb, #ffffff, transparent 97%);
  padding: 28px;
  border-radius: 12px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .disclaimer-card h6 {
  font-size: 1.05rem;
  margin-bottom: 18px;
  font-weight: 600;
  color: #292929;
}

.terms-of-service .tos-content .content-section .disclaimer-card .disclaimer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-card .disclaimer-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: color-mix(in srgb, #ffffff, transparent 25%);
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .disclaimer-card .disclaimer-list li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-card .disclaimer-list li i {
  color: #ff0080;
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-card .disclaimer-list li span {
  flex: 1;
  line-height: 1.6;
}

.terms-of-service .tos-content .content-section .notice-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px;
  background: linear-gradient(135deg, color-mix(in srgb, #ff0080, transparent 94%) 0%, color-mix(in srgb, #ff0080, transparent 98%) 100%);
  border-radius: 12px;
  margin-top: 20px;
  border-left: 4px solid #ff0080;
}

.terms-of-service .tos-content .content-section .notice-card i {
  font-size: 1.4rem;
  color: #ff0080;
  flex-shrink: 0;
  margin-top: 2px;
}

.terms-of-service .tos-content .content-section .notice-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.terms-of-service .tos-content .tos-contact {
  margin-top: 40px;
}

.terms-of-service .tos-content .tos-contact .contact-wrapper {
  background: linear-gradient(135deg, #ff0080 0%, color-mix(in srgb, #ff0080, #000 15%) 100%);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

@media (max-width: 768px) {
  .terms-of-service .tos-content .tos-contact .contact-wrapper {
    flex-direction: column;
    text-align: center;
  }
}

.terms-of-service .tos-content .tos-contact .contact-wrapper .contact-info {
  flex: 1;
}

.terms-of-service .tos-content .tos-contact .contact-wrapper .contact-info h4 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #ffffff;
  font-weight: 700;
}

.terms-of-service .tos-content .tos-contact .contact-wrapper .contact-info p {
  color: color-mix(in srgb, #ffffff, transparent 20%);
  margin: 0;
  font-size: 1rem;
}

.terms-of-service .tos-content .tos-contact .contact-wrapper .contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background-color: #ffffff;
  color: #ff0080;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.terms-of-service .tos-content .tos-contact .contact-wrapper .contact-btn i {
  font-size: 1.1rem;
}

.terms-of-service .tos-content .tos-contact .contact-wrapper .contact-btn span {
  font-size: 1rem;
}

.terms-of-service .tos-content .tos-contact .contact-wrapper .contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

@media print {

  .terms-of-service .tos-sidebar,
  .terms-of-service .tos-contact {
    display: none;
  }

  .terms-of-service .content-section {
    page-break-inside: avoid;
    box-shadow: none;
  }
}


/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
  padding: 100px 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

.error-404::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 70%;
  height: 150%;
  background: radial-gradient(ellipse, color-mix(in srgb, #ff0080, transparent 92%) 0%, transparent 70%);
  pointer-events: none;
}

.error-404 .error-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
}

.error-404 .error-visual .glitch-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.error-404 .error-visual .glitch-wrapper .digit {
  font-size: clamp(100px, 18vw, 180px);
  font-weight: 700;
  font-family: "Lato", sans-serif;
  color: #ff0080;
  line-height: 1;
  text-shadow: 4px 4px 0 color-mix(in srgb, #ff0080, transparent 80%);
}

.error-404 .error-visual .glitch-wrapper .digit-middle {
  font-size: clamp(80px, 14vw, 140px);
  color: color-mix(in srgb, #ff0080, transparent 30%);
  animation: float 3s ease-in-out infinite;
}

.error-404 .error-visual .glitch-wrapper .digit-middle i {
  display: block;
}

.error-404 .error-visual .error-decoration {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.error-404 .error-visual .error-decoration .circle {
  position: absolute;
  border-radius: 50%;
  border: 2px dashed color-mix(in srgb, #ff0080, transparent 70%);
}

.error-404 .error-visual .error-decoration .circle-1 {
  width: 300px;
  height: 300px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: rotate 20s linear infinite;
}

.error-404 .error-visual .error-decoration .circle-2 {
  width: 220px;
  height: 220px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: rotate 15s linear infinite reverse;
}

.error-404 .error-visual .error-decoration .circle-3 {
  width: 140px;
  height: 140px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: rotate 10s linear infinite;
}

.error-404 .error-content .error-badge {
  display: inline-block;
  padding: 8px 20px;
  background-color: color-mix(in srgb, #ff0080, transparent 90%);
  color: #ff0080;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.error-404 .error-content .error-title {
  font-size: clamp(16px, 4vw, 22px);
  font-weight: 600;
  color: #292929;
  margin-bottom: 20px;
  line-height: 1.2;
}

.error-404 .error-content .error-description {
  font-size: 17px;
  line-height: 1.8;
  color: color-mix(in srgb, #000000, transparent 25%);
  margin-bottom: 32px;
  max-width: 480px;
}

.error-404 .error-content .search-box {
  display: flex;
  max-width: 400px;
  margin-bottom: 32px;
  border-radius: 50px;
  overflow: hidden;
  border: 2px solid color-mix(in srgb, #ffffff, transparent 85%);
  transition: all 0.3s ease;
}

.error-404 .error-content .search-box:focus-within {
  border-color: #ff0080;
  box-shadow: 0 4px 20px color-mix(in srgb, #ff0080, transparent 85%);
}

.error-404 .error-content .search-box input {
  flex: 1;
  padding: 14px 24px;
  border: none;
  background-color: transparent;
  color: #ffffff;
  font-size: 15px;
  outline: none;
}

.error-404 .error-content .search-box input::placeholder {
  color: color-mix(in srgb, #ffffff, transparent 60%);
}

.error-404 .error-content .search-box button {
  padding: 14px 24px;
  background-color: #ff0080;
  color: #ffffff;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.error-404 .error-content .search-box button:hover {
  background-color: color-mix(in srgb, #ff0080, #000 15%);
}

.error-404 .error-content .search-box button i {
  font-size: 18px;
}

.error-404 .error-content .error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.error-404 .error-content .error-actions .btn-home {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background-color: #ff0080;
  color: #ffffff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
}

.error-404 .error-content .error-actions .btn-home:hover {
  background-color: color-mix(in srgb, #ff0080, #000 15%);
  transform: translateX(-4px);
}

.error-404 .error-content .error-actions .btn-home i {
  font-size: 18px;
}

.error-404 .error-content .error-actions .btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background-color: transparent;
  color: #292929;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
  border: 2px solid color-mix(in srgb, #ffffff, transparent 80%);
}

.error-404 .error-content .error-actions .btn-contact:hover {
  border-color: #ff0080;
  color: #ff0080;
}

.error-404 .error-content .error-actions .btn-contact i {
  font-size: 18px;
}

.error-404 .quick-links {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 40px;
  border: 1px solid color-mix(in srgb, #111111, transparent 92%);
}

.error-404 .quick-links h4 {
  font-size: 20px;
  font-weight: 600;
  color: #292929;
  margin-bottom: 28px;
  text-align: center;
}

.error-404 .quick-links .links-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 992px) {
  .error-404 .quick-links .links-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .error-404 .quick-links .links-wrapper {
    grid-template-columns: 1fr;
  }
}

.error-404 .quick-links .quick-link-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.error-404 .quick-links .quick-link-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px color-mix(in srgb, #ffffff, transparent 92%);
}

.error-404 .quick-links .quick-link-item:hover .link-icon {
  background-color: #ff0080;
  color: #ffffff;
}

.error-404 .quick-links .quick-link-item .link-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: color-mix(in srgb, #ff0080, transparent 90%);
  color: #ff0080;
  border-radius: 10px;
  font-size: 22px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.error-404 .quick-links .quick-link-item .link-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.error-404 .quick-links .quick-link-item .link-text .link-title {
  font-size: 16px;
  font-weight: 600;
  color: #292929;
}

.error-404 .quick-links .quick-link-item .link-text .link-subtitle {
  font-size: 13px;
  color: color-mix(in srgb, #ffffff, transparent 40%);
}

@keyframes float {

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

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

@keyframes rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@media (max-width: 992px) {
  .error-404 {
    padding: 80px 0;
  }

  .error-404 .error-visual {
    margin-bottom: 40px;
  }

  .error-404 .error-visual .error-decoration .circle-1 {
    width: 240px;
    height: 240px;
  }

  .error-404 .error-visual .error-decoration .circle-2 {
    width: 180px;
    height: 180px;
  }

  .error-404 .error-visual .error-decoration .circle-3 {
    width: 120px;
    height: 120px;
  }

  .error-404 .error-content {
    text-align: center;
  }

  .error-404 .error-content .error-description {
    margin-left: auto;
    margin-right: auto;
  }

  .error-404 .error-content .search-box {
    margin-left: auto;
    margin-right: auto;
  }

  .error-404 .error-content .error-actions {
    justify-content: center;
  }

  .error-404 .quick-links {
    padding: 30px 20px;
  }
}

@media (max-width: 576px) {
  .error-404 .error-content .search-box {
    max-width: 100%;
  }

  .error-404 .error-content .error-actions {
    flex-direction: column;
    width: 100%;
  }

  .error-404 .error-content .error-actions .btn-home,
  .error-404 .error-content .error-actions .btn-contact {
    width: 100%;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/* TOP pricing colors synced with price/index.html */
.pricing-top .pricing-card.neo {
  border: 1px solid color-mix(in srgb, #51b56d 8%, transparent);
}

.pricing-top .pricing-card.neo .card-header {
  background: #eaf8ee;
  border-top: 4px solid #51b56d;
}

.pricing-top .pricing-card.neo .card-header .plan-icon {
  background: color-mix(in srgb, #ffffff 20%, transparent);
  color: #51b56d;
}

.pricing-top .pricing-card.neo .card-header .plan-title,
.pricing-top .pricing-card.neo .card-header .plan-subtitle {
  color: #181818;
}

.pricing-top .pricing-card.neo .btn-pricing {
  background: #51b56d;
  color: #ffffff;
}

.pricing-top .pricing-card.neo .btn-pricing:hover {
  background: color-mix(in srgb, #51b56d 85%, black);
}

.pricing-top .pricing-card.neo:hover {
  box-shadow: 0 16px 56px color-mix(in srgb, #51b56d 25%, transparent);
}

.pricing-top .pricing-card.pro,
.pricing-top .pricing-card.pro.pro {
  border: 1px solid color-mix(in srgb, #2d9bc1 8%, transparent);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

.pricing-top .pricing-card.pro .card-header,
.pricing-top .pricing-card.pro.pro .card-header {
  background: #eaf5fb;
  border-top: 4px solid #2d9bc1;
}

.pricing-top .pricing-card.pro .card-header .plan-icon,
.pricing-top .pricing-card.pro.pro .card-header .plan-icon {
  background: color-mix(in srgb, #ffffff 20%, transparent);
  color: #2d9bc1;
}

.pricing-top .pricing-card.pro .card-header .plan-title,
.pricing-top .pricing-card.pro .card-header .plan-subtitle,
.pricing-top .pricing-card.pro.pro .card-header .plan-title,
.pricing-top .pricing-card.pro.pro .card-header .plan-subtitle {
  color: #181818;
}

.pricing-top .pricing-card.pro .btn-pricing,
.pricing-top .pricing-card.pro.pro .btn-pricing {
  background: #2d9bc1;
  color: #ffffff;
}

.pricing-top .pricing-card.pro .btn-pricing:hover,
.pricing-top .pricing-card.pro.pro .btn-pricing:hover {
  background: color-mix(in srgb, #2d9bc1 85%, black);
}

.pricing-top .pricing-card.pro:hover,
.pricing-top .pricing-card.pro.pro:hover {
  box-shadow: 0 16px 56px color-mix(in srgb, #2d9bc1 25%, transparent);
}