/*
Theme Name: Astra Child
Theme URI: https://wpastra.com/
Description: Child theme for Astra
Author: Your Name
Author URI: https://yourwebsite.com
Template: astra
Version: 1.0.0
Text Domain: astra-child
*/

/* Scrollbar width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #111; /* dark background */
}

/* Thumb */
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #ff0000, #990000);
  border-radius: 10px;
  border: 2px solid #111;
}

/* Hover effect */
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #ff3333, #cc0000);
}
.promo-ticker {
  overflow: hidden;
  color: #fff;
  padding: 10px 0;
  white-space: nowrap;
}
.tahefobu-nav-menu .tahefobu-sub-menu{
  width: 240px !important;
}
.ticker-track {
  display: inline-flex;
  gap: 50px;
  animation: scrollTicker 18s linear infinite;
  align-items: center;
}
.ticker-track span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.3px;
  font-family: poppins;
  text-transform: uppercase;
}

.ticker-track i {
  color: #fff;
  font-size: 16px;
}
.c_tagline p {
    background: #002d7a;
    display: inline-block;
    padding: 6px 18px;
    margin: 0;
    border-radius: 60px;
    font-size: 16px;
    font-family: "Poppins";
    font-weight: 400;
    color: #ffffff;
}
.view-btn-pro {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-family: "Poppins";
  font-weight: 500;
  color: #111;
  text-decoration: none !important;
  position: relative;
  padding: 1px 5px 1px 10px;
  border-radius: 40px;
  overflow: hidden;

  /* ultra smooth easing */
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* soft animated background layer */
.view-btn-pro::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #c8102e;
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0;
}

/* content stays above */
.view-btn-pro span {
  position: relative;
  z-index: 1;
}

.view-btn-pro .arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #8e0b12;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  color: #fff;
}
/* arrow motion */
.view-btn-pro i {
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* HOVER STATE */
.view-btn-pro:hover {
  color: #fff;
}

/* smooth fill animation */
.view-btn-pro:hover::before {
  transform: scaleX(1);
}

/* arrow becomes glowing */
.view-btn-pro:hover .arrow {
  background: rgb(234 177 5);
  backdrop-filter: blur(8px);
  transform: translateX(10px) scale(0.9);
}

/* arrow glide */
.view-btn-pro:hover i {
  transform: translateX(4px);
}

/* subtle text inertia */
.view-btn-pro .label {
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.view-btn-pro:hover .label {
  transform: translateX(2px);
}

/* SERVICE PAGE BOX CSS */


.btn-row {
  display: flex;
  gap: 15px;
  flex-wrap: wrap; /* mobile responsive */
}

/* Main Button Style */
.view-btn-pro {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px 15px;
  text-decoration: none;
  background: #000;
  color: #fff;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

/* Arrow Circle */
.view-btn-pro .arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #fff;
  color: #000;
  border-radius: 50%;
  transition: all 0.3s ease;
}

/* Hover Effect */
.view-btn-pro:hover {
  background: #c8102e;
}

.view-btn-pro:hover .arrow {
  transform: translateX(5px);
  background: #000;
  color: #fff;
}

/* Optional Secondary Style */
.view-btn-pro.secondary {
  background: transparent;
  border: 1px solid #000;
  color: #000;
}

.view-btn-pro.secondary .arrow {
  background: #000;
  color: #fff;
}

.view-btn-pro.secondary:hover {
  background: #000;
  color: #fff;
}

.steps-section {
  text-align: center;
}

.steps-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
}

.step {
  position: relative;
  padding-top: 0px;
}

.circle {
  width: 80px;
  height: 80px;
  background: #c8102e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #fff;
  font-size: 28px;
  box-shadow: 0 10px 25px rgba(200, 16, 46, 0.3);
  transition: all 0.4s ease;
}

.circle:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 15px 35px rgba(200, 16, 46, 0.5);
}

.number {
  position: absolute;
  top: -65px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 60px;
  color: #fff;
  font-weight: 700;
}

.step h3 {
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #fff;
  font-family: "Poppins";
}

.step p {
  font-size: 16px;
  color: #ffff;
  margin: 0px;
  line-height: 1.6;
  font-family: "Poppins";
}
/* connecting line */
.steps-wrapper::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: #e5e5e5;
  z-index: 0;
}

.testimonial-box {
	position: relative;
    background-color: #F5F7FA;
    padding: 40px 20px;
    border-radius: 14px;
    margin: 10px;
    border: 2px solid #0B1220;
    color: #0B1220;
    transition: 0.5s all ease;
}
.testimonial-box:hover {
    background-color: #f2b705;
	border: 2px solid #f2b705;
	color: #fff;
}
/* Footer layout */
.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 15px;
}

