/*
Template Name: BMV Consulting - Professional Portfolio
Author: BMV Consulting
Author URI: https://bmvconsulting.com
Description: BMV Consulting - Professional Project Management Portfolio
Version: 2.0
*/

/*------------------------------------------------------------------
[Table of contents]
      	+ General
		  - Miscellaneous
		  - Preloader
		  - Scroll Bar
		  - Title Section
		  - Buttons
        - Header
        + Sections
          - Home
		  + About
		  	- Infos
            - Skills
            - Resume
          - Facts
          - Portfolio
		  - Clients
		  - Contact
		  - Testimonials
		  - Blog
		  - Copyright
		- Blog Page
        - Responsive Design Styles
  
-------------------------------------------------------------------*/

/* [ GENERAL ] */
/*================================================== */

/*** Miscellaneous ***/

html {
  height: 100%;
}

body {
  height: 100%;
  font-family: "Livvic", sans-serif;
  font-size: 18px;
  background-color: #0b0b0b;
  margin: 0;
  color: #fff;
}

#wrapper {
  width: 100%;
  overflow-x: auto;
}

main {
  display: flex;
}

section {
  position: relative;
  min-height: 100vh;
  height: 100vh;
}

.main-section {
  background-color: #0b0b0b;
}

.img-container {
  position: relative;
  overflow: hidden;
}

.img-container:after {
  content: " ";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0b0b0b;
  z-index: 2;
  transition: all 1s ease;
}

.img-container.animated:after {
  left: 100%;
}

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

.z-1 {
  z-index: 1;
}

.separator {
  transform: translateX(calc(100% - 1px));
  height: 100vh;
}

.opposite-separator {
  height: 100vh;
}

/* Smooth Vertical Section Separator */
.smooth-separator {
  width: 2px;
  height: 100vh;
  background: linear-gradient(180deg, transparent, #20b2aa, transparent);
  margin: 0 auto;
  position: relative;
  opacity: 0.7;
  overflow: hidden;
}

.smooth-separator::before {
  content: "";
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, transparent, #daa520, transparent);
  border-radius: 2px;
  animation: verticalFlow 4s infinite ease-in-out;
}

.smooth-separator::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 100%;
  background: linear-gradient(
    180deg,
    transparent 30%,
    rgba(32, 178, 170, 0.3) 50%,
    transparent 70%
  );
  border-radius: 3px;
  animation: verticalPulse 3s infinite ease-in-out;
}

/* BMV CONSULTING - SMOOTH SEPARATOR LEFT POSITIONED */
.smooth-separator-left {
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100vh;
  background: linear-gradient(180deg, transparent, #20b2aa, transparent);
  opacity: 0.7;
  overflow: hidden;
  z-index: 5;
}

.smooth-separator-left::before {
  content: "";
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, transparent, #daa520, transparent);
  border-radius: 2px;
  animation: verticalFlow 4s infinite ease-in-out;
}

.smooth-separator-left::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 100%;
  background: linear-gradient(
    180deg,
    transparent 30%,
    rgba(32, 178, 170, 0.3) 50%,
    transparent 70%
  );
  border-radius: 3px;
  animation: verticalPulse 3s infinite ease-in-out;
}

.smooth-separator-right {
  position: absolute;
  top: 0;
  right: 0;
}

@keyframes verticalFlow {
  0% {
    top: -100%;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}

@keyframes verticalPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: translateX(-50%) scaleY(1);
  }
  50% {
    opacity: 0.8;
    transform: translateX(-50%) scaleY(1.1);
  }
}

@keyframes horizontalFlow {
  0% {
    left: -100%;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}

@keyframes horizontalPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: translateY(-50%) scaleX(1);
  }
  50% {
    opacity: 0.8;
    transform: translateY(-50%) scaleX(1.1);
  }
}

@media screen and (max-width: 1024px) {
  .smooth-separator-left {
    width: 100%;
    height: 2px;
  }
  .smooth-separator-left::before {
    width: 100%;
    height: 4px;
    animation: horizontalFlow 4s infinite ease-in-out;
    background: linear-gradient(90deg, transparent, #daa520, transparent);
    display: none;
  }
  .smooth-separator-left::after {
    width: 100%;
    height: 6px;
    background: linear-gradient(
      -90deg,
      transparent 30%,
      rgba(32, 178, 170, 0.3) 50%,
      transparent 70%
    );
    animation: horizontalPulse 3s infinite ease-in-out;
  }
}

/*** Preloader ***/

#preloader {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 99999;
  display: flex;
  pointer-events: none;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  z-index: -1;
  background-color: #222;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

#preloader:after {
  left: auto;
  right: 0;
}

#preloader .line {
  margin: auto;
  width: 3px;
  border-radius: 4px;
  height: 250px;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.8s ease 0s;
  -o-transition: all 0.8s ease 0s;
  transition: all 0.8s ease 0s;
}

.line:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 3px;
  height: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-animation: animateline 1000ms ease-in-out 0s forwards;
  -o-animation: animateline 1000ms ease-in-out 0s forwards;
  animation: animateline 1000ms ease-in-out 0s forwards;
}

.line:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: transparent;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-animation: animatebgline 1200ms linear 0s infinite;
  -o-animation: animatebgline 1200ms linear 0s infinite;
  animation: animatebgline 1200ms linear 0s infinite;
  animation-delay: 2000ms;
}

@keyframes animateline {
  0% {
    height: 0;
  }

  100% {
    height: 100%;
  }
}

@keyframes animatebgline {
  0% {
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  100% {
    -webkit-transform: translateY(200%);
    -ms-transform: translateY(200%);
    -o-transform: translateY(200%);
    transform: translateY(200%);
  }
}

.preloaded .line:after {
  opacity: 0;
}

.preloaded .line {
  opacity: 0;
  height: 100% !important;
}

.preloaded:before,
.preloaded:after {
  -webkit-animation: finishanimation 500ms ease-in-out 500ms forwards;
  -o-animation: finishanimation 500ms ease-in-out 500ms forwards;
  animation: finishanimation 500ms ease-in-out 500ms forwards;
}

@keyframes finishanimation {
  0% {
    width: 50%;
  }

  100% {
    width: 0;
  }
}

/* ================================================================ */
/* BMV CONSULTING - LUXURY SCROLL PROGRESS                         */
/* ================================================================ */

.scroll-progress {
  display: flex;
  justify-content: space-between;
  position: fixed;
  bottom: 32px;
  z-index: 1;
  width: calc(100vw - 300px);
  margin: 0 auto;
  left: 0;
  right: 0;
}

.scroll-progress > div {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}

.scroll-progress > div > div {
  height: 6px;
  width: 100%;
  background: rgba(11, 11, 11, 0.8);
  border-radius: 4px;
  border: 1px solid rgba(194, 157, 73, 0.2);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3),
    inset 0 1px 2px rgba(194, 157, 73, 0.1);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.mCSB_horizontal.mCSB_inside > .mCSB_container {
  margin-bottom: 0;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal {
  max-width: calc(100vw - 300px);
  margin: 0 auto;
  bottom: 32px;
  z-index: 11;
  opacity: 1;
}

.mCSB_dragger_bar {
  background: transparent !important;
}

/* BMV Consulting Luxury Scroll Handle */
.mCSB_dragger_bar:before {
  position: absolute;
  content: "";
  top: 2px;
  left: 0;
  width: 35px;
  height: 12px;
  background: linear-gradient(135deg, #c29d49 0%, #d4af5c 50%, #c29d49 100%);
  border-radius: 6px;
  border: 1px solid #e6c373;
  box-shadow: 0 3px 12px rgba(194, 157, 73, 0.4), 0 1px 3px rgba(0, 0, 0, 0.6),
    inset 0 1px 1px rgba(255, 255, 255, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger,
.mCS-dark-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 35px !important;
}

/* Luxury Scroll Label */
.mCSB_dragger_bar:after {
  position: absolute;
  content: "BMV";
  top: -32px;
  left: 2px;
  height: 24px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  color: #c29d49;
  text-transform: uppercase;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.7;
}

/* Hover Effects - Premium Feel */
.mCSB_dragger_bar:hover:before {
  opacity: 1;
  background: linear-gradient(135deg, #d4af5c 0%, #e6c373 50%, #d4af5c 100%);
  box-shadow: 0 5px 20px rgba(194, 157, 73, 0.6), 0 2px 6px rgba(0, 0, 0, 0.8),
    inset 0 1px 2px rgba(255, 255, 255, 0.4);
  transform: scale(1.05);
}

.mCSB_dragger_bar:hover:after {
  opacity: 1;
  color: #e6c373;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8), 0 0 10px rgba(194, 157, 73, 0.5);
  transform: translateY(-2px);
}

.mCSB_draggerRail {
  display: none;
}

/*** Title Section ***/

.custom-title {
  margin-right: 150px;
  margin-left: 150px;
  text-align: center;
  writing-mode: vertical-rl;
  transform: scale(-1, -1);
  height: 100vh;
}

.custom-title h3 {
  font-size: 60px;
  line-height: 65px;
  font-weight: 800;
  white-space: nowrap;
  position: relative;
  margin: 0;
  letter-spacing: 2px;
}

.custom-title h3 > span,
.custom-title h3 > span > span {
  display: block;
}

/*** Buttons ***/

.custom-btn {
  box-shadow: none !important;
  border-radius: 40px;
  font-weight: 500;
  color: #fff;
  padding: 14px 36px;
  outline: none !important;
  overflow: hidden;
  display: inline-block;
  position: relative;
  border: 0;
  font-weight: 500;
  text-transform: capitalize;
  cursor: pointer;
  text-decoration: none;
  user-select: none;
  background-color: #222;
}

.custom-btn span {
  position: relative;
  z-index: 2;
}

.custom-btn:before {
  position: absolute;
  content: "";
  height: 130%;
  top: 0;
  right: 0;
  width: 0;
  transition-duration: 0.5s;
  z-index: 1;
}

.custom-btn:hover {
  color: #fff;
}

.custom-btn:hover:before {
  width: calc(100% + 100px);
  left: 0;
}

.custom-btn i {
  margin-left: 10px;
}

.animated-btn {
  display: block;
  background-color: transparent;
  text-align: center;
  text-decoration: none;
  -webkit-transition: 1s;
  transition: 1s;
  height: 60px;
  width: 60px;
  margin: 0 auto;
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  right: 60px;
  top: calc(50vh - 30px);
}

.animated-btn:hover span:before {
  left: 60px;
}

.animated-btn:hover span:after {
  left: 0;
}

.animated-btn:hover span {
  background: none;
}

.animated-btn span {
  display: block;
  -webkit-transition: 1s;
  transition: 1s;
  z-index: 1;
  margin-bottom: 0;
  width: 60px;
  height: 60px;
  background: none;
  position: relative;
  overflow: hidden;
}

.animated-btn span:before,
.animated-btn span:after {
  content: "\f178";
  font-family: FontAwesome;
  line-height: 60px;
  position: absolute;
  left: 0;
  width: 60px;
  text-align: center;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 27px;
}

.animated-btn span:before {
  top: 0;
  left: 0;
}

.animated-btn span:after {
  left: -60px;
  color: #fff;
}

/* [ HEADER ] */
/*================================================== */

header {
  position: fixed;
  z-index: 111;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
}

header .header-inner {
  display: flex;
  justify-content: space-between;
  padding: 30px;
  opacity: 0;
}

/* ======================================================= */
/* BMV CONSULTING - LUXURY MINIMALIST HEADER MENU - FINAL */
/* ======================================================= */

/* Basic menu structure */
header .header-inner .menu ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

header .header-inner .menu ul li {
  margin-right: 45px;
}

header .header-inner .menu ul li:last-child {
  margin-right: 0;
}

/* Menu link styling - luxury minimalist design */
header .header-inner .menu ul li span {
  color: #bfbfbf;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.35s ease;
  position: relative;
  padding: 10px 4px;
  display: inline-block;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
}

/* Hover state */
header .header-inner .menu ul li span:hover {
  color: #c29d49;
}

/* Active state - luxury BMV styling */
header .header-inner .menu ul li span.active {
  color: #ffffff !important;
  font-weight: 500 !important;
}

/* Underline animation effect */
header .header-inner .menu ul li span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 4px;
  width: 0;
  height: 2px;
  background: #c29d49;
  transition: width 0.4s ease-out;
  transform-origin: left center;
}

/* Show underline on hover and active */
header .header-inner .menu ul li span:hover::after,
header .header-inner .menu ul li span.active::after {
  width: calc(100% - 8px);
}

/* [ SECTIONS ] */
/*================================================== */

/*** HOME SECTION ***/

.home {
  min-width: 100vw;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home > div > div h1 {
  position: relative;
  z-index: 1;
  font-size: 150px;
  font-weight: 800;
  line-height: 150px;
  margin: 0;
}

.home > div > div h1 > span > span:not(.intro),
.home > div > div h1 > span {
  display: block;
  overflow: hidden;
}

.home > div > div h1 > span {
  padding: 0 200px;
  line-height: 160px;
}

.home > div > div h1 > span > span:not(.intro) {
  transform: translate(-50%, -50%);
  letter-spacing: 0.1em;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 0px;
  -webkit-text-stroke-color: #333;
  text-shadow: 8px 8px #fff, 20px 20px #222;
}

.home > div > div .intro {
  position: absolute;
  height: 170px;
  width: 200px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  left: 620px;
  top: 0px;
  color: #fff;
  font-size: 18px;
  flex-direction: column;
  line-height: 30px;
  margin: 0;
  text-align: left;
  font-weight: normal;
}

.home .cta {
  position: absolute;
  right: 60px;
  top: calc(50vh - 30px);
  z-index: 1;
}

/* ================================================ */
/* BMV CONSULTING - MODERN ANIMATED HOME BACKGROUND */
/* ================================================ */

/* Modern Color Palette for Animations */
:root {
  --bmv-teal: #14b8a6;
  --bmv-teal-light: #5eead4;
  --bmv-teal-dark: #0f766e;
  --bmv-gold: #f59e0b;
  --bmv-gold-light: #fbbf24;
}

/* Enhanced Home Background with Animations */
.home.image {
  position: relative;
  background: radial-gradient(
      ellipse at top left,
      rgba(20, 184, 166, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at bottom right,
      rgba(245, 158, 11, 0.02) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at center,
      rgba(20, 184, 166, 0.01) 0%,
      transparent 70%
    ),
    #0b0b0b;
  overflow: hidden;
}

/* Floating Geometric Elements */
.home.image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 15% 20%,
      rgba(20, 184, 166, 0.08) 0%,
      transparent 25%
    ),
    radial-gradient(
      circle at 85% 80%,
      rgba(245, 158, 11, 0.06) 0%,
      transparent 30%
    ),
    radial-gradient(
      circle at 70% 30%,
      rgba(20, 184, 166, 0.04) 0%,
      transparent 35%
    ),
    radial-gradient(
      circle at 30% 70%,
      rgba(245, 158, 11, 0.03) 0%,
      transparent 40%
    );
  animation: floatingBackground 25s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

/* Secondary Floating Layer */
.home.image::after {
  content: "";
  position: absolute;
  top: -20%;
  left: -20%;
  right: -20%;
  bottom: -20%;
  background-image: radial-gradient(
      circle at 80% 10%,
      rgba(94, 234, 212, 0.05) 0%,
      transparent 20%
    ),
    radial-gradient(
      circle at 20% 90%,
      rgba(251, 191, 36, 0.04) 0%,
      transparent 25%
    ),
    radial-gradient(
      circle at 60% 60%,
      rgba(20, 184, 166, 0.03) 0%,
      transparent 30%
    );
  animation: floatingBackgroundSlow 30s ease-in-out infinite reverse;
  pointer-events: none;
  z-index: 0;
}

/* Floating Animation Keyframes */
@keyframes floatingBackground {
  0%,
  100% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
    opacity: 0.6;
  }
  25% {
    transform: translateY(-15px) translateX(10px) rotate(1deg);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-25px) translateX(-5px) rotate(-0.5deg);
    opacity: 1;
  }
  75% {
    transform: translateY(-10px) translateX(-15px) rotate(0.5deg);
    opacity: 0.7;
  }
}

@keyframes floatingBackgroundSlow {
  0%,
  100% {
    transform: translateY(0px) translateX(0px) scale(1) rotate(0deg);
    opacity: 0.4;
  }
  33% {
    transform: translateY(20px) translateX(-20px) scale(1.05) rotate(-1deg);
    opacity: 0.6;
  }
  66% {
    transform: translateY(-15px) translateX(25px) scale(0.95) rotate(1deg);
    opacity: 0.8;
  }
}

/* Subtle Particle Animation */
.home.image .particle-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.home.image .particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(20, 184, 166, 0.3);
  border-radius: 50%;
  animation: floatingParticles 15s linear infinite;
}

.home.image .particle:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
  background: rgba(245, 158, 11, 0.4);
}

.home.image .particle:nth-child(2) {
  left: 30%;
  animation-delay: -3s;
  background: rgba(20, 184, 166, 0.3);
}

.home.image .particle:nth-child(3) {
  left: 50%;
  animation-delay: -6s;
  background: rgba(94, 234, 212, 0.2);
}

.home.image .particle:nth-child(4) {
  left: 70%;
  animation-delay: -9s;
  background: rgba(251, 191, 36, 0.3);
}

.home.image .particle:nth-child(5) {
  left: 90%;
  animation-delay: -12s;
  background: rgba(20, 184, 166, 0.25);
}

@keyframes floatingParticles {
  0% {
    top: 100%;
    opacity: 0;
    transform: translateX(0px) scale(0);
  }
  10% {
    opacity: 1;
    transform: translateX(10px) scale(1);
  }
  90% {
    opacity: 1;
    transform: translateX(-10px) scale(1);
  }
  100% {
    top: -10%;
    opacity: 0;
    transform: translateX(20px) scale(0);
  }
}

/* Ensure content stays above background */
.home > div {
  position: relative;
  z-index: 2;
}

/* Subtle glow effect on hover for interactive elements */
.home .cta {
  transition: all 0.3s ease;
}

.home .cta:hover {
  filter: drop-shadow(0 0 20px rgba(20, 184, 166, 0.3));
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .home.image::before,
  .home.image::after {
    animation-duration: 20s;
  }

  .home.image .particle {
    width: 3px;
    height: 3px;
    animation-duration: 12s;
  }
}

@media (max-width: 480px) {
  .home.image::before,
  .home.image::after {
    opacity: 0.7;
  }

  .home.image .particle {
    display: none; /* Hide particles on very small screens for performance */
  }
}

/*** ABOUT SECTION ***/

.about {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Infos */

.about .info {
  display: flex;
  padding-left: 150px;
}
.about.main-section .img-container > div,
.about.main-section .img-container > div > div {
  height: 100%;
}
.about img.my-photo {
  width: 380px;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
}

.about h2 {
  align-self: flex-start;
  font-size: 70px;
  line-height: 80px;
  margin-top: 45px;
  margin-left: 40px;
  font-weight: 700;
  position: relative;
}

.about h2 span {
  display: block;
  overflow: hidden;
}

.about .infos {
  display: flex;
  margin: 45px 0 0 100px;
  white-space: nowrap;
}

.about .infos ul li {
  line-height: 44px;
  position: relative;
}

.about .infos ul li > span,
.about .infos ul li > span > span {
  overflow: hidden;
  display: block;
  white-space: nowrap;
  position: relative;
}

.about .infos ul li > span > span {
  padding-left: 25px;
}

.about .infos ul li > span > span:before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #14b8a6, #f59e0b);
  border-radius: 2px;
  content: "";
  transition: all 0.3s ease;
  opacity: 0.6;
}

.about .infos ul li:hover > span > span:before {
  opacity: 1;
  transform: translateY(-50%) scale(1.2);
  box-shadow: 0 0 8px rgba(20, 184, 166, 0.4);
}

.about .infos ul li > span > span span:first-child {
  color: rgba(255, 255, 255, 0.7);
  margin-right: 7px;
}

.about .infos ul li > span > span span:nth-child(2) {
  font-weight: 500;
}

.about .infos ul li > span > span span:nth-child(2) a {
  /* iOS fixes*/
  text-decoration: none !important;
  color: #fff !important;
}

.about .infos ul li:first-child > span > span {
  animation-delay: 0.1s;
}

.about .infos ul li:nth-child(2) > span > span {
  animation-delay: 0.2s;
}

.about .infos ul li:nth-child(3) > span > span {
  animation-delay: 0.3s;
}

.about .infos ul li:nth-child(4) > span > span {
  animation-delay: 0.4s;
}

.about .infos ul:nth-child(2) {
  margin-left: 75px;
}

/* Mission Statement */
.about .mission-statement {
  width: 100%;
  padding: 60px 0;
  margin: 40px 0;
  position: relative;
}

.about .mission-statement > div > div {
  margin-bottom: 40px;
}

.about .mission-statement h3 {
  font-size: 32px;
  color: #20b2aa;
  margin-bottom: 20px;
  font-weight: 600;
  position: relative;
}

.about .mission-statement h3:after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #20b2aa, #daa520);
  border-radius: 2px;
}

