.se-i .se-footer .line {
    margin: 6px 12px;
}

.se-i .se-footer .line .icon {
    min-width: 16px;
    width: 16px;
    margin-right: 10px;
}

.highlight{
    color: var(--primary);
}

/* GLOBAL HERO SECTION */
.hero-section {
  background-color: #ffffff;
  padding: 30px 0;
  overflow: hidden;
}

/* Wrapper */
.hero-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
}

/* Hero Content */
.hero-content {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.hero-title {
  font-size: 17px;
  font-family: "Poppins", sans-serif;
  color: var(--dark);
  font-weight: 500;
  margin-bottom: 10px;
}

.hero-subtitle {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(2.01rem, calc(0.5rem + 2.9004vw), 2.5rem);
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 15px;
}

.hero-off {
  color: var(--primary);
}

.hero-text {
  font-size: 16px;
  color: var(--text-gray);
  margin-bottom: 15px;
  line-height: 1.7;
}

/* Hero List Section */
.hero-list-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 20px;
}

.hero-ul-list-items {
  list-style: none;
  padding: 0;
  margin: 0 0 15px 0;
  display: flex;
  flex-direction: column;
  gap:10px;
}

.hero-list-item {
  font-size: 16px;
  position: relative;
  padding-left: 25px;
  width: max-content;
  align-items: start;
}

.hero-list-item::before {
  content: "✓";
  color: #13b763;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.hero-list-price {
  display: flex;
  justify-content: flex-start;
  /*align-items: center;*/
  align-items: baseline;
  gap: 10px;
}

.price-old {
  text-decoration: line-through;
  text-decoration-color: #61646e;
  font-size: 16px;
}

.start-price-text{
    font-size:18px;
    font-weight:600;
}

.price-current {
    position: relative;
    display: flex;
    align-items: baseline;
}

.per-rupee {
  font-size: 28px;
  color: var(--text-gray);
  position: absolute;
  top: 0px;
}

.rupee-number {
    color: var(--dark);
    color:var(--primary);
    font-weight: 600;
    font-size: clamp(2.01rem, calc(0.5rem + 2.9004vw), 2.75rem);
    margin-left: 18px;
}

.per-month {
  font-weight: 500;
  font-size: 20px;
  color: var(--text-gray);
}

.bonus {
  font-size: 18px;
  font-weight:600;
  color: var(--primary);
}

/* Buttons + Timer */
.hero-button-timer {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-btn {
    font-family: var(--secondary-font);
  font-size: 15px;
  background-color: var(--primary);
  border: none;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  height: 54px;
  width: 200px;
  line-height: 1;
  letter-spacing: 0.8px;
}

.hero-timer-wrapper {
    font-family: var(--secondary-font);
  font-size: 15px;
  background-color: #f5f3fe;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  height: 54px;
  width: 200px;
  line-height: 1;
  letter-spacing: 0.8px;
}

.hero_timer {
  display: flex;
  justify-content: space-around;
  width: 85%;
  align-items: center;
  font-family: var(--secondary-font);
}

/* Guarantee */
.hero-guarantee {
  display: flex;
  justify-content: flex-start;
  margin-top: 15px;
  gap: 5px;
}

.hero-guarantee-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-guarantee-text {
  font-size: 14px;
  font-weight: 500;
}

/* Tooltip */
.tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.tooltip-content {
  position: absolute;
  top: 50%;
  left: calc(100% + 15px);
  transform: translateY(-50%) scale(0.98);
  background: var(--primary);
  color: #ffffff;
  padding: 12px;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  min-width: 210px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.tooltip-content::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 100%;
  transform: translateY(-50%);
  border-width: 10px;
  border-style: solid;
  border-color: transparent var(--primary) transparent transparent;
}

.tooltip:hover .tooltip-content {
  opacity: 1;
  visibility: visible;
}

.underline-dotted {
  color: var(--dark);
  text-decoration: underline;
  text-decoration-color: #b7c3d1;
  text-decoration-style: dashed;
  text-underline-position: under;
  font-size: 16px;
  font-weight: 400;
}

/* Hero Image */
.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60%;
}

.hero-img-fluid {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .hero-content,
  .hero-image {
    width: 100%;
  }

  .hero-list-section {
    align-items: center;
  }

  .hero-ul-list-items {
    align-items: center;
  }

  .hero-list-price {
    justify-content: center;
  }

  .hero-button-timer {
    justify-content: center;
    flex-direction: column-reverse;
    gap: 15px;
  }

  .hero-guarantee {
    justify-content: center;
  }

  .tooltip-content {
    top: auto;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) scale(0.98);
  }

  .tooltip-content::before {
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    border-color: var(--primary) transparent transparent transparent;
  }

  .tooltip:hover .tooltip-content {
    transform: translateX(-50%) scale(1);
  }
}

@media (max-width: 468px) {
  .hero-btn,
  .hero-timer-wrapper {
    width: 100%;
    max-width: 200px;
  }
}

/* ============================= */
/* HERO DOMAIN SEARCH BAR */
/* ============================= */

.hero-domain-search {
  width: 100%;
}

.hero-domain-search-wrapper {
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid #e5e8f0;
  border-radius: 8px;
  padding: 6px;
  /*box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);*/
}

/* Search Icon */
.hero-domain-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
}

.hero-domain-icon-search{
  width: 25px;
  opacity: 0.6;
}

/* Input */
.hero-domain-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 15px;
  padding: 12px 10px;
  font-family: var(--secondary-font);
  color: var(--dark);
}

.hero-domain-input::placeholder {
  color: #9aa3b2;
}

/* Button */
.hero-domain-btn {
  background-color: var(--primary);
  color: #ffffff;
  border: none;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 20px;
  border-radius: 5px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  transition: all 0.25s ease;
}

.hero-domain-btn:hover {
  background-color: #0fa35a;
}

/* Focus State */
.hero-domain-search-wrapper:focus-within {
  border-color: var(--primary);
  /*box-shadow: 0 0 0 3px rgba(19, 183, 99, 0.15);*/
}

/* Responsive */
@media (max-width: 768px) {
  .hero-domain-search {
    max-width: 100%;
  }

  .hero-domain-search-wrapper {
    flex-direction: column;
    gap: 10px;
  }

  .hero-domain-btn {
    width: 100%;
  }
}

/*GLOBAL HERO SECTION CSS END*/


.domains-boxes{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 20px;
}

.domains-box-name{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--border);
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.95) 100%), var(--primary);
    padding: 10px;
    border-radius: 5px;
}

.domain-img{
    height: 30px;
    width:80px;
    opacity: 0.6;
}