:root {
  --primary-color: #1b84e7;
  /* Primary color */
  --primary-text-color: #222;
  /* Primary text color */
  --secondary-text-color: #333;
  /* Secondary text color */
}

/*Navigation*/

.navbar-transparent .bg-primary.schedule-demo-btn {
  background-color: #feca57 !important;
  border-color: #feca57 !important;
  color: #000 !important;
}

    .breadcrumb-area h1 {
        font-size: 24px;
    }

/*Marketing automation landing page*/

.tabs-container {
  background-color: #fff;
  /* Outer blue background */
  padding: 0;
  width: 500px;
  margin: 0 auto;
}

.tabs-wrapper {
  background-color: #fff;
  /* White parent of tabs */
  border: 1px solid var(--primary-color);
  border-radius: 40px;
  margin: 0 auto;

}

.nav-tabs {
  border-bottom: none;
}

.nav-tabs .nav-link {
  border: 1px solid transparent;
  border-radius: 30px;
  /* Rounded corners */
  margin: 5px;
  color: var(--primary-text-color);
  transition: 0.3s;
}

.nav-tabs .nav-link.active {
  background-color: var(--primary-color);
  color: #fff !important;
  border-color: var(--primary-color);
}

.tab-content {
  background-color: #fff;
  padding: 30px;
}

.tab-pane h3 {
  font-weight: bold;
}

.tab-pane ul {
  list-style-type: disc;
  padding-left: 20px;
}

.tab-pane img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.tab-content .case-details-info.landpage ul li {
  list-style-type: none;
  font-size: 16px !important;
}

.tab-content .case-details-info.landpage ul li::after,
.legal-details-info.landpage ul li::after {
  top: 2px !important;
}


.service-card {
  border: 1px solid var(--primary-color);
  /* Thin border */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  /* Subtle shadow */
  border-radius: 5px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.icon-wrapper {
  width: 70px;
  height: 70px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto;
  color: #fff;
  font-size: 28px;
}

.card-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 10px;
}

.card-text {
  font-size: 0.95rem;
  color: var(--secondary-text-color)
}


.step-wrapper {
  position: relative;
  margin-bottom: 80px;
}

.step-card {
  position: relative;
  background: #fff;
  border-radius: 5px;
  padding: 30px 30px 20px 30px;
  box-shadow: 0px 3px 13px rgba(170, 170, 170, 0.5);
  border: solid 1px var(--primary-color);
}

.step-card .badge-success {
  font-size: 14px;
  padding: 8px 15px;
  border-radius: 20px;
  margin-bottom: 45px;
  font-weight: 400;
}

.step-badge {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  line-height: 50px;
  font-weight: bold;
  font-size: 18px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.step-title {
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 1.6rem;
}

.step-description {
  color: var(--secondary-text-color);
  font-size: 1rem;
}

.step-line {
  position: absolute;
  top: 50px;
  left: 50%;
  width: 2px;
  height: calc(100% + 40px);
  background-color: var(--primary-color);
  z-index: -1;
}

.last-step .step-line {
  display: none;
}

.text-primary {
  color: var(--primary-color) !important;
}


@media only screen and (min-width:300px) and (max-width: 767px) {
  .tabs-container {
    width: 100%;
    padding: 0 20px;
  }

}

/*Marketing automation landing page*/


/* Real Estate Leads to Follow Up Page */

.realestate-bg-hero {
  background-image: 
    linear-gradient(135deg, #056CF2 0%, #0540F2 100%);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
  color: #ffffff;
}

#realestate-lead-journey .main-title, #realestate-result .main-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 50px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#realestate-lead-journey .journey-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 5px;
}

#realestate-lead-journey .card {
  background: white;
  border: 1px solid #3498db;
  border-radius: 16px;
  padding: 30px 10px;
  text-align: center;
  flex: 1;
  box-shadow: 0 3px 15px rgba(52, 152, 219, 0.15);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

#realestate-lead-journey .card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(52, 152, 219, 0.1), transparent);
  transition: left 0.5s;
}

