/* General Styles */
#section-1, #section-2 a {
  text-decoration: none;
  color: #2c2c2c;
}

/* Wiggle Animation */
.wiggle-animation {
  animation: position-wiggle 1s ease-in-out infinite, rotation-wiggle 1s ease-in-out infinite;
}

/* Header Typing Text Animation */
.typing-text {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  border-right: .15em solid orange;
  animation: typing 4s steps(30, end) forwards, blink-caret .75s step-end infinite;
  font-family: monospace;
  font-size: 2em;
}

@keyframes typing {
  from { width: 0; }
  to { width: 86%; }
}

@keyframes blink-caret {
  from, to { border-color: transparent; }
  50% { border-color: orange; }
}

@keyframes erase {
  from { width: 86%; }
  to { width: 0%; }
}

@keyframes idle {
  from { opacity: 0; }
  to { opacity: 0; }
}

/* Download Buttons */
.vapt-report .card {
  width: 140px;
  height: auto;
  font-size: 16px;
  padding: 3px;
  padding-top: 6px;
  padding-bottom: 6px;
  margin: 10px;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
.vapt-report .card:hover {
  transform: scale(1.06);
  transition: transform 0.3s ease-in-out;
}
.vapt-report .card-title {
  height: 60px;
}
.vapt-report .btn {
  background: #d1d1d1 !important;
  border: none;
  color: #383838;
  font-weight: 500;
}
.vapt-report .btn:hover {
  color: #420000;
}


/* Slick Slider for Case Studies */
.case-studies .case-studies__card {
  width: 400px;
  height: auto;
  text-align: center;
  background: #f6f7f8;
  border-radius: 15px;
  border: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.case-studies .header-title {
  font-size: 17px;
  font-weight: 600;
  height: 40px;
}

.case-studies .header-text {
  font-size: 13px;
  font-weight: 300;
  height: 80px;
}

.case-studies .read-more-btn {
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
}





/* Steps Card */
#steps .card-title {
  font-size: large;
  font-weight: 600;
}
#steps .card-text {
  font-size: small;
}