.about .mission-statement p {
  font-size: 18px;
  line-height: 1.8;
  color: #cccccc;
  margin: 0;
  font-weight: 400;
  max-width: 800px;
}

.about .mission-statement div:hover h3 {
  color: #daa520;
  transition: color 0.3s ease;
}

.about .mission-statement div:hover p {
  color: #ffffff;
  transition: color 0.3s ease;
}

.about .skills {
  min-height: 460px;
  position: relative;
  display: flex;
  align-items: center;
}

.about .skills .skills-content {
  display: flex;
}

.about .skills > div > div {
  display: flex;
  flex-direction: column;
}

.about .skills > div > div:not(:first-child) {
  margin-left: 80px;
}

.about .skills > div > div > div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about .skills > div > div > div:first-child {
  margin-bottom: 60px;
}

.about .skills > div > div > div span {
  width: 100px;
  height: 100px;
  display: flex;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: rotate(45deg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.about .skills > div > div > div span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(20, 184, 166, 0.1),
    rgba(245, 158, 11, 0.1)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about .skills > div > div > div span:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(20, 184, 166, 0.4);
  transform: rotate(45deg) scale(1.1) translateY(-5px);
  box-shadow: 0 15px 35px rgba(20, 184, 166, 0.15),
    0 0 0 1px rgba(20, 184, 166, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.about .skills > div > div > div span:hover::before {
  opacity: 1;
}

.about .skills > div > div > div span i {
  font-size: 34px;
  transform: rotate(-45deg);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.8);
}

.about .skills > div > div > div span:hover i {
  color: #14b8a6;
  filter: drop-shadow(0 0 8px rgba(20, 184, 166, 0.4));
  transform: rotate(-45deg) scale(1.1);
}

.about .skills > div > div > div h4 {
  margin: 40px 0 0;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}

/* Resume */

.about .resume {
  min-height: 460px;
  position: relative;
  display: flex;
  align-items: center;
  margin-right: 150px;
}

.about .resume .custom-title {
  margin-right: 0;
}

.about .timeline {
  white-space: nowrap;
}

.about .timeline ol {
  padding: 315px 0 315px 130px;
  transition: all 1s;
  margin: 0;
}

.about .timeline ol li {
  position: relative;
  display: inline-block;
  list-style-type: none;
  width: 160px;
  height: 3px;
  background: #222;
}

.about .timeline ol li:first-child {
  background-color: transparent;
}

.about .timeline ol li:last-child {
  width: 140px;
  opacity: 0;
}

.about .timeline ol li:not(:first-child) {
  margin-left: 14px;
}

.about .timeline ol li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% + 3px);
  bottom: 0;
  width: 12px;
  height: 12px;
  transform: translateY(-50%) rotate(45deg);
  border-radius: 3px;
}

.about .timeline ol li > div {
  position: absolute;
  left: 18px;
  width: 300px;
  font-size: 1rem;
  white-space: normal;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  cursor: pointer;
  perspective: 1000px;
  transform-style: preserve-3d;
}

.about .timeline ol li > div::before {
  content: "";
  position: absolute;
  top: 100%;
  left: calc(50% - 15px);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 15px 0 15px;
  border-color: rgba(255, 255, 255, 0.08) transparent transparent transparent;
  transition: all 0.3s ease;
}

.about .timeline ol li > div:hover {
  transform: translateY(-8px) rotateX(5deg) rotateY(-2deg) scale(1.02);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(20, 184, 166, 0.3);
  box-shadow: 0 15px 35px rgba(20, 184, 166, 0.12),
    0 8px 25px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.about .timeline ol li > div:hover::before {
  border-color: rgba(255, 255, 255, 0.12) transparent transparent transparent;
}

.about .timeline ol li > div > div {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about .timeline ol li > div > div::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(20, 184, 166, 0.03),
    rgba(245, 158, 11, 0.03)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.about .timeline ol li > div > div:before {
  font-family: "FontAwesome";
  position: absolute;
  font-size: 90px;
  opacity: 0.03;
  height: 100%;
  display: flex;
  align-items: center;
  line-height: 100%;
  transition: all 0.4s ease;
  z-index: 0;
}

.about .timeline ol li > div:hover > div {
  transform: translateZ(20px);
}

.about .timeline ol li > div:hover > div::after {
  opacity: 1;
}

.about .timeline ol li > div:hover > div:before {
  opacity: 0.06;
}

.about .timeline ol li > div > div.experience:before {
  content: "\f0b1";
  right: -40px;
  top: 6px;
}

.about .timeline ol li > div > div.education:before {
  right: -40px;
  top: 6px;
  content: "\f19d";
}

.about .timeline ol li > div > div > h4 {
  font-size: 21px;
  margin-bottom: 20px;
  font-weight: 600;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.95);
  position: relative;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
  opacity: 0.7;
}

.about .timeline ol li > div:hover > div > h4 {
  opacity: 1;
  transform: translateZ(15px) translateY(-2px);
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.about .timeline ol li > div > div i {
  margin-right: 10px;
  position: relative;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  transform-style: preserve-3d;
  opacity: 0.7;
}

.about .timeline ol li > div:hover > div i {
  opacity: 1;
  transform: translateZ(25px) scale(1.1) rotateY(5deg);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.about .timeline ol li > div > div > p {
  margin: 0 0 8px;
  color: rgba(238, 238, 238, 0.8);
  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;
  position: relative;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
  opacity: 0.7;
}

.about .timeline ol li > div:hover > div > p {
  opacity: 1;
  transform: translateZ(10px);
}

/* Staggered 3D elevation for multiple paragraphs */
.about .timeline ol li > div:hover > div > p:nth-child(3) {
  transform: translateZ(8px);
  transition-delay: 0.05s;
}

.about .timeline ol li > div:hover > div > p:nth-child(4) {
  transform: translateZ(6px);
  transition-delay: 0.1s;
}

.about .timeline ol li > div > div > p:last-child {
  margin: 0;
}

.about .timeline ol li:nth-child(odd) > div {
  top: -40px;
  margin-top: calc(-100% - 16px);
}

.about .timeline ol li:nth-child(odd) > div::before {
  top: 100%;
  border-width: 16px;
  border-color: #222 transparent transparent transparent;
}

.about .timeline ol li:nth-child(even) > div {
  top: calc(100% + 34px);
}

.about .timeline ol li:nth-child(even) > div::before {
  top: -32px;
  border-width: 16px;
  border-color: transparent transparent transparent #222;
  transform: rotate(-90deg);
}

.about .timeline time {
  display: block;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 8px;
}

/* ========================================================= */
/* BMV CONSULTING - LUXURY FACTS SECTION                    */
/* ========================================================= */

.facts {
  background: linear-gradient(
    135deg,
    rgba(11, 11, 11, 0.95) 0%,
    rgba(18, 18, 18, 0.9) 50%,
    rgba(11, 11, 11, 0.95) 100%
  );
  position: relative;
  display: flex;
}

.facts:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(212, 175, 55, 0.03) 0%,
    rgba(184, 134, 11, 0.02) 50%,
    transparent 100%
  );
  pointer-events: none;
}

.facts:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(212, 175, 55, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(184, 134, 11, 0.02) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 80%,
      rgba(255, 215, 0, 0.02) 0%,
      transparent 50%
    );
  pointer-events: none;
}

