html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

/* ++++++++++++++++++++++++++++++++++++++*/
/*  ABOUT US AND WHY AUDIOCRATZ start */
/* ++++++++++++++++++++++++++++++++++++++*/

/* Section Title Styling */
.section-title {
  display: inline-block;
  padding-bottom: 5px;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #0d6efd;
  margin-top: 5px;
  border-radius: 2px;
}

/* Logo */
.about-logo {
  max-height: 80px;
}

/* Why Cards */
.why-card {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  height: 100%;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.why-card h5 {
  margin-bottom: 8px;
}

.why-card p {
  font-size: 14px;
  color: #666;
}

/* Icon Box */
.icon-box {
  width: 55px;
  height: 55px;
  border-radius: 14px;
  background: rgba(13, 110, 253, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  transition: 0.3s ease;
}

.icon-box i {
  font-size: 22px;
  color: #0d6efd;
}

/* Hover effect */
.why-card:hover .icon-box {
  background: #0d6efd;
}

.why-card:hover .icon-box i {
  color: #fff;
}

/* ++++++++++++++++++++++++++++++++++++++*/
/*  ABOUT US AND WHY AUDIOCRATZ end */
/* ++++++++++++++++++++++++++++++++++++++*/