/* Client Image */
.client-img img {
  width: 50px;
  height: 50px !important;
  border-radius: 50px !important;
  object-fit: cover;
}

h3.testimonial-title {
    font-size: 24px;
    font-family: 'Poppins';
    text-transform: capitalize;
    margin: 0 0 10px 0;
    color: #0B1220;
}

p.testimonial-text {
    text-align: left;
    font-size: 15px;
    font-family: 'Poppins';
    line-height: 24px;
    color: #0B1220;
    margin-bottom: 10px;
}
/* Name */
.author {
  font-weight: 600;
  font-size: 16px;
}

.stars {
  color: #f4b400;
  margin-top: 10px;
  font-size: 20px;  
}
.testimonial-box:hover .stars{
  color: #fff;
}
/* .testimonial-box:hover h3.testimonial-title,
.testimonial-box:hover p.testimonial-text{
	color:#fff;
} */
.quote-icon {
  position: absolute;
  font-size: 30px;
  opacity: 0.15;
}

.quote-icon.top {
  top: 0px;
  left: 20px;
}

.quote-icon.bottom {
  bottom: 10px;
  right: 20px;
}
.quote-icon.bottom i,
.quote-icon.top i {
  font-weight: bold;
  font-family: "Font Awesome 5 Free";
  color:#fff !important;
}
/* Dots container */
.testimonial-slider .slick-dots {
  bottom: -85px;
}

.testimonial-slider .slick-dots li button:before {
  font-size: 10px;
  color: #fff;
  opacity: 1;
  transition: all 0.3s ease;
}

.testimonial-slider .slick-dots li.slick-active button:before {
  color: #990000;
  transform: scale(1.4);
}

.testimonial-slider .slick-dots li button:hover:before {
  color: #000;
}
/* Hover effect */
.testimonial-slider .slick-prev:hover,
.testimonial-slider .slick-next:hover {
  background: #002d7a; /* your brand red */
  transform: scale(1.1);
}
.testimonial-slider .slick-dots li {
  width: 25px;
  height: 5px;
}

.testimonial-slider .slick-dots li button:before {
  content: "";
  width: 25px;
  height: 5px;
  background: #fff;
  display: block;
  border-radius: 10px;
}

.testimonial-slider .slick-dots li.slick-active button:before {
  background: #c8102e;
  width: 25px;
}

div#popmake-452 {
    background-image: url('/wp-content/uploads/2026/05/gravity-bg.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-blend-mode: screen;
    border-radius: 20px;
}

form#gform_1 {
    width: 100%;
    max-width: 60%;
    background-color: #fff;
    padding: 20px;
    border-radius: 20px;
}
form#gform_1 input ,
form#gform_1 textarea {
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 0;
    font-family: poppins;
    font-size: 12px;
    color: #fff;
}

form#gform_1 input::placeholder,
form#gform_1 textarea::placeholder {
    color: #fff;
}
div#gform_fields_1 {
    row-gap: 20px !important;
}

input#gform_submit_button_1,
input#gform_submit_button_2 {
    background-color: #c8102e !important;
    color: #ffff !important;
    border-radius: 60px !important;
    font-size: 18px !important;
    border: none !important;
    transition: 0.5s all ease;
}
input#gform_submit_button_1:hover,
input#gform_submit_button_2:hover{
  background-color: #002d7a !important;
  color: #Fff;
}
#gform_fields_2,
div#gform_fields_2{
    row-gap: 10px !important;
}

#gform_fields_2 .gfield_label {
    color: #fff !important;
}
span.gfield_description {
    color: #fff !important;
}
p.gform_required_legend
 {
    display: none;
}
form#gform_2{
    width: 100%;
    background-color: #16161691;
    padding: 20px;
    border-radius: 20px;
}
/* animation */
@keyframes scrollTicker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* responsive */
@media (max-width: 991px) {
  .steps-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-wrapper::before {
    display: none;
  }
}
/* mobile tuning */
@media (max-width: 768px) {
  .ticker-track {
    gap: 30px;
    animation-duration: 14s;
  }

  .ticker-track span {
    font-size: 13px;
  }

  .testimonial-slider .slick-prev,
  .testimonial-slider .slick-next {
    display: none !important;
  }
}

@media (max-width: 576px) {
  .steps-wrapper {
    grid-template-columns: 1fr;
  }
}