/* BMV CONSULTING - FACTS SECTION BREATHING GRADIENTS */
.facts::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    /* Primary breathing gradient - center left */ radial-gradient(
      ellipse 400px 300px at 25% 50%,
      rgba(212, 175, 55, 0.04) 0%,
      rgba(255, 215, 0, 0.02) 30%,
      rgba(212, 175, 55, 0.015) 60%,
      transparent 80%
    ),
    /* Secondary breathing gradient - top right */
      radial-gradient(
        ellipse 350px 250px at 75% 25%,
        rgba(184, 134, 11, 0.035) 0%,
        rgba(212, 175, 55, 0.02) 25%,
        rgba(255, 215, 0, 0.01) 50%,
        transparent 75%
      ),
    /* Tertiary breathing gradient - bottom center */
      radial-gradient(
        ellipse 450px 200px at 50% 85%,
        rgba(255, 215, 0, 0.03) 0%,
        rgba(184, 134, 11, 0.018) 35%,
        rgba(212, 175, 55, 0.012) 65%,
        transparent 85%
      ),
    /* Ambient breathing gradient - top left */
      radial-gradient(
        ellipse 300px 300px at 15% 15%,
        rgba(212, 175, 55, 0.025) 0%,
        rgba(255, 215, 0, 0.015) 40%,
        transparent 70%
      ),
    /* Background ambient gradient - bottom right */
      radial-gradient(
        ellipse 250px 350px at 85% 80%,
        rgba(184, 134, 11, 0.02) 0%,
        rgba(212, 175, 55, 0.01) 45%,
        transparent 75%
      );
  background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%;
  animation: breathingGradients 24s ease-in-out infinite;
  pointer-events: none;
}

.facts .floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.facts .floating-shape {
  position: absolute;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.1) 0%,
    rgba(255, 215, 0, 0.06) 50%,
    rgba(184, 134, 11, 0.08) 100%
  );
  border: 1px solid rgba(212, 175, 55, 0.15);
  backdrop-filter: blur(3px);
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.1);
}

.facts .floating-shape:nth-child(1) {
  width: 80px;
  height: 80px;
  top: 10%;
  left: 8%;
  border-radius: 50%;
  animation: elegantFloat 20s ease-in-out infinite;
}

.facts .floating-shape:nth-child(2) {
  width: 60px;
  height: 60px;
  top: 60%;
  right: 12%;
  border-radius: 30px;
  transform: rotate(45deg);
  animation: spiralFloat 18s ease-in-out infinite reverse;
}

.facts .floating-shape:nth-child(3) {
  width: 100px;
  height: 100px;
  top: 35%;
  left: 3%;
  border-radius: 50%;
  opacity: 0.7;
  animation: orbitalFloat 22s ease-in-out infinite;
}

.facts .floating-shape:nth-child(4) {
  width: 45px;
  height: 45px;
  top: 20%;
  right: 6%;
  border-radius: 22px;
  transform: rotate(30deg);
  animation: pulseFloat 16s ease-in-out infinite;
}

.facts .floating-shape:nth-child(5) {
  width: 55px;
  height: 55px;
  bottom: 25%;
  left: 15%;
  border-radius: 50%;
  animation: gentleFloat 19s ease-in-out infinite reverse;
}

.facts .floating-shape:nth-child(6) {
  width: 90px;
  height: 90px;
  bottom: 15%;
  right: 20%;
  border-radius: 45px;
  transform: rotate(60deg);
  opacity: 0.8;
  animation: waveFloat 24s ease-in-out infinite;
}

/* Breathing Gradients Animation */
@keyframes breathingGradients {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
    filter: blur(0px);
  }
  25% {
    transform: scale(1.08);
    opacity: 0.8;
    filter: blur(0.5px);
  }
  50% {
    transform: scale(1.15);
    opacity: 1;
    filter: blur(1px);
  }
  75% {
    transform: scale(1.12);
    opacity: 0.9;
    filter: blur(0.8px);
  }
}

@keyframes elegantFloat {
  0%,
  100% {
    transform: translate(0px, 0px) scale(1);
    opacity: 0.6;
  }
  25% {
    transform: translate(15px, -20px) scale(1.1);
    opacity: 0.8;
  }
  50% {
    transform: translate(30px, -10px) scale(1.05);
    opacity: 1;
  }
  75% {
    transform: translate(15px, -25px) scale(1.08);
    opacity: 0.9;
  }
}

@keyframes spiralFloat {
  0%,
  100% {
    transform: translate(0px, 0px) rotate(45deg) scale(1);
    opacity: 0.5;
  }
  25% {
    transform: translate(20px, -15px) rotate(135deg) scale(1.15);
    opacity: 0.7;
  }
  50% {
    transform: translate(10px, -30px) rotate(225deg) scale(1.1);
    opacity: 0.9;
  }
  75% {
    transform: translate(-10px, -20px) rotate(315deg) scale(1.05);
    opacity: 0.8;
  }
}

@keyframes orbitalFloat {
  0%,
  100% {
    transform: translate(0px, 0px) rotate(0deg);
    opacity: 0.4;
  }
  25% {
    transform: translate(25px, -15px) rotate(90deg);
    opacity: 0.6;
  }
  50% {
    transform: translate(40px, 0px) rotate(180deg);
    opacity: 0.8;
  }
  75% {
    transform: translate(25px, 15px) rotate(270deg);
    opacity: 0.7;
  }
}

@keyframes pulseFloat {
  0%,
  100% {
    transform: translate(0px, 0px) rotate(30deg) scale(1);
    opacity: 0.6;
    filter: brightness(1);
  }
  33% {
    transform: translate(-10px, -15px) rotate(120deg) scale(1.2);
    opacity: 0.9;
    filter: brightness(1.2);
  }
  66% {
    transform: translate(10px, -25px) rotate(210deg) scale(1.1);
    opacity: 0.8;
    filter: brightness(1.1);
  }
}

@keyframes gentleFloat {
  0%,
  100% {
    transform: translate(0px, 0px) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(20px, -20px) scale(1.08);
    opacity: 0.9;
  }
}

@keyframes waveFloat {
  0%,
  100% {
    transform: translate(0px, 0px) rotate(60deg) scale(1);
    opacity: 0.6;
  }
  20% {
    transform: translate(15px, -10px) rotate(120deg) scale(1.05);
    opacity: 0.7;
  }
  40% {
    transform: translate(25px, -20px) rotate(180deg) scale(1.1);
    opacity: 0.8;
  }
  60% {
    transform: translate(15px, -30px) rotate(240deg) scale(1.08);
    opacity: 0.9;
  }
  80% {
    transform: translate(5px, -15px) rotate(300deg) scale(1.03);
    opacity: 0.8;
  }
}

.facts > div {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 210px;
  z-index: 1;
}

.facts > div > div > div {
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.08) 0%,
    rgba(255, 255, 255, 0.02) 50%,
    rgba(184, 134, 11, 0.06) 100%
  );
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 85px;
  transform: rotate(45deg);
  backdrop-filter: blur(15px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 0 20px rgba(212, 175, 55, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.facts > div > div > div::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.05) 0%,
    transparent 50%,
    rgba(184, 134, 11, 0.03) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.facts > div > div > div:hover {
  transform: rotate(45deg) scale(1.05);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 0 30px rgba(212, 175, 55, 0.2);
}

.facts > div > div > div:hover::before {
  opacity: 1;
}

.facts > div > div:not(:first-child) > div {
  margin-left: 40px;
}

.facts > div > div:nth-child(odd) > div {
  margin-top: -220px;
}

.facts > div > div:nth-child(even) > div {
  margin-top: 220px;
}

.facts > div > div > div > div {
  transform: rotate(-45deg);
  backface-visibility: hidden;
  z-index: 2;
  position: relative;
}

.facts > div > div > div > div h3 {
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #d4af37 0%, #ffd700 50%, #b8860b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  letter-spacing: -1px;
}

.facts > div > div > div > div p {
  margin: 0;
  text-transform: capitalize;
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.4;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.facts > div > div > div > div p span {
  display: block;
  color: rgba(212, 175, 55, 0.9);
  font-weight: 600;
  margin-top: 2px;
}

/* ========================================================= */
/* BMV CONSULTING - LUXURY PORTFOLIO SECTION               */
/* ========================================================= */

.portfolio {
  min-width: 100vw;
  width: 100vw;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  /* BMV CONSULTING - SAME BACKGROUND AS HOME SECTION */
  background: radial-gradient(
      at 0 0,
      rgba(20, 184, 166, 0.03) 0%,
      rgba(0, 0, 0, 0) 50%
    ),
    radial-gradient(
      at 100% 100%,
      rgba(245, 158, 11, 0.02) 0%,
      rgba(0, 0, 0, 0) 50%
    ),
    radial-gradient(rgba(20, 184, 166, 0.01) 0%, rgba(0, 0, 0, 0) 70%), #0b0b0b;
}

/* BMV CONSULTING - PORTFOLIO PARTICLES ANIMATION */
.portfolio-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.portfolio-particles .particle {
  position: absolute;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.6) 0%,
    rgba(255, 215, 0, 0.4) 50%,
    rgba(184, 134, 11, 0.5) 100%
  );
  border-radius: 50%;
  pointer-events: none;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.portfolio-particles .particle:nth-child(1) {
  width: 4px;
  height: 4px;
  top: 20%;
  left: 10%;
  animation: portfolioFloat 8s ease-in-out infinite;
  animation-delay: 0s;
}

.portfolio-particles .particle:nth-child(2) {
  width: 6px;
  height: 6px;
  top: 60%;
  left: 20%;
  animation: portfolioFloat 10s ease-in-out infinite;
  animation-delay: 1s;
}

.portfolio-particles .particle:nth-child(3) {
  width: 3px;
  height: 3px;
  top: 40%;
  left: 30%;
  animation: portfolioFloat 12s ease-in-out infinite;
  animation-delay: 2s;
}

.portfolio-particles .particle:nth-child(4) {
  width: 5px;
  height: 5px;
  top: 80%;
  left: 40%;
  animation: portfolioFloat 9s ease-in-out infinite;
  animation-delay: 3s;
}

.portfolio-particles .particle:nth-child(5) {
  width: 4px;
  height: 4px;
  top: 25%;
  left: 50%;
  animation: portfolioFloat 11s ease-in-out infinite;
  animation-delay: 4s;
}

.portfolio-particles .particle:nth-child(6) {
  width: 7px;
  height: 7px;
  top: 70%;
  left: 60%;
  animation: portfolioFloat 8s ease-in-out infinite;
  animation-delay: 5s;
}

.portfolio-particles .particle:nth-child(7) {
  width: 3px;
  height: 3px;
  top: 35%;
  left: 70%;
  animation: portfolioFloat 13s ease-in-out infinite;
  animation-delay: 0.5s;
}

.portfolio-particles .particle:nth-child(8) {
  width: 5px;
  height: 5px;
  top: 55%;
  left: 80%;
  animation: portfolioFloat 9s ease-in-out infinite;
  animation-delay: 1.5s;
}

.portfolio-particles .particle:nth-child(9) {
  width: 4px;
  height: 4px;
  top: 15%;
  left: 90%;
  animation: portfolioFloat 10s ease-in-out infinite;
  animation-delay: 2.5s;
}

.portfolio-particles .particle:nth-child(10) {
  width: 6px;
  height: 6px;
  top: 85%;
  left: 85%;
  animation: portfolioFloat 11s ease-in-out infinite;
  animation-delay: 3.5s;
}

.portfolio-particles .particle:nth-child(11) {
  width: 3px;
  height: 3px;
  top: 45%;
  left: 5%;
  animation: portfolioFloat 12s ease-in-out infinite;
  animation-delay: 4.5s;
}

.portfolio-particles .particle:nth-child(12) {
  width: 5px;
  height: 5px;
  top: 75%;
  left: 15%;
  animation: portfolioFloat 8s ease-in-out infinite;
  animation-delay: 5.5s;
}

.portfolio-particles .particle:nth-child(13) {
  width: 4px;
  height: 4px;
  top: 30%;
  left: 25%;
  animation: portfolioFloat 14s ease-in-out infinite;
  animation-delay: 1s;
}

.portfolio-particles .particle:nth-child(14) {
  width: 6px;
  height: 6px;
  top: 65%;
  left: 35%;
  animation: portfolioFloat 9s ease-in-out infinite;
  animation-delay: 2s;
}

.portfolio-particles .particle:nth-child(15) {
  width: 3px;
  height: 3px;
  top: 50%;
  left: 45%;
  animation: portfolioFloat 10s ease-in-out infinite;
  animation-delay: 3s;
}

@keyframes portfolioFloat {
  0%,
  100% {
    transform: translateY(0px) translateX(0px);
    opacity: 0.4;
  }
  25% {
    transform: translateY(-20px) translateX(10px);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-10px) translateX(-5px);
    opacity: 1;
  }
  75% {
    transform: translateY(-30px) translateX(15px);
    opacity: 0.6;
  }
}

