/*
Theme Name: Astra Child
Theme URI: https://solintech.net
Description: Astra Child Theme
Author: Julio
Template: astra
Version: 1.0
*/

/* your custom styles start here */


/*
24/7 header 
*/

.top-bar {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  font-family: system-ui;
}

/* STATUS BADGE */
.status {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(218, 107, 22, 0.08);
  border: 1px solid rgba(218, 107, 22, 0.2);
  color: #DA6B16;
  font-weight: 500;
}

/* DOT ANIMATION */
.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #DA6B16;
  position: relative;
}

.dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #DA6B16;
  animation: ping 1.6s infinite;
  opacity: 0.6;
}

@keyframes ping {
  0% { transform: scale(1); opacity: 0.6; }
  70% { transform: scale(2.5); opacity: 0; }
  100% { opacity: 0; }
}

/* PHONE LINK */
.phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #cfcfcf;
  text-decoration: none;
  transition: all 0.25s ease;
  font-weight: 700;
}

.phone svg {
  width: 14px;
  height: 14px;
  stroke: #DA6B16;
  opacity: 0.7;
  transition: all 0.25s ease;
}

.phone:hover {
  color: white;
}

.phone:hover svg {
  opacity: 1;
  transform: translateX(2px);
}


/*
footer
*/

/*
leave a review button
*/

.review-btn {
    margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 13px;
  text-decoration: none;
  color: #ddd;

  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(218, 107, 22, 0.2);

  transition: all 0.25s ease;
}

/* STAR */
.review-btn .star {
  color: #DA6B16;
  font-size: 14px;
  text-shadow: 0 0 6px rgba(218, 107, 22, 0.5);
}

/* HOVER */
.review-btn:hover {
  color: white;
  border-color: rgba(218, 107, 22, 0.5);
  background: rgba(218, 107, 22, 0.08);
  transform: translateY(-1px);
}


/*
contact footer
*/




.contact-modern-widget {
  width: 100%;
  max-width: 420px;
  padding: 6px 0;
}

.contact-modern-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-modern-list .contact-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.contact-modern-list .contact-row:last-child {
  margin-bottom: 0;
}

.contact-modern-list .contact-content {
  padding-top: 8px;
  min-width: 0;
}

.contact-modern-list a,
.contact-modern-list span,
.contact-modern-list p {
  margin: 0;
  color: #d7e4ff;
  font-size: 15px;
  line-height: 1.45;
  text-decoration: none;
  transition: color 0.3s ease;
  word-break: break-word;
}

.contact-modern-list a:hover {
  color: #ffffff;
}

.contact-modern-list .contact-icon-box {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid;
  position: relative;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
}

.contact-modern-list .contact-icon-box svg {
  width: 17px;
  height: 17px;
}

/* Phone */
.contact-row.phone .contact-icon-box {
  color: #53a8ff;
  background: rgba(34, 91, 191, 0.16);
  border-color: rgba(83, 168, 255, 0.35);
  box-shadow: 0 0 0 1px rgba(83, 168, 255, 0.05) inset;
}

.contact-row.phone:hover .contact-icon-box {
  background: rgba(34, 91, 191, 0.24);
  border-color: rgba(83, 168, 255, 0.55);
  transform: translateY(-1px);
}

/* Email */
.contact-row.email .contact-icon-box {
  color: #b26dff;
  background: rgba(122, 44, 191, 0.16);
  border-color: rgba(178, 109, 255, 0.35);
  box-shadow: 0 0 0 1px rgba(178, 109, 255, 0.05) inset;
}

.contact-row.email:hover .contact-icon-box {
  background: rgba(122, 44, 191, 0.24);
  border-color: rgba(178, 109, 255, 0.55);
  transform: translateY(-1px);
}

/* Location */
.contact-row.location .contact-icon-box {
  color: #ff9d2f;
  background: rgba(173, 78, 0, 0.16);
  border-color: rgba(255, 157, 47, 0.35);
  box-shadow: 0 0 0 1px rgba(255, 157, 47, 0.05) inset;
}

.contact-row.location:hover .contact-icon-box {
  background: rgba(173, 78, 0, 0.24);
  border-color: rgba(255, 157, 47, 0.55);
  transform: translateY(-1px);
}

/* Hours */
.contact-row.hours .contact-icon-box {
  color: #14d7a4;
  background: rgba(0, 117, 89, 0.16);
  border-color: rgba(20, 215, 164, 0.35);
  box-shadow: 0 0 0 1px rgba(20, 215, 164, 0.05) inset;
}

.contact-row.hours:hover .contact-icon-box {
  background: rgba(0, 117, 89, 0.24);
  border-color: rgba(20, 215, 164, 0.55);
  transform: translateY(-1px);
}

.contact-row.hours .contact-content p + p {
  margin-top: 2px;
}

.contact-row.hours .emergency-text {
  margin-top: 6px;
  color: #ff4d57;
  font-weight: 600;
}

/* Optional small glow */
.contact-modern-list .contact-icon-box::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

@media (max-width: 767px) {
  .contact-modern-list a,
  .contact-modern-list span,
  .contact-modern-list p {
    font-size: 14px;
  }
}


