/*
 Theme Name:   Astra Child
 Theme URI:    http://example.com/twenty-fifteen-child/
 Description:  Astra Child Theme
 Author:       John Doe
 Author URI:   http://example.com
 Template:     astra
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Tags:         light, dark, two-columns, right-sidebar, responsive-layout, accessibility-ready
 Text Domain:  astrachild
*/
.ast-site-title-wrap {
    display: none;
}
p {
    margin-bottom: 15px !important;
}

/*.achievements-slider {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.achievement-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
}

.achievement-text {
  font-size: 16px;
  margin-bottom: 15px;
}



.achievements-slider .swiper-slide {
  opacity: 0.3;
  filter: blur(2px);
  transition: all 0.3s ease-in-out;
  transform: scale(0.85);
  width: 280px; 
}


.achievements-slider .swiper-slide-active {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
  width: 380px;
}


.achievement-content {
  text-align: center;
  padding: 20px;
}

.achievement-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}



.achievement-logo img {
  max-width: 200px;
  margin: auto;
  display: block;
}
*/

.solutions-wrapper {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.solution-card {
  background: #0b0b0b;
  color: #fff;
  width: 370px;
  height: 340px;
  border-radius: 16px;
  padding: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
}

.solution-card:hover {
  background: linear-gradient(135deg, #6a5af9, #8254ff);
  transform: translateY(-5px);
}

/* Icon */
.solution-icon img {
  max-width: 100px;
  margin: 30px 0;
  display: block;
  transition: filter 0.3s ease;
}
.solution-card:hover .solution-icon img {
  filter: brightness(0) invert(1); /* turns uploaded icon to white */
}

/* Title */
.solution-title {
  font-size: 18px;
  font-weight: 600;
  margin-top: 10px;
  transition: color 0.3s ease;
}
.solution-card:hover .solution-title {
  color: #fff;
}

/* Arrow */
.arrow-a {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 20px;
  color: #888;
  transition: color 0.3s ease;
}
.solution-card:hover .arrow {
  color: #fff;
}

/* Description (slide up) */
.solution-desc {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: -100%;
  opacity: 0;
  transition: all 0.4s ease-in-out;
  font-size: 14px;
  line-height: 1.5;
}
.solution-card:hover .solution-desc {
  bottom: 40px; /* slides up */
  opacity: 1;
}



