.color-accent {
  color: var(--accent-color) !important;
}
.color-primary {
  color: var(--primary-color) !important;
}

.color-secondary {
  color: var(--secondary-color) !important;
}

.diagonal-image {
  clip-path: polygon(0% 10%, 100% 0%, 100% 90%, 0% 100%);
  transition: transform 0.3s ease-in-out;
}

.diagonal-image:hover {
  transform: scale(1.05);
}
.hexagon-image {
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  transition: transform 0.3s ease-in-out;
}

.hexagon-image:hover {
  transform: scale(1.05);
}
.glass-circle {
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease-in-out;
}

.glass-circle:hover {
  transform: scale(1.1);
}
.skewed-image {
  clip-path: polygon(10% 0%, 90% 0%, 100% 100%, 0% 100%);
  transform: skew(-10deg);
  transition: transform 0.3s ease-in-out;
}

.skewed-image:hover {
  transform: skew(0deg) scale(1.05);
}
.glass-effect {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  padding: 10px;
  transition: transform 0.3s ease-in-out;
}

.circular-glow {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
  transition: box-shadow 0.3s ease-in-out;
}

.circular-glow:hover {
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.8);
}
.circular-depth {
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: inset 0 5px 10px rgba(0, 0, 0, 0.2),
    0 10px 20px rgba(0, 0, 0, 0.3);
  transform: rotate(-3deg);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.circular-depth:hover {
  transform: rotate(0deg) scale(1.05);
  box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.1), 0 15px 30px rgba(0, 0, 0, 0.4);
}
.random-bg {
  position: relative !important;
  overflow: hidden !important;
  min-height: 300px;
  z-index: 10;
}

.bg-item {
  position: absolute !important;
  width: 200px !important;
  height: 200px !important;
  background: url("../images/slider/graplic-slider-2.png") no-repeat
    center/contain !important;
  opacity: 1 !important;
  animation: fadeMove 6s infinite alternate ease-in-out;
  pointer-events: none !important;
  z-index: -1;
}

@keyframes fadeMove {
  0% {
    transform: translateY(0px) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-20px) scale(1.1);
    opacity: 0.8;
  }
  100% {
    transform: translateY(20px) scale(1.2);
    opacity: 0.3;
  }
}
.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
}

.video-wrapper iframe,
.video-wrapper video {
  width: 100%;
  height: 450px;
  border-radius: 12px;
}

.before-after-wrapper {
  display: flex;

  align-items: center;

  gap: 30px;
  flex-wrap: wrap;
}

/* portoflio page before and after section */

.before-after-item {
  flex: 1;
  max-width: 48%;
  box-sizing: border-box;
}

.before-image,
.after-image {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.before-image img,
.after-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  height: 300px;
}

.before-image h5,
.after-image h5 {
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-size: 20px;
  font-weight: bold;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  padding: 5px;
  margin: 0;
  border-radius: 5px;
}

.description {
  flex-basis: 100%;
}

.description p {
  color: #6c757d;
  font-size: 17px;
  font-weight: bold;
  margin-bottom: 40px;
}