.swiper-portfolio {
  width: 100%;
  height: 100vh;
  padding-right: 250px;
}

.portfolio .single-item {
  display: flex;
  align-items: center;
  height: 100vh;
  position: relative;
}

.portfolio .single-item .swiper-pagination-clickable .swiper-pagination-bullet {
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.8) 0%,
    rgba(255, 215, 0, 0.6) 50%,
    rgba(184, 134, 11, 0.7) 100%
  );
  opacity: 1;
  width: 12px;
  height: 12px;
  margin: 0 8px !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.2);
}

.portfolio
  .single-item
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 40px;
  border-radius: 8px;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 1) 0%,
    rgba(255, 215, 0, 0.9) 50%,
    rgba(184, 134, 11, 0.95) 100%
  );
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.4);
}

/* BMV CONSULTING - ELEGANT CARD-BASED PORTFOLIO DETAILS */
.portfolio .single-item .details {
  margin-left: 40px;
  white-space: nowrap;
  cursor: grab;
}

.portfolio .single-item .details h4 {
  font-size: 36px;
  line-height: 42px;
  font-weight: 700;
  white-space: nowrap;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.95);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  letter-spacing: -0.8px;
}

.portfolio .single-item .details .project-subtitle {
  font-size: 14px;
  color: rgba(20, 184, 166, 0.8);
  font-weight: 500;
  margin-bottom: 32px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.portfolio .single-item .details .details-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 4px solid rgba(20, 184, 166, 0.3);
  border-radius: 16px;
  backdrop-filter: blur(20px);
  padding: 28px 32px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio .single-item .details .details-card:hover {
  transform: translateY(-4px);
  border-left-color: rgba(20, 184, 166, 1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2), 0 0 30px rgba(20, 184, 166, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.portfolio .single-item .details .project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.portfolio .single-item .details .project-tag {
  background: rgba(20, 184, 166, 0.12);
  border: 1px solid rgba(20, 184, 166, 0.25);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.portfolio .single-item .details .project-tag:hover {
  background: rgba(20, 184, 166, 0.2);
  border-color: rgba(20, 184, 166, 0.4);
  transform: translateY(-1px);
}

.portfolio .single-item .details .project-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

.portfolio .single-item .details .meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.portfolio .single-item .details .meta-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.portfolio .single-item .details .meta-value {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.portfolio .single-item .details .cta-button {
  background: linear-gradient(
    135deg,
    rgba(20, 184, 166, 0.8) 0%,
    rgba(20, 184, 166, 0.6) 100%
  );
  border: 1px solid rgba(20, 184, 166, 0.4);
  border-radius: 12px;
  padding: 14px 28px;
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(20, 184, 166, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.portfolio .single-item .details .cta-button:hover {
  background: linear-gradient(
    135deg,
    rgba(20, 184, 166, 1) 0%,
    rgba(20, 184, 166, 0.8) 100%
  );
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(20, 184, 166, 0.3),
    0 0 24px rgba(20, 184, 166, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.portfolio .single-item .details .cta-button i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.portfolio .single-item .details .cta-button:hover i {
  transform: translateX(2px);
}

/* BMV CONSULTING - ELEGANT MINIMALISTIC CTA BUTTON */
.portfolio .single-item .details .cta-button.style-elegant {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  padding: 14px 0;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 13px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  width: auto;
  max-width: none;
  white-space: nowrap;
}

.portfolio .single-item .details .cta-button.style-elegant::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(20, 184, 166, 1),
    rgba(6, 182, 212, 1)
  );
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio .single-item .details .cta-button.style-elegant:hover {
  color: rgba(255, 255, 255, 1);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  padding-left: 8px;
}

.portfolio .single-item .details .cta-button.style-elegant:hover::before {
  width: 100%;
}

.portfolio .single-item .details .cta-button.style-elegant i {
  font-size: 11px;
  opacity: 0.7;
  transition: all 0.4s ease;
}

.portfolio .single-item .details .cta-button.style-elegant:hover i {
  opacity: 1;
  transform: translateX(4px);
  color: rgba(20, 184, 166, 1);
}

/* BMV CONSULTING - ULTRA MINIMAL TEXT STYLE */
.portfolio .single-item .details .cta-button.style-minimal-text {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  font-size: 12px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  width: auto;
  white-space: nowrap;
}

.portfolio .single-item .details .cta-button.style-minimal-text:hover {
  color: rgba(20, 184, 166, 0.9);
  transform: translateX(2px);
}

.portfolio .single-item .details .cta-button.style-minimal-text i {
  font-size: 10px;
  transition: transform 0.3s ease;
}

.portfolio .single-item .details .cta-button.style-minimal-text:hover i {
  transform: translateX(3px);
}

/* BMV CONSULTING - GHOST BUTTON STYLE */
.portfolio .single-item .details .cta-button.style-ghost {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 10px 16px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 12px;
  backdrop-filter: blur(5px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  width: auto;
  white-space: nowrap;
}

.portfolio .single-item .details .cta-button.style-ghost:hover {
  border-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.95);
  transform: translateY(-1px);
}

.portfolio .single-item .details .cta-button.style-ghost i {
  font-size: 10px;
  transition: transform 0.3s ease;
}

.portfolio .single-item .details .cta-button.style-ghost:hover i {
  transform: translateX(2px);
}
/* [ BLOG PAGE ] */
/*================================================== */

.blog-page h1 {
  margin: 100px 0;
  font-size: 70px;
  text-align: center;
  font-weight: 700;
}

.blog-page .container {
  max-width: 1152px;
}

.blog-page .container .row > div:not(.pagination-container) {
  height: auto;
  margin-bottom: 30px;
}

.blog-page .blog-content {
  padding-bottom: 100px;
  padding-left: 15px;
  padding-right: 15px;
}

.blog-page .blog-content .post {
  position: relative;
  border-radius: 20px;
  height: 100%;
  background-color: #222;
}

.blog-page .blog-content .post:not(:first-child) {
  margin-left: 75px;
}

.blog-page .blog-content .post a {
  display: block;
  color: #fff;
  position: relative;
  text-decoration: none;
  border-radius: 20px;
}

.blog-page .blog-content .post a .img-holder {
  overflow: hidden;
  display: block;
  border-radius: 20px 20px 0 0;
}

.blog-page .blog-content .post a img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  transition: 0.5s;
  border-radius: 20px 20px 0 0;
}

.blog-page .blog-content .post a:hover img {
  transform: scale(1.2);
}

.blog-page .blog-content .post a .content {
  padding: 35px 30px 30px;
  position: relative;
  background-color: #222;
  border-radius: 0 0 20px 20px;
}

.blog-page .blog-content .post a .content span.title {
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
  display: block;
}

.blog-page .blog-content .post a .content p {
  font-size: 16px;
  margin: 15px 0 0;
  line-height: 30px;
  opacity: 0.8;
}

.blog-page .blog-content .post .category {
  position: absolute;
  top: -14px;
  text-transform: uppercase;
  font-size: 14px;
  padding: 3px 20px;
  border-radius: 20px;
  left: 30px;
  height: 28px;
  line-height: 23px;
  font-weight: 500;
}

.blog-page .blog-content .meta {
  font-size: 12px;
  margin-top: 20px;
  opacity: 0.6;
}

.blog-page .blog-content .meta > div i {
  margin-right: 6px;
}

.blog-page .blog-content .meta > div:not(:first-child) {
  margin-left: 15px;
}

.blog-page .pagination-container {
  margin-top: 30px;
}

.blog-page .pagination {
  margin-bottom: 30px;
}

.blog-page .page-link {
  color: #fff;
  background-color: #222;
  border: 1px solid #222;
  padding: 0;
  margin: 0 15px;
  border-radius: 50% !important;
  width: 43px;
  height: 43px;
  line-height: 43px;
  text-align: center;
  transition: 0.3s;
}

.page-item.active .page-link {
  border: 1px solid #222;
}

.blog-page .page-link:focus,
.blog-page .page-link:active {
  box-shadow: none !important;
}

.blog-page .page-link:hover {
  color: #fff !important;
}

.blog-page .main-post {
  max-width: 700px;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
}

.blog-page .main-post h3 {
  margin: 15px 0 30px;
  font-size: 40px;
  line-height: 50px;
  font-weight: 800;
}

.blog-page .main-post img {
  margin-bottom: 30px;
  border-radius: 10px;
  max-width: 100%;
  height: auto;
}

/* [ RESPONSIVE ] */
/*================================================== */

@media (min-width: 1025px) {
  body:not(.blog-page) {
    overflow: hidden;
  }

  .animated-layer,
  .animated-layer:before {
    opacity: 0;
  }

  .animated-layer.animated,
  .animated-layer.animated:before {
    opacity: 1;
  }

  body.body-safari .blog {
    padding-right: 686px;
  }

  body.body-safari .copyright {
    margin-left: -596px;
    width: 276px;
  }

  body.body-safari section.main-section.blog::after {
    display: none;
  }

  body.body-safari .testimonials .quote-container > div {
    width: 380px;
  }

  body.body-safari .blog .latestposts > div {
    width: 360px;
  }

  .hide-desktop {
    display: none !important;
  }

  /* HIDE MOBILE MENU ON DESKTOP */
  header .mobile-menu {
    display: none !important;
  }
}

@media (max-width: 1024px) {
  section {
    min-height: initial;
    height: auto;
  }
  .scroll-progress {
    display: none;
  }
  .home {
    overflow-x: hidden !important;
  }
  #home h1 {
    text-align: center;
  }
  .separator-mobile-down {
    transform: translateY(100%);
  }

  .separator-mobile-up {
    transform: translateY(-100%);
  }

  .about .infos ul li > span > span {
    animation-delay: initial !important;
  }

  header .mobile-menu {
    display: block !important;
  }

  .custom-btn {
    display: inline-flex;
  }

  .custom-btn:before {
    display: none;
  }

  .my-photo-container {
    width: 380px;
    height: 500px;
    margin: 0 auto;
    padding-top: 30px;
  }

  .my-photo-container.animated:after {
    display: none;
  }

  #menuToggle {
    display: inline-block;
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 1111;
    user-select: none;
    /* padding: 19px 0 0 16px; */
    padding: 0;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, .6);
    background: linear-gradient(135deg, rgba(212, 175, 55, .1) 0%, rgba(184, 134, 11, .05) 100%);
    box-shadow: 0 8px 32px rgba(212, 175, 55, .15), inset 0 1px rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  #menuToggle input {
    display: flex;
    width: 54px;
    height: 54px;
    position: absolute;
    cursor: pointer;
    opacity: 0;
    z-index: 2;
    top: 0;
    left: 0;
  }

  #menuToggle > span {
    display: flex;
    width: 23px;
    height: 2px;
    margin-bottom: 5px;
    position: relative;
    background: rgba(212, 175, 55, .6);
    border-radius: 3px;
    z-index: 1;
    transform-origin: 5px 0;
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1),
      background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
  }

  #menuToggle > span:first-child {
    transform-origin: 0 0;
  }

  #menuToggle > span:nth-last-child(2) {
    transform-origin: 0 100%;
  }

  #menuToggle input:checked ~ span {
    opacity: 1;
    transform: rotate(45deg) translate(4px, 0);
    background: rgba(212, 175, 55, .6);
  }

  #menuToggle input:checked ~ span:nth-last-child(3) {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
  }

  #menuToggle input:checked ~ span:nth-last-child(2) {
    transform: rotate(-45deg) translate(2px, 4px);
  }

  #menu {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding-top: 60px;
    background-color: #222;
    -webkit-font-smoothing: antialiased;
    transform-origin: 0 0;
    transform: translate(-100%, 0);
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  }

  #menuToggle input:checked ~ ul {
    transform: none;
  }

  #menu li {
    position: relative;
    padding-left: 30px;
  }

  #menu li:after {
    position: absolute;
    content: "";
    height: 1px;
    width: calc(100% - 60px);
    background: #333;
    left: 30px;
  }

  #menu li:last-child:after,
  .home > div > div .intro {
    display: none;
  }

  #menu li a {
    color: #fff;
    transition-delay: 2s;
    font-size: 26px;
    display: block;
    text-decoration: none;
    padding: 14px 0;
    position: relative;
  }

  #home .animated-layer {
    opacity: 0 !important;
  }

  #home .animated-layer.animated {
    opacity: 1 !important;
  }

  .home > div > div h1 > span {
    padding: 0;
    line-height: 120px;
  }

  .home > div > div h1 > span > span:not(.intro) {
    padding: 0 15px;
  }

  .home .animated-btn.cta {
    position: relative;
    margin-top: 40px;
    right: initial;
    top: initial;
  }

  .home .animated-btn.cta span:before {
    transform: rotate(90deg);
  }

  .home .animated-btn:hover span:before {
    left: 0;
  }

  .animated-btn span:after {
    display: none;
  }

  .about {
    padding: 0 30px 16px;
  }

  .about .info {
    padding: 0;
    width: 100%;
  }

  .about h2 {
    text-align: center;
    font-size: 55px;
    line-height: 65px;
    margin: 35px 0;
  }

  .about .infos {
    margin: 0 auto;
    justify-content: center;
    max-width: 538px;
  }

  .about .skills .skills-content {
    flex-wrap: wrap;
    justify-content: center;
  }

  .about .skills .custom-title {
    margin: 70px 0;
  }

  .about .skills > div > div {
    flex-direction: row;
    justify-content: space-between;
  }

  .about .skills > div > div:not(:first-child) {
    margin-left: 0;
  }

  .about .skills > div > div > div {
    margin: 0 20px;
  }

  .about .skills > div > div > div span {
    width: 90px;
    height: 90px;
  }

  .about .skills > div > div > div:first-child {
    margin-bottom: 50px;
  }

  .about .skills > div > div > div h4 {
    margin-top: 25px;
  }

  .about .resume {
    margin-right: 0;
  }

  .about .resume .custom-title {
    margin-bottom: 70px;
    margin-top: 20px;
  }

  .about .timeline ol,
  .about .timeline ol li {
    width: auto;
  }

  .about .timeline {
    width: 100%;
  }

  .about .timeline ol {
    padding: 0;
    transform: none !important;
  }

  .about .timeline ol li {
    display: block;
    height: auto;
    background: transparent;
  }

  .about .timeline ol li:not(:first-child) {
    margin-left: auto;
  }

  .about .timeline ol li div {
    width: 100%;
    height: auto !important;
    margin: 0 auto 50px;
  }

  .about .timeline ol li div {
    position: static;
  }

  .about .timeline ol li:nth-child(odd) div,
  .about .timeline ol li:nth-child(even) div {
    transform: none;
    margin-top: initial;
    top: initial;
    max-width: 538px;
  }

  .about .timeline ol li:nth-child(odd) > div::before,
  .about .timeline ol li:nth-child(even) > div::before {
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    border: none;
    border-left: 4px solid #222;
    height: 50px;
  }

  .about .timeline ol li:last-child,
  .about .timeline ol li:nth-last-child(2) > div::before,
  .about .timeline ol li:not(:last-child)::after {
    display: none;
  }

  /* BMV CONSULTING - LUXURY FACTS RESPONSIVE */
  .facts > div {
    padding: 40px 0 140px;
  }

  .facts > div > div > div {
    margin: 120px 0 0 !important;
    width: 200px;
    height: 200px;
    background: linear-gradient(
      135deg,
      rgba(212, 175, 55, 0.1) 0%,
      rgba(255, 255, 255, 0.03) 50%,
      rgba(184, 134, 11, 0.08) 100%
    );
    border: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4),
      inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 0 15px rgba(212, 175, 55, 0.08);
  }

  .facts > div > div > div > div h3 {
    font-size: 56px;
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 50%, #b8860b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 3px 10px rgba(212, 175, 55, 0.25);
  }

  .facts > div > div > div > div p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  }

  .facts > div > div > div > div p span {
    color: rgba(212, 175, 55, 0.9);
    font-weight: 600;
  }

  /* BMV CONSULTING - LUXURY PORTFOLIO RESPONSIVE */
  .swiper-portfolio {
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
  }

  .portfolio .single-item .main-content,
  .portfolio .single-item .main-content img {
    width: 100%;
    height: 250px;
    border-radius: 12px;
    border: 2px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), 0 0 15px rgba(212, 175, 55, 0.08);
  }

  .portfolio .single-item .details {
    width: 100%;
    margin-left: 0;
    margin-top: 20px;
    max-width: none;
  }

  .portfolio .single-item .details h4 {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 6px;
  }

  .portfolio .single-item .details .project-subtitle {
    font-size: 12px;
    margin-bottom: 20px;
  }

  .portfolio .single-item .details .details-card {
    padding: 20px 24px;
    border-radius: 12px;
  }

  .portfolio .single-item .details .project-tags {
    gap: 8px;
    margin-bottom: 20px;
  }

  .portfolio .single-item .details .project-tag {
    padding: 4px 10px;
    font-size: 11px;
  }

  .portfolio .single-item .details .project-meta {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 20px;
  }

  .portfolio .single-item .details .meta-label {
    font-size: 11px;
  }

  .portfolio .single-item .details .meta-value {
    font-size: 14px;
  }

  .portfolio .single-item .details .cta-button {
    padding: 12px 20px;
    font-size: 13px;
  }

  .portfolio-nav-item {
    display: none;
  }

  .videocontainer {
    height: 250px;
    border-radius: 12px;
    border: 2px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), 0 0 15px rgba(212, 175, 55, 0.08);
  }

  .portfolio .single-item {
    transition: 0.3s;
  }

  .portfolio .single-item:not(.swiper-slide-active) {
    opacity: 0.3;
  }

  .clients {
    padding: 110px 30px;
  }

  .clients .clients-container h3 {
    font-size: 35px;
    line-height: 35px;
  }

  .contact .boxes > div > div {
    width: 100%;
  }

  .contact {
    padding: 85px 30px 15px;
  }

  .contact .boxes > div > div {
    margin-bottom: 70px;
  }

  .blog .latestposts > div {
    width: 100%;
  }

  .blog .latestposts a img {
    width: 100%;
    height: auto;
  }

  .blog .latestposts a .content span.title {
    font-size: 20px;
    line-height: 26px;
  }

  .blog-page h1 {
    margin: 70px 0;
    font-size: 35px;
  }

  .blog-page .blog-content {
    padding-bottom: 70px;
  }

  .blog-page .main-post h3 {
    font-size: 25px;
    line-height: 35px;
  }

  .copyright {
    padding: 20px 0 30px;
  }
}

