.about-content {
  position: relative;
}
.about-content figure.elementor-image-box-img {
    display: none !important;
}
.about-content .elementor-image-box-content {
    display: flex;align-items: center;
    gap: 30px;
}
.about-content .elementor-image-box-wrapper{
    padding: 50px 75px;
    transition: all .4s ease-in-out;
}
.about-content .elementor-image-box-wrapper:hover{
    padding: 70px 75px;
}
.cursor-preview {
  position: fixed;
  top: 0;
  left: 0;
  width: 440px;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  object-fit: cover;
  transform: translate(-50%, -50%) scale(0.85);
  transition: opacity 0.2s ease, transform 0.25s ease;
}

.cursor-preview img {
  width: 100%;
}

.cursor-preview.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.about-content .elementor-image-box-content {
  position: relative;
}

.about-content .elementor-image-box-description {
  transition: all 0.35s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.about-content .elementor-image-box-title {
  transition: all 0.35s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.about-content .elementor-image-box-wrapper:hover .elementor-image-box-description {
  transform: translateY(-4px);
  opacity: 1;
}

.about-content .elementor-image-box-wrapper:hover .elementor-image-box-title {
  transform: translateY(-2px);
}

.about-content .elementor-image-box-description::after {
  content: "";
  display: block;
  width: 0%;
  height: 1px;
  background: #000;
  margin-top: 5px;
  transition: width 0.3s ease;
}

.about-content .elementor-image-box-wrapper:hover .elementor-image-box-description::after {
  width: 100%;
}
.team-gallery .swiper-wrapper{
    -webkit-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
}

.cursor-dot {
  width: 15px;
  height: 15px;
  background-color: #EF0000;
  border-radius: 50%;
  position: fixed;
  pointer-events: none; 
  z-index: 9999;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0); 
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: 0 0 15px #EF0000;
}

.work-card {
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: none; 
}

.work-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at var(--mouse-x) var(--mouse-y), 
    rgba(239, 0, 0, 0.12), 
    transparent 45%
  );
  opacity: 0;
  transition: opacity 0.5s;
}

.work-card:hover::before {
  opacity: 1;
}
.work-card:hover {
  transform: translateY(-10px);
  border-color: #EF0000;
}
.work-card:hover .elementor-image-box-title{
  color: #EF0000;
}
.work-card:hover img{
  filter: brightness(0) saturate(100%) invert(11%) sepia(83%) saturate(7500%) hue-rotate(3deg) brightness(89%) contrast(117%);
}

.principles-card {
    position: relative;
    overflow: hidden;
    cursor: crosshair;
}
.principles-card:hover {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.smoke-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.smoke-particle {
    position: absolute;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(0,0,0,0.4) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(10px);
    pointer-events: none;
    opacity: 0;
    transform: scale(0.5);
    animation: smokeLife 1.5s ease-out forwards;
}

@keyframes smokeLife {
    0% {
        opacity: 0.6;
        transform: scale(0.8) translateY(0);
    }
    100% {
        opacity: 0;
        transform: scale(2.5) translateY(-50px);
    }
}
.hero-counter .elementor-counter-title {
    text-align: center;
}
@media(max-width:1024px){
.cursor-preview {
  width: 200px;
}
}
@media(max-width:767px){
.about-content .elementor-image-box-wrapper:hover,
.about-content .elementor-image-box-wrapper{
  padding: 20px 35px;
}
.about-content .elementor-image-box-description{
  font-size: 20px !important;
  line-height: 30px !important;
}
.cursor-preview {
  width: 100px;
}
}