/*======================================
    Domain Search CSS
========================================*/
.home-container {
  background-color: #000000;
}

.home-container .home-inner {
  background-color: #000000;
  border-radius: 20px;
  border: 1px solid #eee;
  padding: 0px 200px;
  text-align: center;
  position: relative;
  margin-top: -120px;
  z-index: 5;
  -webkit-box-shadow: 0px 10px 30px #0000000f;
          box-shadow: 0px 10px 30px #0000000f;
  overflow: hidden;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
}

.home-container .home-inner .tabs-header {
  background-color: #000000;
  padding: 20px;
  text-align: center;
  margin: -10px -250px 20px -250px;
  position: relative;
  z-index: 10;
  border-radius: 20px 20px 0 0;
}

@media (max-width: 767px) {
  .status-dots {
    left: 15% !important;
    top: -10px !important;
    transform: translateX(-50%) !important;
  }
  .home-container .home-inner .tabs-header {
    margin: -10px -20px 20px -20px;
  }
}

.status-dots {
  position: absolute;
  left: 100px;
  top: 30%;
  transform: translateY(-50%);
  display: flex;
  gap: 15px;
}

.status-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid #fff;
}

.status-dots .dot.red {
  background-color: #ff0000;
}

.status-dots .dot.orange {
  background-color: #ffa500;
}

.status-dots .dot.green {
  background-color: #00ff00;
}

.tabs {
  margin: 0 auto;
  max-width: 400px;
}

@media (max-width: 767px) {
  .tabs .nav-tabs {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
  }

  .tabs .nav-tabs .nav-link {
    flex-shrink: 0;
    white-space: nowrap;
    font-size: 12px;
    padding: 8px 12px;
  }
}

.home-container .home-inner .nav-tabs .nav-link {
  color: #fff;
  border: none;
}

.home-container .home-inner .nav-tabs .nav-link.active {
  background-color: #fff;
  color: #000000;
}

.home-container .home-inner .nav-tabs {
  justify-content: center;
}

.home-container .home-inner .tab-content .tab-pane {
  padding-top: 40px;
  padding-bottom: 40px;
}

.domain-content .search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  min-width: 600px;
}

.domain-content .search-bar .search-input {
  flex: 1;
  padding: 20px 25px;
  border: 2px solid #fff;
  border-radius: 30px;
  background-color: transparent;
  color: #fff;
  font-size: 18px;
  outline: none;
}

.domain-content .search-bar .search-input::placeholder {
  color: #ccc;
}

.domain-content .search-bar .search-btn {
  width: 150px;
  flex: none;
  padding: 20px 35px;
  border: 2px solid #fff;
  border-radius: 30px;
  background-color: #fff;
  color: #000000;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

@media (max-width: 767px) {
  .domain-content .search-bar {
    flex-direction: column;
    gap: 10px;
    min-width: auto;
  }
  .domain-content .search-bar .search-input {
    flex: none;
    width: 100%;
    padding: 12px 15px;
    font-size: 15px;
  }
  .domain-content .search-bar .search-btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 15px;
  }
  .home-container .home-inner {
    padding: 20px 10px;
  }
}

.domain-content .search-bar .search-btn:hover {
  background-color: #000000;
  color: #fff;
}

.domain-content {
  color: #fff;
  margin: 0;
  min-height: 450px;
}

.domain-content h2 {
  color: #fff;
}

.domain-content p {
  color: #fff;
}

.coming-soon {
  min-height: 450px;
  color: #fff;
}

.coming-soon h2 {
  color: #fff;
}

/* Billing Toggle Styles */
.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  gap: 15px;
}

.billing-label {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  transition: color 0.3s ease;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.2);
  transition: 0.4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #fff;
}

input:checked + .slider:before {
  transform: translateX(26px);
  background-color: #000;
}

.save-badge {
  background-color: #ffa500;
  color: #fff;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  margin-left: 10px;
  transition: all 0.3s ease;
}

/* Pricing Layout */
.plan-price {
  text-align: center;
  margin-bottom: 15px;
}

.price-main {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 0px;
}

.price-main .currency {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.price-main .price-amount {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

.price-main .usd-amount {
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  opacity: 0.8;
}

.billing-period {
  font-size: 11px;
  color: #fff;
  opacity: 0.7;
  font-weight: 500;
  text-align: center;
  margin-top: 0px;
}

.billing-text {
  display: block;
  clear: both;
  width: 100%;
}



.pricing-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: -30px;
  min-height: 450px;
}


.pricing-card {
  background-color: transparent;
  border-radius: 12px;
  padding: 10px 32px 10px;
  flex: 1;
  min-width: 350px;
  max-width: 450px;
  border: 1px solid #fff;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: none;
  color: #fff;
}

@media (max-width: 767px) {
  .pricing-card {
    min-width: 280px;
    max-width: 100%;
    padding: 10px 20px 10px;
  }
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  border-color: #ffa500;
}

.pricing-card.popular::before {
  content: "Popular";
  position: absolute;
  top: 12px;
  right: -30px;
  background-color: #ffa500;
  color: #fff;
  padding: 4px 30px;
  font-size: 12px;
  font-weight: 500;
  transform: rotate(45deg);
}

.plan-name {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
}

.plan-price {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.plan-price .currency {
  font-size: 24px;
  margin-right: 4px;
}

.plan-price .period {
  font-size: 16px;
  color: #fff;
  margin-left: 4px;
  font-weight: 400;
}

.plan-description {
  font-size: 14px;
  color: #fff;
  margin-bottom: 20px;
}

.plan-features {
  list-style: none;
  margin-bottom: 24px;
  padding: 0;
}

.feature {
  display: flex;
  align-items: flex-start;
  font-size: 14px;
  color: #fff;
  margin-bottom: 12px;
}

.feature-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  color: #fff;
  font-weight: bold;
  margin-top: 2px;
}

.pricing-container .btn {
  background-color: #fff;
  color: #000000;
  border: 1px solid #fff;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  text-align: center;
  outline: none;
}

.pricing-container .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(255, 255, 255, 0.3);
  background-color: #000000;
  border-color: #000000;
  color: #fff;
}