/* ============================================= */
/* BMV CONSULTING - LUXURY SCROLL INDICATOR    */
/* ============================================= */

.bmv-scroll-indicator {
  position: fixed;
  right: 40px;
  top: 50vh;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.8;
}

.bmv-scroll-indicator:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.05);
}

.bmv-scroll-indicator .scroll-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
}

/* Luxury Mouse/Scroll Icon with Glassmorphism */
.bmv-scroll-indicator .scroll-icon {
  position: relative;
  width: 32px;
  height: 50px;
  border: 2px solid rgba(212, 175, 55, 0.6);
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.1) 0%,
    rgba(184, 134, 11, 0.05) 100%
  );
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 10px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.bmv-scroll-indicator .scroll-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.05) 0%,
    transparent 50%,
    rgba(184, 134, 11, 0.03) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.bmv-scroll-indicator .scroll-icon:hover {
  border-color: rgba(212, 175, 55, 0.9);
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.15) 0%,
    rgba(184, 134, 11, 0.1) 100%
  );
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3), inset 0 -1px 0 rgba(0, 0, 0, 0.1),
    0 0 30px rgba(194, 157, 73, 0.2);
}

.bmv-scroll-indicator .scroll-icon:hover::before {
  opacity: 1;
}

.bmv-scroll-indicator .scroll-wheel {
  width: 4px;
  height: 14px;
  border-radius: 2px;
  background: rgba(212, 175, 55, 0.3);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.bmv-scroll-indicator .scroll-dot {
  width: 4px;
  height: 8px;
  background: linear-gradient(
    to bottom,
    rgba(212, 175, 55, 1) 0%,
    rgba(255, 215, 0, 0.9) 50%,
    rgba(184, 134, 11, 0.8) 100%
  );
  border-radius: 2px;
  animation: luxuryScrollAnimation 2.5s ease-in-out infinite;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
}

@keyframes luxuryScrollAnimation {
  0%,
  20% {
    transform: translateY(-120%);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  80%,
  100% {
    transform: translateY(220%);
    opacity: 0;
  }
}

/* Luxury Text Styling */
.bmv-scroll-indicator .scroll-text {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 0;
  white-space: nowrap;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  position: relative;
}

.bmv-scroll-indicator .scroll-text::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(212, 175, 55, 0.6) 50%,
    transparent 100%
  );
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.bmv-scroll-indicator:hover .scroll-text {
  color: rgba(212, 175, 55, 0.9);
  text-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
}

.bmv-scroll-indicator:hover .scroll-text::before {
  opacity: 1;
}

/* Luxury Animated Line */
.bmv-scroll-indicator .scroll-line {
  width: 3px;
  height: 70px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(212, 175, 55, 0.1) 50%,
    rgba(255, 255, 255, 0.05) 100%
  );
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1),
    0 2px 8px rgba(212, 175, 55, 0.1);
}

.bmv-scroll-indicator .scroll-line-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(212, 175, 55, 0.4) 20%,
    rgba(255, 215, 0, 0.8) 50%,
    rgba(184, 134, 11, 0.6) 80%,
    transparent 100%
  );
  animation: luxuryLineFlow 3.5s ease-in-out infinite;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.3);
}

@keyframes luxuryLineFlow {
  0%,
  15% {
    transform: translateY(-100%);
    opacity: 0;
  }
  30% {
    opacity: 0.8;
  }
  70% {
    opacity: 0.8;
  }
  85%,
  100% {
    transform: translateY(100%);
    opacity: 0;
  }
}

/* Enhanced Hover Effects */
.bmv-scroll-indicator:hover .scroll-icon {
  transform: scale(1.08) translateY(-2px);
}

.bmv-scroll-indicator:hover .scroll-line {
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(212, 175, 55, 0.2) 50%,
    rgba(255, 255, 255, 0.08) 100%
  );
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1),
    0 4px 16px rgba(212, 175, 55, 0.2);
}

.bmv-scroll-indicator:hover .scroll-line-fill {
  animation-duration: 2.5s;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(212, 175, 55, 0.6) 20%,
    rgba(255, 215, 0, 1) 50%,
    rgba(184, 134, 11, 0.8) 80%,
    transparent 100%
  );
}

/* Luxury Responsive Design */
@media (max-width: 1200px) {
  .bmv-scroll-indicator {
    right: 30px;
    opacity: 0.7;
  }

  .bmv-scroll-indicator .scroll-icon {
    width: 28px;
    height: 42px;
    padding-top: 8px;
  }

  .bmv-scroll-indicator .scroll-wheel {
    width: 3px;
    height: 12px;
  }

  .bmv-scroll-indicator .scroll-dot {
    width: 3px;
    height: 6px;
  }

  .bmv-scroll-indicator .scroll-text {
    font-size: 10px;
    letter-spacing: 1.2px;
  }

  .bmv-scroll-indicator .scroll-line {
    height: 60px;
    width: 2px;
  }
}

@media (max-width: 1024px) {
  .bmv-scroll-indicator {
    right: 25px;
    opacity: 0.6;
  }

  .bmv-scroll-indicator .scroll-icon {
    width: 24px;
    height: 36px;
    padding-top: 6px;
  }

  .bmv-scroll-indicator .scroll-text {
    font-size: 9px;
  }

  .bmv-scroll-indicator .scroll-line {
    height: 50px;
  }
}

@media (max-width: 768px) {
  .bmv-scroll-indicator {
    display: none;
  }
}

@media (max-width: 480px) {
  .bmv-scroll-indicator {
    display: none !important;
  }
}

/* Remove old scroll indicator styles to avoid conflicts */
.scroll-indicator {
  display: none !important;
}

/* Ensure no interference from parent containers */
.home .bmv-scroll-indicator {
  position: fixed !important;
  top: 50vh !important;
  right: 40px !important;
}

/* ================================================ */
/* BMV CONSULTING - ABOUT SECTION ANIMATED BACKGROUND */
/* ================================================ */

/* About Section Enhanced Background */
.about.main-section {
  position: relative;
  background: radial-gradient(
      ellipse at top right,
      rgba(20, 184, 166, 0.04) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at bottom left,
      rgba(245, 158, 11, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at center,
      rgba(20, 184, 166, 0.015) 0%,
      transparent 70%
    ),
    #0b0b0b;
  transition: background 0.8s ease-in-out;
}

/* Floating Background Elements for About */
.about.main-section::before,
.about.main-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 15% 20%,
      rgba(20, 184, 166, 0.08) 0%,
      transparent 25%
    ),
    radial-gradient(
      circle at 85% 80%,
      rgba(245, 158, 11, 0.06) 0%,
      transparent 30%
    ),
    radial-gradient(
      circle at 70% 30%,
      rgba(20, 184, 166, 0.04) 0%,
      transparent 35%
    ),
    radial-gradient(
      circle at 30% 70%,
      rgba(245, 158, 11, 0.03) 0%,
      transparent 40%
    );
  animation: floatingBackground 25s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.about.main-section::after {
  top: -20%;
  left: -20%;
  right: -20%;
  bottom: -20%;
  background-image: radial-gradient(
      circle at 80% 10%,
      rgba(94, 234, 212, 0.05) 0%,
      transparent 20%
    ),
    radial-gradient(
      circle at 20% 90%,
      rgba(251, 191, 36, 0.04) 0%,
      transparent 25%
    ),
    radial-gradient(
      circle at 60% 60%,
      rgba(20, 184, 166, 0.03) 0%,
      transparent 30%
    );
  animation: floatingBackgroundSlow 30s ease-in-out infinite reverse;
}

