/*------------------------------------------------------------------
[Table of contents]

1. Body
2. Header
3. Footer
4. Blog
5. Section
6. Home Banner
7. About
8. Services
9. Portfolio
10. Testimonial
11. Contact Us

-------------------------------------------------------------------*/
@import "../vendor/bootstrap/css/bootstrap.min.css";
@import "../vendor/bootstrap/icons/bootstrap-icons.css";
@import "../vendor/owl-carousel/css/owl.carousel.min.css";
@import "../vendor/magnific/magnific-popup.css";
@import "../vendor/font-awesome/css/all.min.css";
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
  --bs-heading-color: var(--px-heading);
}

:root,
[data-bs-theme=light] {
  --px-theme: #6366F1;
  --px-theme-2: #4338CA;
  --px-theme-accent: #818CF8;
  --px-white: #FFFFFF;
  --px-white-rgb: 255,255,255;
  --px-text: #E2E8F0;
  --px-text-secondary: #94A3B8;
  --px-heading: #F8FAFC;
  --px-bg: #0F172A;
  --px-dark: #020617;
  --px-card-bg: #1E293B;
  --px-border: rgba(148, 163, 184, 0.1);
}

.logo-light {
  display: none;
}
[data-bs-theme=dark] .logo-light {
  display: block;
}

.logo-dark {
  display: block;
}
[data-bs-theme=dark] .logo-dark {
  display: none;
}

.toggler-menu {
  background-color: var(--px-card-bg);
  color: var(--px-heading);
  border: 1px solid var(--px-border) !important;
  border-radius: 12px;
  padding: 12px 24px;
  line-height: 1;
  position: relative;
  margin-left: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
  min-width: 50px;
  height: 48px;
}
.toggler-menu:hover {
  background-color: var(--px-theme);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}
.toggler-menu span {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: all 0.3s ease;
}
.toggler-menu span::before,
.toggler-menu span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: all 0.3s ease;
}
.toggler-menu span::before {
  top: -6px;
}
.toggler-menu span::after {
  bottom: -6px;
}
.menu-open .toggler-menu span {
  background: transparent;
}
.menu-open .toggler-menu span::before {
  top: 0;
  transform: rotate(45deg);
}
.menu-open .toggler-menu span::after {
  bottom: 0;
  transform: rotate(-45deg);
}

.mob-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding: 20px 25px;
  z-index: 1110;
  backdrop-filter: blur(10px);
  background: rgba(15, 23, 42, 0.8);
  border-bottom: 1px solid var(--px-border);
  transition: all 0.3s ease;
}
.mob-header.scrolled {
  padding: 15px 25px;
  background: rgba(15, 23, 42, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.fixed-header .mob-header {
  background: rgba(15, 23, 42, 0.95);
}
@media (min-width: 1201px) {
  .mob-header {
    display: none;
  }
}

.header-left-fixed {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 285px;
  background: linear-gradient(180deg, var(--px-dark) 0%, var(--px-bg) 100%);
  z-index: 1111;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  transition: all 0.35s ease;
  border-right: 1px solid var(--px-border);
}
@media (max-width: 1200px) {
  .header-left-fixed {
    left: -285px;
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
  }
  .header-left-fixed .logo {
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .header-left-fixed.menu-open {
    left: 0;
  }
  .header-left-fixed.menu-open .logo {
    opacity: 1;
  }
}
.header-left-fixed .logo {
  padding: 50px 30px 30px;
}
.header-left-fixed .main-menu {
  margin: 0;
  padding: 40px 0 0;
  list-style: none;
  -ms-flex: 1;
      flex: 1;
}
.header-left-fixed .main-menu a {
  padding: 12px 30px;
  position: relative;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--px-text-secondary);
  opacity: 1;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}
.header-left-fixed .main-menu a .nav-icon {
  margin-right: 12px;
  font-size: 18px;
  width: 24px;
  text-align: center;
}
@media (max-width: 1200px) {
  .header-left-fixed .main-menu a {
    padding: 12px 20px;
    font-size: 18px;
  }
  .header-left-fixed .main-menu a .nav-icon {
    margin-right: 15px;
    font-size: 20px;
  }
}
.header-left-fixed .main-menu a:hover {
  color: var(--px-heading);
  padding-left: 35px;
}
.header-left-fixed .main-menu a:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--px-theme) 50%, var(--px-theme-accent) 100%);
  transition: ease all 0.35s;
}
.header-left-fixed .main-menu a.active {
  color: var(--px-heading);
  font-weight: 600;
}
.header-left-fixed .main-menu a.active:after {
  width: 65px;
}
.header-left-fixed .social-link {
  padding: 30px;
}
.header-left-fixed .social-link li {
  margin-right: 12px;
}
.header-left-fixed .social-link a {
  width: 42px;
  height: 42px;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  color: var(--px-text-secondary);
  background-color: var(--px-card-bg);
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid var(--px-border);
}
.header-left-fixed .social-link a:hover {
  color: var(--px-white);
  background-color: var(--px-theme);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.footer {
  position: relative;
  border-top: 1px solid var(--px-border);
  padding: 20px 0;
  background: var(--px-dark);
}
.footer .container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
}
.footer .footer-info {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.footer .footer-info .footer-avatar {
  width: 45px;
  height: 45px;
  display: -ms-flexbox;
  display: flex;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--px-theme);
}
.footer .footer-info .footer-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.footer .footer-info h6 {
  margin: 0;
  padding-left: 15px;
  font-size: 16px;
  font-weight: 600;
  color: var(--px-heading);
}
.footer .copyright {
  font-size: 14px;
  margin: 0;
  color: var(--px-text-secondary);
}