#realestate-lead-journey .card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 40px rgba(52, 152, 219, 0.3);
  border-color: #2980b9;
}

#realestate-lead-journey .card:hover::before {
  left: 100%;
}

#realestate-lead-journey .icon-container {
  margin-bottom: 20px;
}

#realestate-lead-journey .icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto;
  transition: all 0.3s ease;
}

#realestate-lead-journey .target-icon {
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
}

#realestate-lead-journey .phone-icon {
  background: linear-gradient(135deg, #4834d4, #686de0);
}

#realestate-lead-journey .dollar-icon {
  background: linear-gradient(135deg, #00d2d3, #54a0ff);
}

#realestate-lead-journey .chart-icon {
  background: linear-gradient(135deg, #ff9ff3, #f368e0);
}

#realestate-lead-journey .house-icon {
  background: linear-gradient(135deg, #feca57, #ff9ff3);
}

#realestate-lead-journey .card:hover .icon {
  transform: rotate(360deg) scale(1.1);
}

#realestate-lead-journey .card-title {
  font-size: 1rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

#realestate-lead-journey .card:hover .card-title {
  color: #3498db;
}

#realestate-lead-journey .card-description {
  font-size: 0.9rem;
  color: #7f8c8d;
  line-height: 1.5;
  transition: color 0.3s ease;
}

#realestate-lead-journey .card:hover .card-description {
  color: #5a6c7d;
}

#realestate-lead-journey .arrow {
  font-size: 1rem;
  color: #3498db;
  font-weight: bold;
  margin: 0 5px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.7;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  #realestate-lead-journey .journey-container {
    flex-direction: column;
    align-items: center;
  }

  #realestate-lead-journey .arrow {
    transform: rotate(90deg);
    margin: 20px 0;
  }

  #realestate-lead-journey .card {
    max-width: 300px;
    width: 100%;
  }
}

@media (max-width: 768px) {
  #realestate-lead-journey .main-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  #realestate-lead-journey .card {
    padding: 25px 15px;
  }

  #realestate-lead-journey .card-title {
    font-size: 1.2rem;
  }

  #realestate-lead-journey .card-description {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {

  #realestate-lead-journey .main-title {
    font-size: 1.8rem;
  }

  #realestate-lead-journey .icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}


#realestate-result .gradient-card {
  background: linear-gradient(135deg, #056CF2 0%, #0540F2 100%);
  border-radius: 15px;
  border: none;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#realestate-workflows .icon-wrapper{
  background-color: #0540F2;
}

#realestate-workflows .service-card{
  border-color: #0540F2;
}

#realestate-workflows .text-primary {
  color: #0540F2 !important;
}

#realestate-result .gradient-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

#realestate-result .stats-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
 padding-bottom: 20px;
}

#realestate-result .stats-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  line-height: 1.4;
}

#realestate-result .card-title {
  color: white;
  font-weight: 600;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

#realestate-result .stats-container {
  padding: 2rem 1rem 0 1rem;
}

@media (max-width: 768px) {
  #realestate-result .stats-number {
    font-size: 2.5rem;
  }

  #realestate-result .stats-label {
    font-size: 0.9rem;
  }
}


/* Real Estate Leads to Follow Up Page */

#whatsapp-float {
            position: fixed;
            right: 44px;
            bottom: 174px;
            z-index: 9999;
            text-decoration: none;
        }
        .whatsapp-circle {
            background: #25D366;
            color: #fff;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 16px rgba(0,0,0,0.15);
            font-size: 2.2rem;
            transition: box-shadow 0.2s, transform 0.2s;
        }
        .whatsapp-circle:hover {
            box-shadow: 0 8px 24px rgba(0,0,0,0.25);
            transform: scale(1.08);
            color: #fff;
        }


@media only screen and (min-width:300px) and (max-width:767px){

   #whatsapp-float{
    bottom:100px;
    right:24px;
  }
}