/* Floating Animation Keyframes */
@keyframes floatingBackground {
  0%,
  100% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
    opacity: 0.6;
  }
  25% {
    transform: translateY(-15px) translateX(10px) rotate(1deg);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-25px) translateX(-5px) rotate(-0.5deg);
    opacity: 1;
  }
  75% {
    transform: translateY(-10px) translateX(-15px) rotate(0.5deg);
    opacity: 0.7;
  }
}

@keyframes floatingBackgroundSlow {
  0%,
  100% {
    transform: translateY(0px) translateX(0px) scale(1) rotate(0deg);
    opacity: 0.4;
  }
  33% {
    transform: translateY(20px) translateX(-20px) scale(1.05) rotate(-1deg);
    opacity: 0.6;
  }
  66% {
    transform: translateY(-15px) translateX(25px) scale(0.95) rotate(1deg);
    opacity: 0.8;
  }
}

/* ================================================================ */
/* BMV CONSULTING - ABOUT SECTION PARTICLES ANIMATION             */
/* ================================================================ */

/* About Section Particle Animation - Elegant and Professional */
.about.main-section .particle-container.about-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
  /* IMPORTANT: NO overflow: hidden to prevent section disappearing */
}

.about.main-section .particle-container.about-particles .particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  animation: aboutParticles 18s linear infinite;
}

/* Sophisticated color palette for About section - 20 particles for large section */
.about.main-section .particle-container.about-particles .particle:nth-child(1) {
  left: 5%;
  animation-delay: 0s;
  background: rgba(194, 157, 73, 0.4); /* BMV Gold */
}

.about.main-section .particle-container.about-particles .particle:nth-child(2) {
  left: 10%;
  animation-delay: -1s;
  background: rgba(191, 191, 191, 0.3); /* Light Gray */
}

.about.main-section .particle-container.about-particles .particle:nth-child(3) {
  left: 15%;
  animation-delay: -2s;
  background: rgba(194, 157, 73, 0.2); /* BMV Gold Subtle */
}

.about.main-section .particle-container.about-particles .particle:nth-child(4) {
  left: 20%;
  animation-delay: -3s;
  background: rgba(255, 255, 255, 0.2); /* White Subtle */
}

.about.main-section .particle-container.about-particles .particle:nth-child(5) {
  left: 25%;
  animation-delay: -4s;
  background: rgba(194, 157, 73, 0.3); /* BMV Gold Medium */
}

.about.main-section .particle-container.about-particles .particle:nth-child(6) {
  left: 30%;
  animation-delay: -5s;
  background: rgba(191, 191, 191, 0.25); /* Light Gray Subtle */
}

.about.main-section .particle-container.about-particles .particle:nth-child(7) {
  left: 35%;
  animation-delay: -6s;
  background: rgba(194, 157, 73, 0.35); /* BMV Gold */
}

.about.main-section .particle-container.about-particles .particle:nth-child(8) {
  left: 40%;
  animation-delay: -7s;
  background: rgba(255, 255, 255, 0.15); /* White Very Subtle */
}

.about.main-section .particle-container.about-particles .particle:nth-child(9) {
  left: 45%;
  animation-delay: -8s;
  background: rgba(194, 157, 73, 0.25); /* BMV Gold Light */
}

.about.main-section
  .particle-container.about-particles
  .particle:nth-child(10) {
  left: 50%;
  animation-delay: -9s;
  background: rgba(191, 191, 73, 0.2); /* Light Gray Very Subtle */
}

.about.main-section
  .particle-container.about-particles
  .particle:nth-child(11) {
  left: 55%;
  animation-delay: -10s;
  background: rgba(194, 157, 73, 0.4); /* BMV Gold */
}

.about.main-section
  .particle-container.about-particles
  .particle:nth-child(12) {
  left: 60%;
  animation-delay: -11s;
  background: rgba(255, 255, 255, 0.25); /* White */
}

.about.main-section
  .particle-container.about-particles
  .particle:nth-child(13) {
  left: 65%;
  animation-delay: -12s;
  background: rgba(194, 157, 73, 0.3); /* BMV Gold Medium */
}

.about.main-section
  .particle-container.about-particles
  .particle:nth-child(14) {
  left: 70%;
  animation-delay: -13s;
  background: rgba(191, 191, 73, 0.3); /* Light Gray */
}

.about.main-section
  .particle-container.about-particles
  .particle:nth-child(15) {
  left: 75%;
  animation-delay: -14s;
  background: rgba(194, 157, 73, 0.2); /* BMV Gold Subtle */
}

.about.main-section
  .particle-container.about-particles
  .particle:nth-child(16) {
  left: 80%;
  animation-delay: -15s;
  background: rgba(255, 255, 255, 0.18); /* White Subtle */
}

.about.main-section
  .particle-container.about-particles
  .particle:nth-child(17) {
  left: 85%;
  animation-delay: -16s;
  background: rgba(194, 157, 73, 0.35); /* BMV Gold */
}

.about.main-section
  .particle-container.about-particles
  .particle:nth-child(18) {
  left: 90%;
  animation-delay: -17s;
  background: rgba(191, 191, 73, 0.22); /* Light Gray */
}

.about.main-section
  .particle-container.about-particles
  .particle:nth-child(19) {
  left: 95%;
  animation-delay: -18s;
  background: rgba(194, 157, 73, 0.28); /* BMV Gold */
}

.about.main-section
  .particle-container.about-particles
  .particle:nth-child(20) {
  left: 97%;
  animation-delay: -19s;
  background: rgba(255, 255, 255, 0.2); /* White Final */
}

/* Slightly different animation for About section - more elegant */
@keyframes aboutParticles {
  0% {
    top: 100%;
    opacity: 0;
    transform: translateX(0px) scale(0);
  }
  15% {
    opacity: 0.8;
    transform: translateX(8px) scale(1);
  }
  85% {
    opacity: 0.8;
    transform: translateX(-8px) scale(1);
  }
  100% {
    top: -5%;
    opacity: 0;
    transform: translateX(15px) scale(0);
  }
}

/* Ensure About content stays above particles */
.about .info {
  position: relative;
  z-index: 2;
}

/* Subtle enhancement for About section elements */
.about h2 {
  position: relative;
  z-index: 2;
}

.about .my-photo-container {
  position: relative;
  z-index: 2;
}

/* BMV CONSULTING - MINIMALISTIC PORTFOLIO NAVIGATION ARROWS */
.portfolio-nav-luxury {
  position: absolute;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%; /* Fully rounded */

  /* Minimalistic Design */
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);

  /* Subtle Shadow */
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 0 20px rgba(212, 175, 55, 0.1);

  /* Interaction */
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;

  /* Icon Centering */
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-nav-luxury i {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

/* Hover Effects - Teal Theme */
.portfolio-nav-luxury:hover {
  background: rgba(20, 184, 166, 0.15);
  border: 1px solid rgba(20, 184, 166, 0.3);
  box-shadow: 0 6px 20px rgba(20, 184, 166, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 0 20px rgba(20, 184, 166, 0.15);
}

.portfolio-nav-luxury:hover i {
  color: rgba(20, 184, 166, 1);
}

/* Active State */
.portfolio-nav-luxury:active {
  transform: scale(0.95);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1), inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* BMV CONSULTING - POSITIONING FOR NAVIGATION ARROWS */
.portfolio-nav-luxury.portfolio-nav-prev {
  top: calc(50% - 50px); /* Top position for prev arrow */
}

.portfolio-nav-luxury.portfolio-nav-next {
  top: calc(50% + 10px); /* Bottom position for next arrow */
}

/* Ensure visibility and proper z-index */
.portfolio .portfolio-nav-luxury {
  z-index: 100;
  visibility: visible;
  opacity: 1;
}

/* ============================================= */
/* BMV CONSULTING - CONTACT SECTION        */
/* ============================================= */

.contact {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-right: 150px;
}

.contact .boxes {
  display: flex;
  margin-top: 18px;
}

.contact .boxes > div:not(:first-child) {
  margin-left: 75px;
}

.contact .boxes > div > div {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 60px 0 30px 0;
  border-radius: 20px;
  position: relative;
  min-width: 320px;
  min-height: 164px;
  background-color: #222;
}

/* .contact .boxes > div > div:not(:last-child) {
  margin-bottom: 50px;
} */

/* .contact .boxes > div > div > i {
  text-align: center;
  border-radius: 50%;
  font-size: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -37px;
  width: 74px;
  height: 74px;
  background: #222;
  border: 3px solid #0b0b0b;
} */

.contact .boxes > div > div p {
  margin: 0;
  font-weight: 500;
  font-size: 20px;
}

.contact .boxes > div > div p a {
  /* iOS fixes*/
  text-decoration: none !important;
  color: #fff !important;
}

.contact .boxes > div > div span.small-text {
  color: rgba(255, 255, 255, 0.7);
  display: block;
  text-transform: capitalize;
  font-weight: 400;
  margin-bottom: 5px;
  font-size: 18px;
}

.contact .boxes .social {
  display: flex;
  margin-top: 3px;
}

.contact .boxes .social li a {
  width: 30px;
  height: 30px;
  color: #fff;
  margin: 0 10px;
  transition: 0.3s;
}

.contact .separator {
  transform: translateX(calc(100% + 150px));
}

/* ============================================= */
/* BMV CONSULTING - CLIENTS SECTION        */
/* ============================================= */

.clients {
  background-image: url(../assets/backgrounds/clients.jpg);
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  background-position: center;
  display: flex;
}

.clients:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.8);
}

.clients .clients-container {
  max-width: 1100px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  flex-direction: column;
  margin: 0 180px;
}

.clients .clients-container h3 {
  position: relative;
  font-size: 45px;
  line-height: 45px;
  margin-bottom: 50px;
  font-weight: 700;
  width: 850px;
  text-align: center;
}

.clients .swiper {
  width: 850px;
  height: 340px;
}

.clients .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 270px;
  flex-direction: column;
}

.clients .swiper-slide img {
  user-select: none;
}

.clients .swiper-slide > div {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  height: 120px;
  width: 250px;
  border-radius: 20px;
}

.clients .swiper-slide > div:first-child {
  margin-bottom: 30px;
}

.clients .swiper-pagination-clickable .swiper-pagination-bullet {
  background-color: rgba(255, 255, 255, 1);
  opacity: 1;
  width: 10px;
  height: 10px;
  margin: 0 6px !important;
  transition: 0.3s;
}

.clients .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 35px;
  border-radius: 6px;
}

/* ============================================= */
/* BMV CONSULTING - TESTIMONIALS SECTION        */
/* ============================================= */

.testimonials {
  background-image: url(../assets/backgrounds/testimonials.jpg);
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  background-position: center;
  display: flex;
}

.testimonials:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.8);
}

.testimonials .testimonials-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  margin: 0 180px;
}

.testimonials .testimonials-container .quote-container:not(:first-child) {
  margin-left: 90px;
}

.testimonials .quote-container {
  padding: 40px;
}

.testimonials .quote-container > div {
  position: relative;
  width: 390px;
  min-height: 360px;
}

.testimonials .quote-container > div:before {
  content: "”";
  position: absolute;
  font-size: 69px;
  top: -100px;
  z-index: 1111;
  left: -30px;
  font-size: 210px;
}

.testimonials .quote-container > div p {
  margin: 0;
  background: rgba(0, 0, 0, 0.6);
  padding: 40px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 360px;
}

.testimonials .quote-container > div p .quote {
  font-size: 20px;
  line-height: 40px;
  font-style: italic;
  margin-bottom: 30px;
}

.testimonials .quote-container > div p span {
  display: block;
}

.testimonials .quote-container > div p span.person {
  font-weight: 500;
  font-size: 16px;
  margin-top: auto;
  font-style: normal;
  margin-bottom: 6px;
}

.testimonials .quote-container > div p span.job {
  font-weight: 400;
  font-size: 14px;
  font-style: normal;
  color: rgba(255, 255, 255, 0.7);
}

.testimonials .quote-container > div img {
  max-width: 120px;
  position: absolute;
  bottom: -60px;
  right: -60px;
  border-radius: 50%;
  border: 4px solid #222;
}

/* ============================================= */
/* BMV CONSULTING - BLOG SECTION        */
/* ============================================= */

.blog {
  padding-right: 150px;
  min-height: 460px;
  position: relative;
  display: flex;
  align-items: center;
}

.blog .latestposts {
  display: flex;
}

.blog .latestposts > div {
  position: relative;
  border-radius: 20px;
  background: #222;
}

.blog .latestposts > div:not(:first-child) {
  margin-left: 75px;
}

.blog .latestposts > div a {
  display: block;
  color: #fff;
  position: relative;
  text-decoration: none;
  border-radius: 20px;
}

.blog .latestposts > div a .img-holder {
  overflow: hidden;
  display: block;
  border-radius: 20px 20px 0 0;
}

.blog .latestposts a img {
  width: 360px;
  height: 200px;
  object-fit: cover;
  object-position: center;
  transition: 0.5s;
  border-radius: 20px 20px 0 0;
}

.blog .latestposts a:hover img {
  transform: scale(1.2);
}

