/*
Theme Name: Travivu Child
Theme URI: https://gaviaspreview.com/wp/travivu/
Author URI: https://themeforest.net/user/gavias
Author: Gaviasthemes Team
Description: Child theme for the Travivu theme.
Template: travivu
*/

.call-box {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.header {
  background: #f3f0fb;
  text-align: center;
  padding: 20px;
}
.header img {
  width: 70px;
  margin-bottom: 10px;
}
.header h2 {
  font-size: 16px;
  color: #6a1b9a;
  margin-bottom: 10px;
}
.phone-number {
  font-size: 24px;
  font-weight: bold;
  color: #1a1a1a;
}
.phone-number a {
  text-decoration: none;
}
.features {
  padding: 20px;
}
.features h3 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 18px;
}
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}
.feature-icon {
  background: #e0d9f7;
  color: #6a1b9a;
  padding: 10px;
  border-radius: 50%;
}
.zoom-in-zoom-out {
  animation: zoom-in-zoom-out 2s ease-out infinite;
}
@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.5, 1.5);
  }
  100% {
    transform: scale(1, 1);
  }
}
.btn:hover {
	background-color: #ffa726 !important;
}

.zoom-in-zoom-out2 {
  animation: zoom-in-zoom-out2 2s ease-out infinite;
}

@keyframes zoom-in-zoom-out2 {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.1, 1.1);
  }
  100% {
    transform: scale(1, 1);
  }
}

.ticon-phone {
	animation: trin 2s ease-out infinite;
}
@keyframes trin {
  from {
    transform:rotate3d(0, 0, 1, 0deg);
  }
  20%, 32%, 44%, 56%, 68% {
    transform: rotate3d(0, 0, 1, 0deg);
  }
  23%, 35%, 47%, 59%, 71% {
    transform: rotate3d(0,0,1,15deg);
  }
  26%, 38%, 50%, 62%, 74% {
    transform: rotate3d(0,0,1,0deg);
  }
  29%, 41%, 53%, 65%, 77% {
    transform: rotate3d(0,0,1,-15deg);
  }
  80% {
    transform:rotate3d(0, 0, 1, 0deg);
  }
}
@media (max-width: 540px) {
  .gsc-heading {
    margin-bottom: 0;
  }
  .about-seven__image {
    padding-bottom: 230px;
  }
}