/*end of footer and header*/

/*
home
*/

.status_home{
    justify-content: center;
    width: 300px;
    min-width: 300px;
    max-width: 300px;
    margin-top: 5%;
    color: white !important;
}

/*
we help with heading typed heading
*/

.solintech-typed-heading{
    text-align: center;
}
#solintech-typed-text {
  color: #da6b16;
}

.typed-cursor {
  color: #da6b16;
  font-weight: 400;
}

/*
value buttons
*/
.value-buttons {
  pointer-events: none;
  cursor: default;
}





/*
Get Your Price Section
*/
.quote-ai-section {
  position: relative;
  overflow: hidden;
  padding: 40px 20px;
}

.quote-ai-wrap {
  max-width: 1100px;
  margin: 0 auto;
}

.quote-ai-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 34px;
}

.quote-ai-heading h2 {
  margin: 0 0 14px;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.quote-ai-heading h2 .accent {
  color: #59a8ff;
}

.quote-ai-heading p {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

.quote-ai-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(126, 151, 255, 0.16);
  background:
    linear-gradient(135deg, #5b5b5b 0%, #3D5A80 100%);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.02) inset,
    0 25px 60px rgba(0, 0, 0, 0.45),
    0 0 80px rgba(55, 115, 255, 0.08);
  backdrop-filter: blur(14px);
}

.quote-ai-card-top {
  padding: 22px 26px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.quote-ai-title-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.quote-ai-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  background: linear-gradient(135deg, #4d8dff 0%, #854dff 100%);
  box-shadow: 0 10px 30px rgba(96, 108, 255, 0.35);
  flex-shrink: 0;
}

.quote-ai-title-copy {
  min-width: 0;
}

.quote-ai-title-line {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.quote-ai-title-line h3 {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.2;
  color: #fff;
  font-weight: 700;
}

.quote-ai-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #5fffc6;
  background: rgba(28, 255, 170, 0.12);
  border: 1px solid rgba(95, 255, 198, 0.2);
}

.quote-ai-title-copy p {
  margin: 6px 0 0;
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
}

.quote-ai-card-body {
  text-align: center;
  padding: 58px 30px 40px;
}

.quote-ai-main-icon {
  width: 92px;
  height: 92px;
  margin: 0 auto 26px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(83, 110, 255, 0.28), rgba(102, 45, 160, 0.28));
  border: 1px solid rgba(157, 128, 255, 0.18);
  box-shadow:
    0 12px 40px rgba(103, 75, 255, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.quote-ai-main-icon span {
  font-size: 36px;
}

.quote-ai-card-body h4 {
  margin: 0 0 14px;
  font-size: 2rem;
  line-height: 1.2;
  color: #DA6B16;
  font-weight: 700;
}

.quote-ai-body-copy {
  max-width: 620px;
  margin: 0 auto 28px;
  font-size: 1.06rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.74);
}

.quote-ai-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 760px;
  margin: 0 auto;
}

.quote-ai-chip {
  appearance: none;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.82);
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 0.95rem;
  line-height: 1.2;
  cursor: pointer;
  transition: all 0.25s ease;
}

.quote-ai-chip:hover {
  transform: translateY(-2px);
  background: rgba(115, 127, 255, 0.14);
  border-color: rgba(126, 151, 255, 0.26);
  color: #ffffff;
}

.quote-ai-input-wrap {
  padding: 0 24px 22px;
}

.quote-ai-input-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.quote-ai-input {
  width: 100%;
  min-height: 64px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  border-radius: 18px;
  padding: 0 18px;
  color: #ffffff;
  font-size: 1rem;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.quote-ai-input::placeholder {
  color: rgba(255,255,255,0.46);
}

.quote-ai-input:focus {
  border-color: rgba(98, 146, 255, 0.5);
  box-shadow:
    0 0 0 4px rgba(82, 125, 255, 0.12),
    inset 0 1px 0 rgba(255,255,255,0.03);
}

.quote-ai-send {
  width: 64px;
  height: 64px;
  border: 0;
  border-radius: 18px;
  cursor: pointer;
  flex-shrink: 0;
  font-size: 22px;
  color: #ffffff;
  background: linear-gradient(180deg, #2f6fff 0%, #2447cc 100%);
  box-shadow: 0 14px 32px rgba(47, 111, 255, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.quote-ai-send:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(47, 111, 255, 0.42);
}

.quote-ai-footer {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  padding: 18px 24px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.72);
  font-size: 0.95rem;
}

.quote-ai-footer-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 767px) {
  .quote-ai-section {
    padding: 70px 16px;
  }

  .quote-ai-card-top,
  .quote-ai-card-body,
  .quote-ai-input-wrap,
  .quote-ai-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .quote-ai-card-body {
    padding-top: 42px;
  }

  .quote-ai-card-body h4 {
    font-size: 1.55rem;
  }

  .quote-ai-input-row {
    flex-direction: column;
    align-items: stretch;
    padding: 12px 0 0;
  }

  .quote-ai-send {
    width: 100%;
    height: 56px;
  }

  .quote-ai-title-line h3 {
    font-size: 1.25rem;
  }
}





































