.blog .latestposts a .content {
  padding: 35px 30px 30px;
  position: relative;
  background-color: #222;
  border-radius: 0 0 20px 20px;
  max-width: 360px;
}

.blog .latestposts a .content span.title {
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
  display: block;
}

.blog .latestposts a .content p {
  font-size: 16px;
  margin: 15px 0 0;
  line-height: 30px;
  opacity: 0.8;
}

.blog .category {
  position: absolute;
  top: -14px;
  text-transform: uppercase;
  font-size: 14px;
  padding: 3px 20px;
  border-radius: 20px;
  left: 30px;
  height: 28px;
  line-height: 23px;
  font-weight: 500;
}

.blog .meta {
  font-size: 12px;
  margin-top: 20px;
  opacity: 0.6;
}

.blog .meta > div i {
  margin-right: 6px;
}

.blog .meta > div:not(:first-child) {
  margin-left: 15px;
}

/* ============================================= */
/* BMV CONSULTING - COPYRIGHT SECTION        */
/* ============================================= */

/* .copyright {
  background-color: #222;
  display: flex;
}

.copyright > div {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 0 50px 0 0;
  text-align: center;
  min-width: 250px;
  font-weight: 500;
}

.copyright > img {
  transform: translateX(calc(-100% + 1px));
  height: 100vh;
}

.copyright span {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 32px;
  white-space: nowrap;
  display: block;
}

.copyright > div > span a {
  text-decoration: none;
}

.copyright ul {
  display: flex;
  margin-top: 8px;
}

.copyright ul li a {
  width: 30px;
  height: 30px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 10px;
  transition: 0.3s;
} */

@media (min-width: 1025px) {
  body:not(.blog-page) {
    overflow: hidden;
  }

  .animated-layer,
  .animated-layer:before {
    opacity: 0;
  }

  .animated-layer.animated,
  .animated-layer.animated:before {
    opacity: 1;
  }

  body.body-safari .blog {
    padding-right: 686px;
  }

  body.body-safari .copyright {
    margin-left: -596px;
    width: 276px;
  }

  body.body-safari section.main-section.blog::after {
    display: none;
  }

  body.body-safari .testimonials .quote-container > div {
    width: 380px;
  }

  body.body-safari .blog .latestposts > div {
    width: 360px;
  }

  .hide-desktop {
    display: none !important;
  }
}

@media (max-width: 1024px) {
  .page-content {
    overflow-x: hidden;
  }
  .page-content #wrapper {
    overflow-x: hidden !important;
  }
  section {
    min-height: initial;
    height: auto;
  }

  .separator-mobile-down {
    transform: translateY(100%);
  }

  .separator-mobile-up {
    transform: translateY(-100%);
  }

  .about .infos ul li > span > span {
    animation-delay: initial !important;
  }

  header .mobile-menu {
    display: block;
  }

  .custom-btn {
    display: inline-flex;
  }

  .custom-btn:before {
    display: none;
  }

  .my-photo-container {
    width: 380px;
    height: 500px;
    margin: 0 auto;
    padding-top: 30px;
  }

  .my-photo-container.animated:after {
    display: none;
  }

  #menuToggle {
    display: flex;
    /* display: inline-block; */
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 1111;
    user-select: none;
    /* padding: 19px 0 0 16px; */
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #222;
  }

  #menuToggle input {
    display: flex;
    width: 54px;
    height: 54px;
    position: absolute;
    cursor: pointer;
    opacity: 0;
    z-index: 2;
    top: 0;
    left: 0;
  }

  #menuToggle > span {
    display: flex;
    width: 23px;
    height: 2px;
    margin-bottom: 5px;
    position: relative;
    background: rgba(212, 175, 55, .6);
    border-radius: 3px;
    z-index: 1;
    transform-origin: 5px 0;
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1),
      background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
  }

  #menuToggle > span:first-child {
    transform-origin: 0 0;
  }
  
  #menuToggle > span:nth-last-child(2) {
    transform-origin: 0 100%;
    margin-bottom: 0;
  }

  #menuToggle input:checked ~ span {
    opacity: 1;
    transform: rotate(45deg) translate(4px, 0);
    background: rgba(212, 175, 55, .6);
  }

  #menuToggle input:checked ~ span:nth-last-child(3) {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
  }

  #menuToggle input:checked ~ span:nth-last-child(2) {
    transform: rotate(-45deg) translate(2px, 4px);
  }

  #menu {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding-top: 60px;
    background: radial-gradient(circle at 15% 20%, rgba(20, 184, 166, .1) 0%, rgba(0, 0, 0, 0) 25%), radial-gradient(circle at 85% 80%, rgba(245, 158, 11, .08) 0%, rgba(0, 0, 0, 0) 30%), radial-gradient(circle at 70% 30%, rgba(20, 184, 166, .14) 0%, rgba(0, 0, 0, 0) 35%), radial-gradient(circle at 30% 70%, rgba(245, 158, 11, .03) 0%, rgba(0, 0, 0, 0) 40%);
    backdrop-filter: blur(50px);
    -webkit-font-smoothing: antialiased;
    transform-origin: 0 0;
    transform: translate(-100%, 0);
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  }

  #menuToggle input:checked ~ ul {
    transform: none;
  }

  #menu li {
    position: relative;
    padding-left: 30px;
  }

  #menu li:after {
    position: absolute;
    content: "";
    height: 1px;
    width: calc(100% - 60px);
    background: #c29d49;
    left: 30px;
  }

  #menu li:last-child:after,
  .home > div > div .intro {
    display: none;
  }

  #menu li a {
    color: #fff;
    transition-delay: 2s;
    font-size: 26px;
    display: block;
    text-decoration: none;
    padding: 14px 0;
    position: relative;
  }

  #home .animated-layer {
    opacity: 0 !important;
  }

  #home .animated-layer.animated {
    opacity: 1 !important;
  }

  .home > div > div h1 > span {
    padding: 0;
    line-height: 120px;
  }

  .home > div > div h1 > span > span:not(.intro) {
    padding: 0 15px;
  }

  .home .animated-btn.cta {
    position: relative;
    margin-top: 40px;
    right: initial;
    top: initial;
  }

  .home .animated-btn.cta span:before {
    transform: rotate(90deg);
  }

  .home .animated-btn:hover span:before {
    left: 0;
  }

  .animated-btn span:after {
    display: none;
  }

  .about {
    padding: 0 30px 16px;
  }

  .about .info {
    padding: 0;
    width: 100%;
  }

  .about h2 {
    text-align: center;
    font-size: 55px;
    line-height: 65px;
    margin: 35px 0;
  }

  .about .infos {
    margin: 0 auto;
    justify-content: center;
    max-width: 538px;
  }

  .about .skills .skills-content {
    flex-wrap: wrap;
    justify-content: center;
  }

  .about .skills .custom-title {
    margin: 70px 0;
  }

  .about .skills > div > div {
    flex-direction: row;
    justify-content: space-between;
  }

  .about .skills > div > div:not(:first-child) {
    margin-left: 0;
  }

  .about .skills > div > div > div {
    margin: 0 20px;
  }

  .about .skills > div > div > div span {
    width: 90px;
    height: 90px;
  }

  .about .skills > div > div > div:first-child {
    margin-bottom: 50px;
  }

  .about .skills > div > div > div h4 {
    margin-top: 25px;
  }

  .about .resume {
    margin-right: 0;
  }

  .about .resume .custom-title {
    margin-bottom: 70px;
    margin-top: 20px;
  }

  .about .timeline ol,
  .about .timeline ol li {
    width: auto;
  }

  .about .timeline {
    width: 100%;
  }

  .about .timeline ol {
    padding: 0;
    transform: none !important;
  }

  .about .timeline ol li {
    display: block;
    height: auto;
    background: transparent;
  }

  .about .timeline ol li:not(:first-child) {
    margin-left: auto;
  }

  .about .timeline ol li div {
    width: 100%;
    height: auto !important;
    margin: 0 auto 50px;
  }

  .about .timeline ol li div {
    position: static;
  }

  .about .timeline ol li:nth-child(odd) div,
  .about .timeline ol li:nth-child(even) div {
    transform: none;
    margin-top: initial;
    top: initial;
    max-width: 538px;
  }

  .about .timeline ol li:nth-child(odd) > div::before,
  .about .timeline ol li:nth-child(even) > div::before {
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    border: none;
    border-left: 4px solid #222;
    height: 50px;
  }

  .about .timeline ol li:last-child,
  .about .timeline ol li:nth-last-child(2) > div::before,
  .about .timeline ol li:not(:last-child)::after {
    display: none;
  }

  .facts > div {
    padding: 165px 0;
  }

  .facts > div > div:nth-child(odd) > div {
    margin-top: initial;
    margin-right: 200px;
  }

  .facts > div > div:nth-child(even) > div {
    margin-top: initial;
    margin-left: 200px;
  }

  .portfolio {
    padding: 85px 0;
  }

  .portfolio .custom-title {
    margin-bottom: 70px;
  }

  .swiper-portfolio {
    padding-right: 0;
    height: 100%;
    width: 768px;
  }

  .portfolio .single-item .main-content,
  .portfolio .single-item .main-content img {
    width: 538px;
    height: 372px;
  }

  .portfolio .single-item {
    flex-direction: column;
    height: 100%;
  }

  .next-item {
    top: calc(372px / 2 - 27px);
    right: 30px;
    transform: rotate(-90deg);
  }

  .next-item.animated-btn span:before {
    transform: rotate(180deg);
  }

  .next-item.animated-btn:hover span:before {
    left: 0px;
    top: 0;
  }

  .prev-item {
    top: calc(372px / 2 - 27px);
    left: 30px;
    margin: 0;
  }

  .prev-item.animated-btn span:before {
    transform: rotate(90deg);
  }

  .prev-item.animated-btn:hover span:before {
    top: 0;
  }

  .prev-item.animated-btn span:after,
  .next-item.animated-btn span:after {
    display: none;
  }

  .videocontainer {
    height: 372px;
  }

  .portfolio .single-item .details {
    margin: 30px 0 0;
    width: 538px;
    white-space: initial;
  }

  .clients {
    padding: 130px 30px 110px;
  }

  .clients .clients-container {
    margin: 0;
  }

  .clients .clients-container h3 {
    width: 100%;
    font-size: 55px;
    line-height: 65px;
    margin-bottom: 70px;
  }

  .contact {
    padding: 85px 30px;
  }

  .contact .custom-title {
    margin-bottom: 70px;
  }

  .contact .boxes {
    justify-content: space-between;
    width: 100%;
    max-width: 538px;
  }

  .contact .boxes > div > div {
    width: 244px;
    min-width: inherit;
  }

  .contact .boxes > div:not(:first-child) {
    margin: 0;
  }

  .testimonials {
    padding: 130px 30px !important;
  }

  .testimonials .testimonials-container .quote-container:not(:first-child) {
    margin-left: 0;
    margin-top: 50px;
  }

  .blog .latestposts > div:not(:first-child) {
    margin-left: 0;
    margin-top: 50px;
  }

  .blog {
    padding: 85px 30px;
  }

  .blog .custom-title {
    margin-bottom: 70px;
  }

  .blog .latestposts > div {
    width: 538px;
  }

  .blog .latestposts a img {
    width: 538px;
    height: 300px;
  }

  .blog .latestposts a .content span.title {
    font-size: 25px;
    line-height: 35px;
  }

  .copyright {
    min-height: auto;
    padding: 0 0 40px;
    justify-content: center;
  }

  .copyright > div {
    padding: 0;
  }

  .about .skills,
  .about .resume {
    width: 100%;
  }

  .custom-title {
    writing-mode: initial;
    transform: initial;
    height: initial;
    margin: 0;
  }

  .custom-title h3 {
    line-height: 55px;
  }

  .hide-mobile {
    display: none !important;
  }

  .flex-column-mobile {
    flex-direction: column;
  }
  .mobile-main-section-wrapper {
    overflow-x: hidden;
    background-image: radial-gradient(
        circle at 15% 20%,
        rgba(20, 184, 166, 0.1) 0%,
        transparent 25%
      ),
      radial-gradient(
        circle at 85% 80%,
        rgba(245, 158, 11, 0.08) 0%,
        transparent 30%
      ),
      radial-gradient(
        circle at 70% 30%,
        rgba(20, 184, 166, 0.14) 0%,
        transparent 35%
      ),
      radial-gradient(
        circle at 30% 70%,
        rgba(245, 158, 11, 0.03) 0%,
        transparent 40%
      );
  }

  .home > div {
    padding: 0;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
  }

  .home > div:before {
    background-color: initial;
  }

  .home > div > div {
    text-align: center;
  }

  .home {
    min-width: 100vw;
    width: 100vw;
    height: 100vh;
    flex-direction: column;
  }

  .home > div > div h1 {
    font-size: 90px;
  }

  .home > div > div .intro {
    margin: 10px auto 25px;
  }

  .clients,
  .facts {
    display: block;
  }

  .clients .swiper {
    width: 100%;
    max-width: 538px;
  }

  .clients .swiper-slide > div {
    width: 100%;
  }

  .home .custom-btn i {
    transform: rotate(90deg);
  }

  .testimonials .quote-container > div,
  .testimonials .quote-container > div p {
    min-height: initial;
  }

  .blog .latestposts a .content {
    max-width: 100%;
  }
}

