.card-section{
padding-top: 0.5rem;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.section-title.head {
  text-align: center;
  padding: 80px 20px 60px;
  max-width: 900px;
  margin: 0 auto;
}

.section-title.head h1 {
  font-family: 'Montserrat', 'Arial', sans-serif;
  font-size: clamp(3rem, 7vw, 5rem); 
  font-weight: 700;
  letter-spacing: 1px;
  color: #111;
  margin-bottom: 30px;
}

.section-title.head p {
  font-size: 1.15rem;
  line-height: 1.9;
  color: #333;
  max-width: 750px;
  margin: 0 auto;
  opacity: 0.9;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-title.head {
  animation: fadeUp 1s ease-in-out both;
}

.flip-card {
  width: 100%;
  max-width: 380px;
  min-height: 330px;
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 1s;
  cursor: pointer;
}

.flip-card-inner.is-flipped {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  border: solid 4px black;
  backface-visibility: hidden;
  box-shadow: 0px 3px 18px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  box-sizing: border-box;
  text-align: center;
}

.flip-card-front {
  background-image: linear-gradient(to bottom right, #FFCE00, #f18701);
  color: black;
}

.flip-card-front i {
  font-size: 5rem;
  margin-bottom: 0.5rem;
}

.flip-card-back {
  background-color: #212121;
  background-image: linear-gradient(145deg, #212121, #2e2e2e);
  color: white;
  transform: rotateY(180deg);
}
.carousel-item {
    display: flex;
    justify-content: center;
}

.flip-card {
    width: 100%;
    max-width: 320px;
}


@media (max-width: 767.98px) {
    .flip-card {
        max-width: 90%;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .flip-card {
    max-width: 280px;
    height: 300px;
  }

  .flip-card-inner {
    height: 100%;
  }

  .flip-card-front,
  .flip-card-back {
    padding: 1rem;
  }

  .flip-card-back p {
    font-size: 0.95rem;
  }
}

.icon-large {
    font-size: 8rem;
    color: black;
}

.icon-medium {
    font-size: 4rem;
    color: black;
}

.head .genericButton{
    background-color: #f18701;
    color:#000;
    border: solid black 3px;
}

.head .genericButton:hover{
  color: white;
  background-color: #000;
}

.support .genericButton:hover{
  color: white;
  background-color: #000;
}

.bi {
    font-family: 'bootstrap-icons' !important;
}

.icon-interactive {
  transition: color 0.2s ease, transform 0.15s ease;
  cursor: pointer;
}
.icon-interactive:hover {
  color: #0d6efd; 
  transform: scale(1.1);
}
.icon-interactive:active {
  color: #ffc107; 
  transform: scale(0.95);
}

.flip-card-back {
  color: white;
}

.flip-card-back p,
.flip-card-back i {
  color: white !important;
}