.px-btn {
  padding: 16px 36px;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  background: linear-gradient(135deg, var(--px-theme) 0%, var(--px-theme-2) 100%);
  color: var(--px-white);
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  outline: none;
  box-shadow: 0 4px 14px rgba(99, 102, 241, 0.25);
  border: none;
  position: relative;
  overflow: hidden;
}
@media (max-width: 576px) {
  .px-btn {
    padding: 14px 24px;
    font-size: 14px;
  }
}
.px-btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: left 0.3s ease;
}
.px-btn:hover:before {
  left: 100%;
}
.px-btn i {
  margin-left: 10px;
  font-size: 16px;
}
@media (max-width: 576px) {
  .px-btn i {
    margin-left: 6px;
    font-size: 14px;
  }
}
.px-btn:hover {
  color: var(--px-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.35);
}
.px-btn.dark {
  background: var(--px-card-bg);
  color: var(--px-heading);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  border: 1px solid var(--px-border);
}
.px-btn.dark:hover {
  background: var(--px-theme);
  color: var(--px-white);
  border-color: var(--px-theme);
}

/* Responsive button text */
.btn-text-mobile {
  display: none;
}
.btn-text-desktop {
  display: inline;
}
@media (max-width: 576px) {
  .btn-text-mobile {
    display: inline;
  }
  .btn-text-desktop {
    display: none;
  }
}

.bg-g {
  background: linear-gradient(135deg, var(--px-card-bg) 0%, rgba(99, 102, 241, 0.05) 100%);
  position: relative;
}
.bg-g:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.bg-dark {
  background: var(--px-bg);
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}
html,
body {
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

* {
  outline: none !important;
}

/* ----------------------
*   Loading
---------------------------*/
#loading {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--px-bg);
  z-index: 99999;
}

.load-circle {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 50px;
  height: 50px;
}
.load-circle span {
  display: inline-block;
  width: 64px;
  height: 64px;
}
.load-circle span:after {
  content: " ";
  display: block;
  width: 46px;
  height: 46px;
  margin: 1px;
  border-radius: 50%;
  border: 3px solid var(--px-theme);
  border-top-color: transparent;
  -webkit-animation: lds-dual-ring 1.2s linear infinite;
          animation: lds-dual-ring 1.2s linear infinite;
}