@media screen and (max-width: 767px) {
  body {
    font-size: 16px;
  }

  .separator {
    display: none;
  }

  .custom-title h3 {
    font-size: 35px;
    line-height: 35px;
  }

  .portfolio .single-item .details h4 {
    font-size: 28px;
    line-height: 28px;
  }

  .home > div > div {
    text-align: left;
  }

  .home > div > div h1 {
    font-size: 45px;
  }

  .home > div > div .intro {
    line-height: 36px;
    margin: 15px 0 25px;
  }

  .home > div {
    padding: 0;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
  }

  .home > div > div h1 > span {
    padding: 0;
    line-height: 75px;
  }

  .about .my-photo-container {
    width: 100%;
    height: auto;
  }

  .about img.my-photo {
    width: 100%;
    height: auto;
    max-width: 400px;
  }

  .about h2 {
    font-size: 36px;
    line-height: 46px;
  }

  .about .infos,
  .contact .boxes {
    flex-direction: column;
  }

  .about .infos ul:nth-child(2) {
    margin-left: 0;
  }

  .facts > div {
    padding: 30px 0 130px;
  }

  .facts > div > div > div {
    margin: 100px 0 0 !important;
    width: 180px;
    height: 180px;
  }

  .facts > div > div > div > div h3 {
    font-size: 50px;
  }

  .facts > div > div > div > div p {
    font-size: 18px;
  }

  .swiper-portfolio {
    width: 100%;
    padding-left: 30px;
  }

  .portfolio .single-item .main-content,
  .portfolio .single-item .main-content img {
    width: 100%;
    height: 200px;
  }

  .portfolio .single-item .details {
    width: 100%;
  }

  .nav-item {
    display: none;
  }

  .videocontainer {
    height: 200px;
  }

  .portfolio .single-item {
    transition: 0.3s;
  }

  .portfolio .single-item:not(.swiper-slide-active) {
    opacity: 0.3;
  }

  .clients {
    padding: 110px 30px;
  }

  .clients .clients-container h3 {
    font-size: 35px;
    line-height: 35px;
  }

  .contact .boxes > div > div {
    width: 100%;
  }

  .contact {
    padding: 85px 30px 15px;
  }

  .contact .boxes > div > div {
    margin-bottom: 70px;
  }

  .testimonials .testimonials-container {
    margin: 0;
  }

  .testimonials .quote-container {
    padding: 0;
  }

  .testimonials .quote-container > div {
    height: 100%;
    min-width: auto;
    width: 100%;
  }

  .testimonials .quote-container > div:before {
    top: -72px;
    z-index: 1;
    left: 30px;
    font-size: 150px;
  }

  .testimonials .quote-container > div p {
    padding: 30px;
  }

  .testimonials .quote-container > div p .quote {
    font-size: 18px;
    line-height: 36px;
    margin-bottom: 0;
  }

  .testimonials .quote-container > div img {
    max-width: 80px;
    bottom: -40px;
    right: 30px;
    border: 2px solid #222;
  }

  .testimonials .quote-container > div p span.person {
    margin: 25px 0 5px;
  }

  .blog .latestposts > div {
    width: 100%;
  }

  .blog .latestposts a img {
    width: 100%;
    height: auto;
  }

  .blog .latestposts a .content span.title {
    font-size: 20px;
    line-height: 26px;
  }

  .testimonials .testimonials-container .quote-container:not(:first-child) {
    margin-top: 90px;
  }

  .blog-page h1 {
    margin: 70px 0;
    font-size: 35px;
  }

  .blog-page .blog-content {
    padding-bottom: 70px;
  }

  .blog-page .main-post h3 {
    font-size: 25px;
    line-height: 35px;
  }

  .copyright {
    padding: 20px 0 30px;
  }
}

.mobile-particle-container,
.mobile-floating-shapes {
  display: none;
}

@media screen and (max-width: 1024px) {
  .home::after,
  .home::before,
  .about::after,
  .about::before,
  .portfolio::after,
  .portfolio::before,
  .contact::after,
  .contact::before,
  .blog::after,
  .blog::before,
  .facts::after,
  .facts::before,
  .testimonials::after,
  .testimonials::before,
  .copyright::after,
  .copyright::before,
  .smooth-separator,
  .smooth-separator-left {
    display: none;
  }
  .home,
  .about,
  .portfolio,
  .contact,
  .blog,
  .facts,
  .testimonials,
  .copyright {
    background: transparent !important;
  }
  .home .particle-container,
  .about .particle-container,
  .contact .particle-container,
  .testimonials .particle-container,
  .blog .particle-container,
  .copyright .copyright-particles {
    display: none;
  }
  .copyright {
    border-top: none !important;
  }
  .copyright .copyright-content span {
    white-space: unset !important;
  }
  .custom-title {
    writing-mode: unset !important;
    transform: unset !important;
    height: unset !important;
    margin-bottom: 70px !important;
  }
  .custom-title span {
    font-size: 35px !important;
    line-height: 40px !important;
  }
  .mobile-particle-container {
    display: block;
  }

  .mobile-particle-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
    pointer-events: none;
  }

  .mobile-particle-container .particle {
    position: absolute;
    border-radius: 50%;
    filter: blur(0.5px);
    animation-fill-mode: both;
  }

  /* Large Glowing Orbs */
  .mobile-particle-container .particle:nth-child(1),
  .mobile-particle-container .particle:nth-child(4) {
    width: 20px;
    height: 20px;
    background: radial-gradient(
      circle,
      rgba(245, 158, 11, 0.8) 0%,
      rgba(245, 158, 11, 0.4) 50%,
      rgba(245, 158, 11, 0.1) 80%,
      transparent 100%
    );
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.4),
      0 0 40px rgba(245, 158, 11, 0.2), inset 0 0 10px rgba(255, 255, 255, 0.3);
    animation: pageWrapperLargeOrbFloat 28s infinite ease-in-out;
  }

  /* Medium Pulsing Orbs */
  .mobile-particle-container .particle:nth-child(2),
  .mobile-particle-container .particle:nth-child(5) {
    width: 14px;
    height: 14px;
    background: radial-gradient(
      circle,
      rgba(20, 184, 166, 0.9) 0%,
      rgba(20, 184, 166, 0.5) 40%,
      rgba(94, 234, 212, 0.2) 70%,
      transparent 100%
    );
    box-shadow: 0 0 15px rgba(20, 184, 166, 0.5),
      0 0 30px rgba(20, 184, 166, 0.2);
    animation: pageWrapperMediumOrbFloat 22s infinite ease-in-out;
  }

  /* Small Energy Sparks */
  .mobile-particle-container .particle:nth-child(3),
  .mobile-particle-container .particle:nth-child(6) {
    width: 8px;
    height: 8px;
    background: radial-gradient(
      circle,
      rgba(251, 191, 36, 1) 0%,
      rgba(251, 191, 36, 0.6) 30%,
      rgba(245, 158, 11, 0.3) 60%,
      transparent 100%
    );
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.8),
      0 0 20px rgba(251, 191, 36, 0.3);
    animation: pageWrapperSparkFloat 16s infinite linear;
  }

  /* Positioning energy orbs - Reduced to 6 particles */
  .mobile-particle-container .particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
  }
  .mobile-particle-container .particle:nth-child(2) {
    left: 25%;
    animation-delay: 4s;
  }
  .mobile-particle-container .particle:nth-child(3) {
    left: 40%;
    animation-delay: 2s;
  }
  .mobile-particle-container .particle:nth-child(4) {
    left: 60%;
    animation-delay: 8s;
  }
  .mobile-particle-container .particle:nth-child(5) {
    left: 75%;
    animation-delay: 6s;
  }
  .mobile-particle-container .particle:nth-child(6) {
    left: 90%;
    animation-delay: 10s;
  }
}

/* Large Orb Float Animation - Slow & Majestic */
@keyframes pageWrapperLargeOrbFloat {
  0% {
    transform: translateY(100vh) translateX(0px) scale(0);
    opacity: 0;
    filter: blur(2px);
  }
  10% {
    opacity: 0.6;
    transform: translateY(90vh) translateX(-20px) scale(0.8);
    filter: blur(1px);
  }
  30% {
    transform: translateY(70vh) translateX(30px) scale(1.2);
    opacity: 1;
    filter: blur(0.5px);
  }
  60% {
    transform: translateY(40vh) translateX(-15px) scale(0.9);
    opacity: 0.8;
  }
  80% {
    transform: translateY(20vh) translateX(25px) scale(1.1);
    opacity: 0.6;
  }
  100% {
    transform: translateY(-10vh) translateX(-10px) scale(0);
    opacity: 0;
    filter: blur(2px);
  }
}

/* Medium Orb Float Animation - Pulsing Movement */
@keyframes pageWrapperMediumOrbFloat {
  0% {
    transform: translateY(100vh) translateX(0px) scale(0);
    opacity: 0;
    box-shadow: 0 0 15px rgba(20, 184, 166, 0.5);
  }
  15% {
    opacity: 0.8;
    transform: translateY(85vh) translateX(15px) scale(1);
    box-shadow: 0 0 25px rgba(20, 184, 166, 0.7);
  }
  40% {
    transform: translateY(60vh) translateX(-25px) scale(1.3);
    opacity: 1;
    box-shadow: 0 0 35px rgba(20, 184, 166, 0.9);
  }
  65% {
    transform: translateY(35vh) translateX(20px) scale(0.7);
    opacity: 0.9;
    box-shadow: 0 0 20px rgba(20, 184, 166, 0.6);
  }
  85% {
    transform: translateY(15vh) translateX(-10px) scale(1.1);
    opacity: 0.5;
    box-shadow: 0 0 30px rgba(20, 184, 166, 0.4);
  }
  100% {
    transform: translateY(-10vh) translateX(5px) scale(0);
    opacity: 0;
    box-shadow: 0 0 15px rgba(20, 184, 166, 0.2);
  }
}

/* Small Spark Float Animation - Fast & Energetic */
@keyframes pageWrapperSparkFloat {
  0% {
    transform: translateY(100vh) translateX(0px) scale(0) rotate(0deg);
    opacity: 0;
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.8);
  }
  8% {
    opacity: 1;
    transform: translateY(92vh) translateX(-8px) scale(1.2) rotate(45deg);
    box-shadow: 0 0 15px rgba(251, 191, 36, 1);
  }
  25% {
    transform: translateY(75vh) translateX(12px) scale(0.8) rotate(120deg);
    opacity: 0.9;
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.8);
  }
  50% {
    transform: translateY(50vh) translateX(-18px) scale(1.5) rotate(225deg);
    opacity: 1;
    box-shadow: 0 0 25px rgba(251, 191, 36, 1);
  }
  75% {
    transform: translateY(25vh) translateX(22px) scale(0.6) rotate(315deg);
    opacity: 0.7;
    box-shadow: 0 0 18px rgba(251, 191, 36, 0.6);
  }
  92% {
    opacity: 0.3;
    transform: translateY(8vh) translateX(-5px) scale(1) rotate(405deg);
    box-shadow: 0 0 12px rgba(251, 191, 36, 0.4);
  }
  100% {
    transform: translateY(-10vh) translateX(8px) scale(0) rotate(450deg);
    opacity: 0;
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.2);
  }
}

/* BMV CONSULTING - MOBILE SCROLL INDICATOR */
/* ======================================== */

.mobile-scroll-indicator {
  position: fixed;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.mobile-scroll-indicator .scroll-mouse {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
}

.mobile-scroll-indicator .mouse-body {
  position: relative;
  width: 24px;
  height: 36px;
  border: 2px solid rgba(212, 175, 55, 0.6);
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.1) 0%,
    rgba(184, 134, 11, 0.05) 100%
  );
  backdrop-filter: blur(8px);
  box-shadow: 0 6px 24px rgba(212, 175, 55, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 6px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.mobile-scroll-indicator .mouse-body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.05) 0%,
    transparent 50%,
    rgba(184, 134, 11, 0.03) 100%
  );
  opacity: 0.8;
  transition: opacity 0.4s ease;
}

.mobile-scroll-indicator .scroll-wheel {
  width: 3px;
  height: 10px;
  border-radius: 1.5px;
  background: rgba(212, 175, 55, 0.3);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.mobile-scroll-indicator .scroll-wheel::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(
    to bottom,
    rgba(212, 175, 55, 1) 0%,
    rgba(255, 215, 0, 0.9) 50%,
    rgba(184, 134, 11, 0.8) 100%
  );
  border-radius: 1.5px;
  animation: mobileScrollAnimation 2s ease-in-out infinite;
  box-shadow: 0 1px 4px rgba(212, 175, 55, 0.4);
}

@keyframes mobileScrollAnimation {
  0%,
  20% {
    transform: translateY(-100%);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  80%,
  100% {
    transform: translateY(150%);
    opacity: 0;
  }
}

/* Show only on smaller devices */
@media (max-width: 768px) {
  .mobile-scroll-indicator {
    display: flex;
  }
}

@media (max-width: 480px) {
  .mobile-scroll-indicator {
    bottom: -20px;
  }
  
  .mobile-scroll-indicator .mouse-body {
    width: 20px;
    height: 30px;
    padding-top: 5px;
  }
  
  .mobile-scroll-indicator .scroll-wheel {
    width: 2.5px;
    height: 8px;
  }
}

@media (max-width: 768px) and (orientation: landscape) {
  .mobile-scroll-indicator {
    bottom: 15px;
  }
  
  .mobile-scroll-indicator .mouse-body {
    width: 18px;
    height: 28px;
  }
}