@media (max-width: 768px) {
  .pricing-container {
    flex-direction: column;
    align-items: center;
  }
  
  .pricing-card {
    width: 100%;
    max-width: 100%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .home-container .home-inner {
    padding: 60px 60px;
  }
}

@media (max-width: 767px) {
  .home-container .home-inner {
    padding: 35px 20px;
  }
}

.home-container .home-inner .sahpe {
  height: 100px;
  width: 100px;
  border-radius: 50%;
  position: absolute;
  right: -40px;
  top: -40px;
  z-index: -1;
}

@media (max-width: 767px) {
  .home-container .home-inner .sahpe {
    height: 70px;
    width: 70px;
    right: -35px;
    top: -35px;
  }
}

.home-container .home-inner .sahpe2 {
  height: 100px;
  width: 100px;
  border-radius: 50%;
  position: absolute;
  left: -40px;
  bottom: -40px;
  z-index: -1;
}

@media (max-width: 767px) {
  .home-container .home-inner .sahpe2 {
    height: 70px;
    width: 70px;
    left: -35px;
    bottom: -35px;
  }
}

.home-container .content h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .home-container .content h2 {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .home-container .content h2 {
    font-size: 18px;
  }
}

.home-container .content h2 span {
  color: #838383;
  font-weight: 400;
  display: block;
  margin-bottom: 10px;
  font-size: 15px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 1400px) {
  .home-container .content p {
    padding: 0px 20px;
  }
}

.home-container .content .extention-list {
  display: block;
  margin-top: 40px;
}

@media (max-width: 767px) {
  .home-container .content .extention-list {
    margin-top: 20px;
  }
}

.home-container .content .extention-list li {
  display: inline-block;
  margin-right: 12px;
}

@media (max-width: 767px) {
  .home-container .content .extention-list li {
    margin-bottom: 12px;
  }
  .home-container .content .extention-list li:last-child {
    margin: 0;
  }
}

.home-container .content .extention-list li:last-child {
  margin: 0;
  padding: 0;
  border: none;
}

.home-container .content .extention-list li a {
  color: #000000;
  -webkit-box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.075);
          box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.075);
  padding: 20px;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  background-color: #fff;
  border-bottom: 3px solid transparent;
}

@media (max-width: 767px) {
  .home-container .content .extention-list li a {
    font-size: 15px;
    -webkit-box-shadow: none;
            box-shadow: none;
    border: none;
    padding: 0;
  }
  .home-container .content .extention-list li a span {
    margin: 0;
  }
  .home-container .content .extention-list li a:hover {
    color: #000000;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
  }
}

.home-container .content .extention-list li a:hover {
  -webkit-box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.11);
          box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.11);
  border-bottom-color: #000000;
}

.home-container .content .extention-list li a span {
  display: block;
  margin-left: 4px;
  font-size: 14px;
  font-weight: 400;
  color: #999;
  margin-top: 4px;
}

@media (max-width: 767px) {
  .home-container .content .extention-list li a span {
    margin: 0;
  }
}

/* Search Form */
.search-form {
  margin-top: 40px;
  -webkit-box-shadow: 0px 10px 30px #0000000f;
          box-shadow: 0px 10px 30px #0000000f;
  border-radius: 5px;
  padding: 20px;
}

@media (max-width: 767px) {
  .search-form {
    padding: 15px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .search-form {
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .search-form {
    margin-top: 20px;
  }
}

.search-form .search-input {
  position: relative;
}

@media (max-width: 767px) {
  .search-form .search-input {
    margin-bottom: 15px;
  }
}

.search-form .search-input input {
  width: 100%;
  background: #fff;
  border-radius: 4px;
  border: none;
  padding: 0 25px;
  height: 55px;
  font-size: 15px;
  border: 1px solid #eee;
}

.search-form .search-input input:focus {
  outline: none !important;
}

.search-form .search-input label {
  position: absolute;
  right: 25px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 13px;
}

.search-form .search-input select {
  width: 100%;
  background: #fff;
  border-radius: 4px;
  border: 1px solid #eee;
  padding: 0 25px;
  height: 55px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: 15px;
}

.search-form .search-input select:focus {
  outline: none !important;
}

.search-form button {
  width: 100%;
  border: none;
  padding: 0 25px;
  height: 55px;
  border-radius: 4px !important;
}

.search-form button.btn:hover {
  background: #000000;
  color: #fff;
}

.search-form button i {
  display: inline-block;
  margin-right: 5px;
}