@-webkit-keyframes lds-dual-ring {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes lds-dual-ring {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

/* Section
---------------------*/
.section {
  padding: 100px 0;
  position: relative;
}

@media (max-width: 1200px) {
  .section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.section-heading {
  margin-bottom: 65px;
  position: relative;
}
@media (max-width: 991px) {
  .section-heading {
    margin-bottom: 45px;
  }
}
@media (max-width: 767px) {
  .section-heading {
    margin-bottom: 35px;
  }
}
.section-heading h6 {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 600;
  color: var(--px-theme);
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media (max-width: 767px) {
  .section-heading h6 {
    font-size: 14px;
  }
}
.section-heading h2 {
  margin: 0;
  text-transform: uppercase;
  font-size: 42px;
  font-weight: 800;
  color: var(--px-heading);
  letter-spacing: -1px;
}
@media (max-width: 767px) {
  .section-heading h2 {
    font-size: 32px;
  }
}

/* Modal
-------------------------------*/
.mfp-bg {
  background: rgba(2, 6, 23, 0.9);
  opacity: 1;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.px-modal {
  max-width: 1000px;
  margin: 30px auto;
  margin-top: 100px; /* Aggiungi spazio per la navbar - regola in base all'altezza della tua navbar */
  padding: 40px;
  background-color: var(--px-card-bg);
  position: relative;
  border: 1px solid var(--px-border);
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .px-modal {
    margin: 20px;
    margin-top: 80px; /* Navbar potrebbe essere più piccola su mobile */
    padding: 20px;
    max-height: calc(100vh - 120px); /* Altezza schermo meno navbar e margini */
    overflow-y: auto;
  }
}

@media (max-width: 480px) {
  .px-modal {
    margin: 10px;
    margin-top: 70px; /* Navbar ancora più piccola su mobile */
    padding: 15px;
    max-height: calc(100vh - 90px);
  }
}
.px-modal .mfp-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--px-card-bg);
  color: var(--px-white);
  z-index: 1;
  opacity: 1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.px-modal .mfp-close:hover {
  background: var(--px-theme);
  transform: rotate(90deg);
}

.single-blog-box .single-blog-content {
  padding-top: 30px;
}
.single-blog-box .single-blog-content .h2,
.single-blog-box .single-blog-content h2 {
  margin-bottom: 24px;
  color: var(--px-heading);
}
.single-blog-box .blog-meta {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  border-top: 1px solid var(--px-border);
  padding: 25px 0 0;
  margin: 35px 0 0;
}
.single-blog-box .blog-meta .social-link a {
  margin-left: 15px;
  color: var(--px-text-secondary);
  font-size: 18px;
  transition: all 0.3s ease;
}
.single-blog-box .blog-meta .social-link a:hover {
  color: var(--px-theme);
  transform: translateY(-3px);
}

/* Background
-------------------------------*/
body {
  background-color: var(--px-bg);
  color: var(--px-text);
  font-family: 'Inter', sans-serif;
  --bs-body-font-weight: 400;
  --bs-body-font-size: 1rem;
  --bs-body-line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

/* ----------------------
*   owl 
---------------------------*/
.owl-dots {
  text-align: center;
  font-size: 0px;
  padding-top: 35px;
}
.owl-dots .owl-dot {
  display: inline-block;
  vertical-align: top;
  width: 8px;
  height: 8px;
  background: var(--px-border);
  border: none;
  transition: all 0.3s ease;
  border-radius: 50%;
  margin: 0 6px;
}
.owl-dots .owl-dot.active {
  background: var(--px-theme);
  width: 24px;
  border-radius: 4px;
}

.owl-nav {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  pointer-events: none;
}
.owl-nav .owl-next,
.owl-nav .owl-prev {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 40px;
  height: 40px;
  background: var(--px-card-bg);
  color: var(--px-theme);
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  border-radius: 12px;
  pointer-events: auto;
  transition: all 0.3s ease;
  border: 1px solid var(--px-border);
}
.owl-nav .owl-next:hover,
.owl-nav .owl-prev:hover {
  background: var(--px-theme);
  color: var(--px-white);
  transform: scale(1.1);
}
.owl-nav .owl-next {
  right: 0px;
}
@media (min-width: 1201px) {
  .owl-nav .owl-next {
    right: -50px;
  }
}
.owl-nav .owl-prev {
  left: 0px;
}
@media (min-width: 1201px) {
  .owl-nav .owl-prev {
    left: -50px;
  }
}

@media (min-width: 1201px) {
  .wrapper {
    padding-left: 285px;
  }
}

/* ----------------------
*   Home Banner
---------------------------*/
.home-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.home-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at top right, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
              radial-gradient(ellipse at bottom left, rgba(129, 140, 248, 0.1) 0%, transparent 50%);
  pointer-events: none;
}
.home-section .hb-me {
  position: absolute;
  right: 0px;
  top: 0px;
  bottom: 0px;
  height: 100%;
  width: 100vw;
  background-size: contain;
  background-position: bottom right;
  background-repeat: no-repeat;
  opacity: 0.3;
  pointer-events: none;
  filter: grayscale(20%);
  display: none; /* Hidden by default on mobile */
}
@media (min-width: 768px) {
  .home-section .hb-me {
    display: block; /* Show on tablets and up */
    width: 60vw;
    opacity: 0.5;
  }
}
@media (min-width: 992px) {
  .home-section .hb-me {
    width: 60vw;
    opacity: 0.8;
  }
}
@media (min-width: 1201px) {
  .home-section .hb-me {
    width: 50vw;
  }
}
.home-section .hb-text {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .home-section .hb-text {
    padding: 80px 0;
  }
}
@media (max-width: 576px) {
  .home-section .hb-text {
    padding: 60px 0;
  }
}
.home-section .hb-text h1 {
  font-size: 72px;
  font-weight: 800;
  color: var(--px-heading);
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: -2px;
}
@media (max-width: 1440px) {
  .home-section .hb-text h1 {
    font-size: 64px;
  }
}
@media (max-width: 991px) {
  .home-section .hb-text h1 {
    font-size: 48px;
  }
}
@media (max-width: 767px) {
  .home-section .hb-text h1 {
    font-size: 45px;
    margin-bottom: 15px;
    letter-spacing: -1px;
  }
}
@media (max-width: 576px) {
  .home-section .hb-text h1 {
    margin-top: 50px;
    font-size: 40px;
  }
}
.home-section .hb-text h1 b {
  font-weight: 900;
  background: linear-gradient(135deg, var(--px-theme) 0%, var(--px-theme-accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline-block;
}
.home-section .hb-text h1 span {
  display: inline-block;
  position: relative;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--px-theme-accent);
  font-weight: 800;
}
.home-section .hb-text .lead {
  font-size: 24px;
  color: var(--px-text);
  margin-bottom: 40px;
  font-weight: 300;
  letter-spacing: 0.5px;
}
@media (max-width: 767px) {
  .home-section .hb-text .lead {
    font-size: 18px;
    margin-bottom: 30px;
  }
}
@media (max-width: 576px) {
  .home-section .hb-text .lead {
    font-size: 16px;
  }
}
.home-section .hb-text .lead span {
  font-weight: 600;
  color: var(--px-heading);
}
.home-section .hb-text .btn-bar {
  display: flex;
  gap: 15px;
  margin-bottom: 50px;
}
@media (max-width: 576px) {
  .home-section .hb-text .btn-bar {
    flex-direction: column;
    gap: 12px;
  }
  .home-section .hb-text .btn-bar .px-btn {
    width: 100%;
    justify-content: center;
    margin-right: 0 !important;
  }
}
.home-section .hb-text .info-bar {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-top: 60px;
  gap: 30px;
}
@media (max-width: 576px) {
  .home-section .hb-text .info-bar {
    padding-top: 40px;
    gap: 20px;
  }
}
.home-section .hb-text .info-bar p {
  margin: 0;
  font-weight: 500;
  color: var(--px-text);
  font-size: 16px;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .home-section .hb-text .info-bar p {
    font-size: 14px;
    width: 100%;
  }
}
.home-section .hb-text .info-bar p i {
  color: var(--px-theme);
  margin-right: 10px;
  font-size: 18px;
}
.home-section .hb-text .info-bar p span {
  color: var(--px-heading);
}
.home-section .social-fix {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  z-index: 1;
}
@media (max-width: 991px) {
  .home-section .social-fix {
    display: none;
  }
}
.home-section .social-fix .social-links {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  position: relative;
}
.home-section .social-fix .social-links:after {
  content: "";
  position: absolute;
  bottom: -70px;
  left: 0;
  right: 0;
  width: 1px;
  height: 60px;
  background: var(--px-border);
  margin: auto;
}
.home-section .social-fix .social-links a {
  width: 38px;
  height: 38px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  border: 1px solid var(--px-border);
  color: var(--px-text-secondary);
  border-radius: 12px;
  margin: 6px 0;
  transition: all 0.3s ease;
  background: var(--px-card-bg);
}
.home-section .social-fix .social-links a:hover {
  background: var(--px-theme);
  color: var(--px-white);
  transform: scale(1.1);
  border-color: var(--px-theme);
}

/* ----------------------
* About Section
---------------------------*/
.about-left {
  max-width: 400px;
  text-align: center;
}
@media (max-width: 1200px) {
  .about-left {
    margin: 0 auto;
  }
}
.about-left .about-avatar {
  margin-bottom: 32px;
}
.about-left .about-avatar img {
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.about-left h3 {
  font-weight: 800;
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: -1px;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--px-theme) 0%, var(--px-theme-accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline-block;
  margin: 0 0 10px;
}
@media (max-width: 767px) {
  .about-left h3 {
    font-size: 32px;
  }
}
.about-left p {
  font-size: 20px;
  margin: 0;
  color: var(--px-text);
  font-weight: 400;
}
@media (max-width: 767px) {
  .about-left p {
    font-size: 18px;
  }
}
.about-left p span {
  color: var(--px-text-secondary);
  font-weight: 300;
}
.about-left .btn-bar {
  margin: 24px 0 0;
  display: flex;
  gap: 12px;
  justify-content: center;
}

.about-bio {
  max-width: 600px;
  margin-bottom: 30px;
  line-height: 1.8;
  color: var(--px-text);
}

.about-contact p {
  margin: 0 0 20px;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .about-contact p {
    font-size: 14px;
  }
}
.about-contact p i {
  color: var(--px-theme);
  margin-right: 12px;
  font-size: 20px;
  width: 24px;
}
.about-contact p span {
  color: var(--px-heading);
}

.about-exp {
  border-top: 1px solid var(--px-border);
  margin-top: 40px;
  padding-top: 40px;
}
.about-exp .a-number {
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  padding-bottom: 20px;
}
.about-exp .a-number h6 {
  font-weight: 900;
  font-size: 48px;
  line-height: 1;
  letter-spacing: -2px;
  background: linear-gradient(135deg, var(--px-theme) 0%, var(--px-theme-accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline-block;
  margin: 0;
}
.about-exp .a-number span {
  -ms-flex: 1;
      flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  padding-left: 20px;
  color: var(--px-heading);
}
.about-exp .lead {
  font-size: 16px;
  line-height: 1.8;
  color: var(--px-text);
}
.about-exp blockquote {
  background: var(--px-card-bg);
  padding: 35px;
  border-radius: 16px;
  position: relative;
  display: -ms-flexbox;
  display: flex;
  margin: 20px 0 0;
  border: 1px solid var(--px-border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
@media (max-width: 767px) {
  .about-exp blockquote {
    padding: 25px;
  }
}
.about-exp blockquote i {
  font-size: 60px;
  line-height: 0.9;
  color: var(--px-theme);
  opacity: 0.3;
}
@media (max-width: 767px) {
  .about-exp blockquote i {
    font-size: 40px;
  }
}
.about-exp blockquote p {
  margin: 0;
  -ms-flex: 1;
      flex: 1;
  padding: 0 0 0 30px;
  font-size: 18px;
  font-weight: 500;
  font-style: italic;
  color: var(--px-heading);
  line-height: 1.6;
}
@media (max-width: 767px) {
  .about-exp blockquote p {
    font-size: 16px;
  }
}

/* ----------------------
* Experience Section
---------------------------*/
.experience-section .section-heading {
  margin: 0;
}
.experience-section .section-heading p {
  max-width: 370px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--px-text);
}
@media (max-width: 991px) {
  .experience-section .section-heading p {
    max-width: 100%;
  }
}
.experience-section .section-heading h2 {
  margin-bottom: 20px;
}
.experience-section .section-heading .btn-bar {
  margin: 40px 0 0;
}

.resume-box {
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: 545px;
}
@media (max-width: 991px) {
  .resume-box {
    max-width: 100%;
  }
}
.resume-box li {
  background: rgba(255, 255, 255, 0.02);
  padding: 30px;
  border-radius: 16px;
  border: 1px solid var(--px-border);
  transition: all 0.3s ease;
}
.resume-box li:hover {
  background: rgba(99, 102, 241, 0.05);
  transform: translateX(10px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}
.resume-box li + li {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .resume-box li {
    padding: 20px;
  }
}
.resume-box .r-meta {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  font-size: 14px;
  font-weight: 500;
  padding-bottom: 12px;
  color: var(--px-text-secondary);
}
@media (max-width: 767px) {
  .resume-box .r-meta {
    font-size: 12px;
  }
}
.resume-box .r-meta label {
  color: var(--px-theme);
}
.resume-box h6 {
  margin: 0;
  font-size: 24px;
  color: var(--px-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}
@media (max-width: 767px) {
  .resume-box h6 {
    font-size: 20px;
  }
}

/* ----------------------
* Service Section
---------------------------*/
.services-section .accordion .accordion-item {
  background: none;
  border: none;
  padding: 0;
  margin: 0 0 20px 0;
}
.services-section .accordion .accordion-item .accordion-button {
  border: none;
  box-shadow: none;
  outline: none !important;
  background: var(--px-card-bg);
  padding: 30px;
  position: relative;
  display: -ms-flexbox;
  display: flex;
  color: var(--px-text);
  border: 1px solid var(--px-border);
  border-radius: 16px;
  transition: all 0.3s ease;
}
.services-section .accordion .accordion-item .accordion-button:hover {
  background: rgba(99, 102, 241, 0.05);
  transform: translateX(5px);
}
.services-section .accordion .accordion-item .accordion-button:after {
  display: none;
}
.services-section .accordion .accordion-item .accordion-button .accordion-icon {
  position: absolute;
  top: 0;
  right: 30px;
  bottom: 0;
  width: 35px;
  height: 35px;
  margin: auto;
}
.services-section .accordion .accordion-item .accordion-button .accordion-icon:before, 
.services-section .accordion .accordion-item .accordion-button .accordion-icon:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background: var(--px-text-secondary);
  transition: all 0.3s ease;
}
.services-section .accordion .accordion-item .accordion-button .accordion-icon:before {
  width: 20px;
  height: 2px;
}
.services-section .accordion .accordion-item .accordion-button .accordion-icon:after {
  width: 2px;
  height: 20px;
}
.services-section .accordion .accordion-item .accordion-button:not(.collapsed) {
  background: rgba(99, 102, 241, 0.1);
  border-color: var(--px-theme);
}
.services-section .accordion .accordion-item .accordion-button:not(.collapsed) .accordion-icon:after {
  height: 0;
}
.services-section .accordion .accordion-item .accordion-button:not(.collapsed) .accordion-icon:before,
.services-section .accordion .accordion-item .accordion-button:not(.collapsed) .accordion-icon:after {
  background: var(--px-theme);
}
.services-section .accordion .accordion-item .accordion-button:not(.collapsed) .services-title {
  background: linear-gradient(135deg, var(--px-theme) 0%, var(--px-theme-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.services-section .accordion .accordion-item .accordion-button:not(.collapsed) .services-small-desc {
  opacity: 0;
}
.services-section .accordion .accordion-item .accordion-button .services-title {
  -ms-flex: 0 0 33.3333%;
      flex: 0 0 33.3333%;
  width: 33.3333%;
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
  position: relative;
  color: var(--px-heading);
  letter-spacing: -0.5px;
}
@media (max-width: 991px) {
  .services-section .accordion .accordion-item .accordion-button .services-title {
    -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .services-section .accordion .accordion-item .accordion-button .services-title {
    -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    width: 100%;
    font-size: 20px;
  }
}
.services-section .accordion .accordion-item .accordion-button .services-small-desc {
  -ms-flex: 1;
      flex: 1;
  padding-left: 30px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--px-text-secondary);
}
@media (max-width: 991px) {
  .services-section .accordion .accordion-item .accordion-button .services-small-desc {
    display: none;
  }
}
.services-section .accordion .accordion-item .accordion-body {
  padding: 0;
  background: transparent;
  border: none;
}
.services-section .accordion .accordion-item .accordion-body > div {
  background: var(--px-card-bg);
  padding: 40px;
  border: 1px solid var(--px-border);
  border-radius: 0 0 16px 16px;
  margin-top: -16px;
  border-top: none;
}
@media (max-width: 767px) {
  .services-section .accordion .accordion-item .accordion-body > div {
    padding: 30px 20px;
  }
}
.services-section .accordion .accordion-item .accordion-body h3 {
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--px-heading);
}
.services-section .accordion .accordion-item .accordion-body .s-text {
  color: var(--px-text);
  line-height: 1.8;
}

/* ----------------------
* Work Section
---------------------------*/
.work-box {
  background: var(--px-card-bg);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid var(--px-border);
}
.work-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.work-box .work-img {
  overflow: hidden;
  height: 300px;
}
.work-box .work-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}
.work-box:hover .work-img img {
  transform: scale(1.1);
}
.work-box .work-text {
  padding: 30px;
}
.work-box .work-text h6 {
  font-size: 14px;
  color: var(--px-theme);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.work-box .work-text h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .work-box .work-text h4 {
    font-size: 20px;
  }
}
.work-box .work-text h4 a {
  color: var(--px-heading);
}
.work-box .work-text h4 a:hover {
  color: var(--px-theme);
}
.work-box .work-text .btn-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.work-box .work-text .btn-bar a.gallery-link {
  width: 40px;
  height: 40px;
  color: var(--px-text-secondary);
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  font-size: 24px;
  line-height: 1;
  border: 1px solid var(--px-border);
  border-radius: 50%;
  transition: all 0.3s ease;
}
.work-box .work-text .btn-bar a.gallery-link:hover {
  background: var(--px-theme);
  color: var(--px-white);
  border-color: var(--px-theme);
}

/* ----------------------
* Contact Section
---------------------------*/
@media (min-width: 992px) {
  .contact-section .section-heading {
    margin-bottom: 45px;
  }
}

.contact-form {
  padding: 50px;
  border-radius: 16px;
}
@media (max-width: 767px) {
  .contact-form {
    padding: 30px;
  }
}
.contact-form .contact-head {
  margin-bottom: 40px;
}
.contact-form .contact-head h4 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 15px;
  color: var(--px-heading);
  letter-spacing: -1px;
}
@media (max-width: 767px) {
  .contact-form .contact-head h4 {
    font-size: 28px;
  }
}
.contact-form .form-label {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--px-text-secondary);
  margin-bottom: 8px;
}
.contact-form .form-control {
  background: var(--px-bg);
  border-radius: 12px;
  padding: 16px 20px;
  border: 1px solid var(--px-border);
  color: var(--px-text);
  box-shadow: none;
  font-size: 15px;
  transition: all 0.3s ease;
}
.contact-form .form-control:focus {
  border-color: var(--px-theme);
  background: rgba(99, 102, 241, 0.03);
}
.contact-form .g-recaptcha {
  margin-bottom: 20px;
}

.contact-info ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.contact-info li {
  display: -ms-flexbox;
  display: flex;
  background: var(--px-card-bg);
  padding: 25px;
  border-radius: 16px;
  border: 1px solid var(--px-border);
  transition: all 0.3s ease;
}
.contact-info li:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}
.contact-info li .icon {
  width: 50px;
  height: 50px;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  background: var(--px-theme);
  color: var(--px-white);
  font-size: 22px;
  border-radius: 12px;
  flex-shrink: 0;
}
.contact-info li .text {
  padding-left: 20px;
  -ms-flex: 1;
      flex: 1;
}
.contact-info li .text label {
  font-weight: 700;
  font-size: 16px;
  color: var(--px-heading);
  display: block;
  margin-bottom: 5px;
}
.contact-info li .text p {
  font-size: 14px;
  margin: 0;
  color: var(--px-text);
}
.contact-info li .text p a {
  color: var(--px-text);
}
.contact-info li .text p a:hover {
  color: var(--px-theme);
}
.contact-info li + li {
  margin-top: 20px;
}

.google-map {
  margin-top: 30px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--px-border);
}
.google-map iframe {
  filter: grayscale(100%) invert(90%);
}

/* Certification Section */
.certification-post {
  text-align: center;
  padding: 20px;
  background: var(--px-card-bg);
  border-radius: 16px;
  border: 1px solid var(--px-border);
  transition: all 0.3s ease;
}
.certification-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.certification-post .certification-post-img {
  display: flex;
  justify-content: center;
  align-items: center;
}

.degree-badge {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 211px;
    height: 225px;
    aspect-ratio: 1;
    margin: 0 auto;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 32px rgba(102, 126, 234, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    padding: 20px;
}

.badge-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    height: 100%;
}

.badge-content i {
    font-size: 5rem;
    color: white;
    margin-bottom: 12px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.university-name {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
    margin-top: 20px;
}


.degree-badge i {
    z-index: 2;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* .certification-post:hover .degree-badge::before {
    transform: translateX(100%);
} */

.degree-badge i {
    z-index: 2;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.certification-post-img .degree-badge {
    transition: transform 0.3s ease;
}

.certification-post:hover .degree-badge {
    transform: translateY(-5px);
}