.text-red-color {
  color: red;
}

.bg-red-color {
  background-color: red;
}
.red-strip{
  background-color: black;
  color: #fff;
}

.nav-active{
  background-color: red;
}

.nav-active a{
  color: white;
}
.navbar {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  font-style: Arial, sans-serif;;
}

.box-shadow {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* css for cost-estimator-section */
.package-row {
    border-bottom: 1px solid #ddd;
    padding: 12px 0;
}

.package-row:last-child {
    border-bottom: none;
}

.city-label {
    font-weight: bold;
    color: #e74c3c;
}



     .form-container {
      background: #fff;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      overflow: hidden;
      border-radius: 15px;
    }


    .welcome-section {
      background: #ff0000;
      color: #fff;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 40px 20px;
      border-top-right-radius: 120px;  
      border-bottom-right-radius: 120px;
    }

    .welcome-section h2 {
      font-size: 28px;
      font-weight: bold;
    }

    .form-section {
      padding: 40px 30px;
    }

    .form-section h3 {
      font-weight: bold;
      margin-bottom: 20px;
    }

    .form-control,
    .form-select {
      margin-bottom: 15px;
      border-radius: 0px;
    }
/* 
    .btn-custom {
      background-color: #ff0000;
      color: #fff;
      border-radius: 50px;
      padding: 10px 30px;
      border: none;
    } */

    @media (max-width: 768px) {
      .welcome-section {
        border-radius: 0; 
        padding: 20px;
        text-align: center;
      }
    }

    /* css for pricing-header-section */
.pricing-header {
  position: relative;
  text-align: center;
  padding: 2rem 1rem;
  background-color: #ffffff;
  overflow: hidden;
}

.bg-text-outline {
  font-size: 5rem;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px #f0f0f0;
  /* text-stroke: 1px #f0f0f0; */
  text-transform: uppercase;
  position: absolute;
  /* bottom:; */
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  z-index: 0;
  pointer-events: none;
}

.main-title {
  font-size: 2.1rem;
  font-weight: 800;
  /* color: #001e5a; */
  color: black;
  z-index: 1;
  position: relative;
}

@media (max-width: 768px) {
  .bg-text-outline {
    font-size: 3.5rem;
    -webkit-text-stroke: 0.7px #f0f0f0;
  }

  .main-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .bg-text-outline {
    font-size: 2.5rem;
  }

  .main-title {
    font-size: 1.25rem;
  }
}

/* -------------------------------------- */
.budget-card {
  border-radius: 12px;
  padding: 25px;
  background: #fff;
  max-width: 600px;
  margin: 0px auto;
}

.budget-price {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 10px;
}

/* Slider */
.slider-container {
  position: relative;
  /* margin: 20px auto; */
  width: 100%;
}

.custom-slider {
  width: 100%;
  height: 8px;
  border-radius: 6px;
  background: linear-gradient(to right, rgb(255, 196, 0), rgb(252, 123, 2), violet, red);
  /* outline: 4px solid rgb(247, 247, 247); */
  appearance: none;
  z-index: 2;
  position: relative;
}

/* White thumb */
.custom-slider::-webkit-slider-thumb {
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;  /* White color */
  border: 1px solid #333;
  cursor: pointer;
  position: relative;
  z-index: 3;
}

.custom-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;  /* White color */
  border: 1px solid #333;
  cursor: pointer;
  position: relative;
  z-index: 3;
}

/* Vertical lines */
.slider-markers {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 1;
}

.slider-markers span {
  display: block;
  width: 4px;
  height: 30px;
  background: #333;
  margin-top: -1px;
}

/* Labels */
.slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-top: 10px;
  font-weight: 600;
}

/* Plan Cards */
.plan-card {
  border: 1px solid #eee;
  border-radius: 12px;
  /* padding: 20px; */
  background: #fff;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}
/* ----------------------------------- */





/* --------------------------------------- */
/* css for footer-section */
footer {
  color: black;
  font-size: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

footer h5 {
  font-weight: 600;
  margin-bottom: 1rem;
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li {
  margin-bottom: 0.5rem;
}

footer ul li a {
  text-decoration: none;
  color: black;
  transition: 0.3s;
}

footer ul li a:hover {
  color: red;
}

.footer-bottom {
  background: red;
  color: #ccc;
  padding: 20px 0;
  font-size: 14px;
}

.social-icons a {
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border-radius: 50%;
  background: #f1f1f1;
  color: black;
  margin-right: 8px;
  transition: 0.3s;
}

.social-icons a:hover {
  background: red;
  color: #fff;
}

.subscribe-box input {
  border: 1px solid #ddd;
  border-radius: 0;
}

.subscribe-box button {
  background: red;
  border: none;
  color: #fff;
  border-radius: 0;
}

/* ✅ Floating Social Icons Around Footer Man */
.footer-floating-icon {
  position: absolute;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 16px;
  /* animation: bounce 2s infinite ease-in-out; */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Random placements */
.icon-fb {
  top: 30%;
  left: 20%;
  animation-delay: 0s;
}

.icon-tw {
  top: 30%;
  right: 35%;
  animation-delay: 0.4s;
}

.icon-li {
  bottom: 15%;
  left: 20%;
  animation-delay: 0.8s;
}

.icon-ig {
  bottom: 15%;
  right: 35%;
  animation-delay: 1.2s;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 991.98px) {
  .footer-floating-icon {
    display: none;
  }
}
