/* ==========================================
   1. INTRO SECTION
   ========================================== */
.intro_class {
  position: relative;
  border: 1px solid #f14141;
  border-radius: 4px;
  overflow: hidden;
  background-size: 100% auto;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 380px;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.intro_class:hover {
  transform: translateY(-5px);
  border-color: #ffffff;
  box-shadow: 0 10px 25px rgba(241, 65, 65, 0.2);
}

.intro_class .intro_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: transparent;
  z-index: 1;
}

.intro_class .intro_content {
  position: relative;
  z-index: 2;
  width: 38%;
  padding: 20px;
}

.intro_class .intro-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
  line-height: 1.2;
}

.intro_class .text-part {
  color: #f14141;
}

.intro_class .intro-text {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.38;
  margin-bottom: 0;
}

.bg-visit-studio { background-image: url('../img/visit_our_studio.png'); }
.bg-come-to-you { background-image: url('../img/we_come_to_you.png'); }

@media (max-width: 991.98px) {
  .intro_class .intro_overlay { width: 50%; }
  .intro_class .intro_content { width: 48%; }
}

@media (max-width: 767.98px) {
  .intro_class { min-height: 240px; }
  .intro_class .intro_overlay { width: 65%; }
  .intro_class .intro_content { width: 62%; padding: 16px; }
  .intro_class .intro-title { font-size: 0.95rem; }
  .intro_class .intro-text { font-size: 0.72rem; }
}


/* ==========================================
   2. ABOUT SECTION (SECTION 2)
   ========================================== */
#section2 {
  background-color: #080808;
}

/* About Image Hover Effect */
#section2 .about-img {
  object-fit: cover;
  min-height: 400px;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  will-change: transform;
}

#section2 .about-img-wrapper {
  overflow: hidden;
  border-radius: 0.5rem; /* Matches Bootstrap rounded-3 */
}

#section2 .about-img-wrapper:hover .about-img {
  transform: scale(1.03);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5) !important;
}

/* Statistics Row Formatting */
#section2 .stats-row {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* CMS Friendly Stat Hover Animation */
#section2 .stat-box {
  transition: transform 0.3s ease;
}

#section2 .stat-box:hover {
  transform: translateY(-5px);
}

#section2 .stat-box h3 {
  transition: text-shadow 0.3s ease;
}

#section2 .stat-box:hover h3 {
  text-shadow: 0 4px 15px rgba(241, 65, 65, 0.4);
}