/* :: HEADER :: */
header {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background-color: #050614;
  background-image: linear-gradient(90deg, #0b0d21 0%, #050614 100%), url(../../images/pages/index/bg-d.png);
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}
.light-theme header {
  background-color: #e6f4f8;
  background-image: url(../../images/pages/index/bg.png);
}

@media only screen and (max-width: 991.98px) {
  header {
    padding: 100px 0 60px;
  }
}

.domain-price-card {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  border-radius: 18px;

  background: linear-gradient(135deg, #ffffff 0%, #eef5ff 100%);
  border: 1px solid rgba(11, 92, 255, 0.22);
  box-shadow: 0 14px 36px rgba(11, 92, 255, 0.16);
  backdrop-filter: blur(8px);

  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.domain-price-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(11, 92, 255, 0.22);
}

.price-pill {
  padding: 6px 10px;
  border-radius: 999px;
  background: #0b5cff;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.price-kicker {
  position: relative;
  padding-right: 14px;
  font-size: 13px;
  font-weight: 800;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.price-kicker::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 1px;
  height: 22px;
  background: rgba(37, 99, 235, 0.18);
  transform: translateY(-50%);
}

.price-main {
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
  white-space: nowrap;
}

.price-main strong {
  font-size: 26px;
  font-weight: 900;
  color: #0b5cff;
  letter-spacing: -0.03em;
  text-shadow: 0 4px 14px rgba(11, 92, 255, 0.18);
}

@media (max-width: 575px) {
  .domain-price-card {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 10px;
    padding: 13px 16px;
    max-width: 320px;
  }

  .price-pill {
    font-size: 10px;
  }

  .price-kicker {
    width: 100%;
    padding-right: 0;
    text-align: center;
    font-size: 11px;
  }

  .price-kicker::after {
    display: none;
  }

  .price-main strong {
    font-size: 23px;
  }
}


.tld-badges-slider {
  max-width: 620px;
  overflow: hidden;
  position: relative;
  padding-top: 6px;
  padding-bottom: 6px;

  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 6%,
    #000 94%,
    transparent 100%
  );
          mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 6%,
    #000 94%,
    transparent 100%
  );
}

.tld-badges-track {
  display: flex;
  width: max-content;
  gap: 12px;
  animation: tldBadgesSlide 28s linear infinite;
  will-change: transform;
  padding-top: 4px;
}

.tld-badges-slider:hover .tld-badges-track {
  animation-play-state: paused;
}

.tld-badges {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  flex: 0 0 auto;
}

.tld-badges span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 17px;
  background: #ffffff;
  border-radius: 9px;
  box-shadow: 0 5px 14px rgba(15, 23, 42, 0.12);
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  line-height: 1;
  white-space: nowrap;
  position: relative;
  z-index: 1;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.tld-badges span:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.18);
  background: #f8fafc;
  z-index: 10;
}

.tld-badges i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  transition: transform 0.18s ease;
}

.tld-badges span:hover i {
  transform: scale(1.15);
}

.tld-badges span:nth-child(1) i { background: #4ade00; }
.tld-badges span:nth-child(2) i { background: #0057ff; }
.tld-badges span:nth-child(3) i { background: #020617; }
.tld-badges span:nth-child(4) i { background: #4f46e5; }
.tld-badges span:nth-child(5) i { background: #f59e0b; }
.tld-badges span:nth-child(6) i { background: #0088ff; }
.tld-badges span:nth-child(7) i { background: #06b6d4; }
.tld-badges span:nth-child(8) i { background: #ec4899; }
.tld-badges span:nth-child(9) i { background: #3730a3; }
.tld-badges span:nth-child(10) i { background: #dc2626; }
.tld-badges span:nth-child(11) i { background: #0891b2; }
.tld-badges span:nth-child(12) i { background: #65a30d; }
.tld-badges span:nth-child(13) i { background: #1d4ed8; }

@keyframes tldBadgesSlide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 6px));
  }
}

@media (max-width: 767px) {
  .tld-badges-slider {
    max-width: 100%;
  }

  .tld-badges span {
    padding: 9px 14px;
    font-size: 13px;
  }

  .tld-badges-track {
    animation-duration: 24s;
  }
}

/* ── Glassy Search Container ────────────────────────────────── */
.glassy-search-container {
  position: relative;
  background: linear-gradient(160deg, rgba(30, 33, 64, 0.9) 0%, rgba(17, 19, 38, 0.95) 55%, rgba(13, 15, 34, 1) 100%);
  border-radius: 24px;
  padding: 40px;
  width: 100%;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.07),
    0 32px 80px rgba(0,0,0,.35),
    0 0 60px rgba(0,96,254,.08) inset;
}
.light-theme .glassy-search-container {
  background: linear-gradient(160deg, #ffffff 0%, #f0f4ff 100%);
  box-shadow:
    0 0 0 1px rgba(0,96,254,.13),
    0 32px 80px rgba(0,96,254,.14);
}

/* glowing top accent line */
.glassy-search-container::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0060fe 0%, #7c3aed 50%, #0060fe 100%);
  border-radius: 24px 24px 0 0;
}

/* decorative glowing orbs for header */
.header-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.header-orb-1 {
  width: 300px; height: 300px;
  top: -100px; right: -50px;
  background: radial-gradient(circle, rgba(0,96,254,.15) 0%, transparent 70%);
}
.header-orb-2 {
  width: 250px; height: 250px;
  bottom: -50px; left: -50px;
  background: radial-gradient(circle, rgba(124,58,237,.12) 0%, transparent 70%);
}

/* ── Hero Graphic ─────────────────────────────────────────── */
.hero-graphic-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-graphic-wrap img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 50px rgba(0,0,0,0.5));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

/* ── Title & Text ────────────────────────────────────────── */
header .title-1 {
  font-size: clamp(2.2rem, calc(1rem + 3.5vw), 3.5rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
  text-transform: uppercase;
}
.light-theme header .title-1 {
  color: var(--darkBlue);
}

header .para-1 {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  max-width: 550px;
}
.light-theme header .para-1 {
  color: var(--darkGray);
}
header .para-1 a {
  color: #ffffff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.light-theme header .para-1 a {
  color: var(--primary);
}

/* ── Search Form ─────────────────────────────────────────── */
header .search-form .form-label {
  width: 100%;
  margin-bottom: 0;
}

header .search-form .form-input {
  width: 100%;
  height: 64px;
  padding: 0 160px 0 54px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  transition: all 0.3s ease;
}
.light-theme header .search-form .form-input {
  background: #ffffff;
  border: 1px solid rgba(0,96,254,0.15);
  color: var(--darkBlue);
}
header .search-form .form-input:focus {
  background: rgba(255,255,255,0.08);
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(0,69,255,0.15);
  outline: none;
}
header .search-form .form-input::placeholder {
  color: rgba(255,255,255,0.4);
}
.light-theme header .search-form .form-input::placeholder {
  color: rgba(11,12,27,0.4);
}

header .search-form .input-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  opacity: 0.6;
}
.dark-theme header .search-form .input-icon img {
  filter: invert(1);
}

header .search-form .submit-btn {
  position: absolute;
  right: 6px;
  top: 6px;
  bottom: 6px;
  height: 52px;
  padding: 0 30px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: var(--primary);
  color: #fff;
  border: none;
  box-shadow: 0 4px 15px rgba(0,69,255,0.3);
  transition: all 0.3s ease;
}
header .search-form .submit-btn:hover {
  background: #003bdf;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,69,255,0.4);
}

@media (max-width: 767px) {
  .glassy-search-container { padding: 25px; }
  header .search-form .form-input { padding: 0 20px 0 45px; height: 54px; }
  header .search-form .submit-btn { position: relative; width: 100%; right: 0; top: 10px; height: 50px; }
  header .search-form .input-icon { top: 27px; transform: translateY(-50%); }
}

/* ----------------------------------- */

/* :: SECTION I :: */

/* domain-box */
.se-i .domain-box {
  position: relative;
  background-color: var(--darkBlue);
  background-image: url(../../images/pages/domains/shapes-01.png);
  background-size: cover;
  background-position: top left;
  background-repeat: no-repeat;
  padding: 30px 20px;
  border-radius: 12px;
  overflow: hidden;
}
.light-theme .se-i .domain-box {
  background-color: var(--light);
  border: 1px solid var(--border);
}
.se-i .domain-box::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, .4) 100%);
  z-index: 1;
}
.light-theme .se-i .domain-box::before {
  display: none;
}
.se-i .domain-box > * {
  position: relative;
  z-index: 2;
}
.se-i .row > div:nth-child(2) .domain-box {
  background-image: url(../../images/pages/domains/shapes-02.png);
}
.se-i .row > div:nth-child(3) .domain-box {
  background-image: url(../../images/pages/domains/shapes-03.png);
}
.se-i .row > div:nth-child(4) .domain-box {
  background-image: url(../../images/pages/domains/shapes-04.png);
}
.se-i .row > div:nth-child(5) .domain-box {
  background-image: url(../../images/pages/domains/shapes-05.png);
}
.se-i .row > div:nth-child(6) .domain-box {
  background-image: url(../../images/pages/domains/shapes-06.png);
}
.se-i .row > div:nth-child(7) .domain-box {
  background-image: url(../../images/pages/domains/shapes-07.png);
}
.se-i .row > div:nth-child(8) .domain-box {
  background-image: url(../../images/pages/domains/shapes-08.png);
}

/* box-name */
.se-i .domain-box .box-name {
  font-size: 36px;
  font-family: var(--primary-font);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}
.light-theme .se-i .domain-box .box-name {
  color: var(--darkBlue);
}
.se-i .domain-box .box-name span {
  color: var(--gold);
}

/* box-para */
.se-i .domain-box .box-para {
  font-size: 14px;
  font-weight: 500;
  color: var(--darkGray);
}

/* price */
.se-i .domain-box .price {
  margin-top: 40px;
}
.se-i .domain-box .price .sub {
  font-size: 14px;
  font-weight: 500;
  color: var(--darkGray);
}
.se-i .domain-box .price .title-3 {
  font-size: 26px;
  font-family: var(--third-font);
  font-weight: 700;
  color: #ffffff;
}
.light-theme .se-i .domain-box .price .title-3 {
  color: var(--darkBlue);
}

/* search-btn */
.se-i .domain-box .search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  transition: box-shadow .20s ease, background-color .20s ease, border-color .20s ease, color .20s ease;
}
.se-i .domain-box .search-btn img {
  width: 20px;
  filter: invert(1);
}
/* ----------------------------------- */

/* :: SECTION II :: */

/* box-icon */
.se-ii .box .box-icon {
  height: 58px;
  margin-bottom: 25px;
}
.se-ii .box .box-icon img {
  width: 48px;
}
.se-ii .box .box-icon img.l-img {
  display: none !important;
}
.light-theme .se-ii .box .box-icon img.l-img {
  display: block !important;
}
.light-theme .se-ii .box .box-icon img.d-img {
  display: none !important;
}

/* box-title & box-para */
.se-ii .box .box-title {
  font-size: 18px;
  font-family: var(--secondary-font);
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 10px;
}
.light-theme .se-ii .box .box-title {
  color: var(--darkBlue);
}
.se-ii .box .box-para {
  font-size: 15px;
  font-weight: 500;
  color: var(--darkGray);
}
/* ----------------------------------- */

/* :: SECTION III :: */

/* box */
.se-iii .box {
  background-color: var(--semi-dark);
  border-radius: 8px;
  padding: 35px 30px 10px;
  border: 1px solid var(--border);
  transition: all .20s ease;
}
.light-theme .se-iii .box {
  background-color: #fff;
}
.se-iii .box:hover {
  background-color: var(--semi-dark-2);
}
.light-theme .se-iii .box:hover {
  background-color: var(--light);
}

/* box-link */
.se-iii .box-link {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
}

/* icon */
.se-iii .box .icon {
  position: relative;
  width: 70px;
  height: 70px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  overflow: hidden;
}
.se-iii .box .icon::before {
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: var(--primary);
  opacity: .1;
}
.se-iii .box.color-1 .icon::before {
  background-color: #26C6DA;
}
.se-iii .box.color-2 .icon::before {
  background-color: #FC573B;
}
.se-iii .box.color-3 .icon::before {
  background-color: #FFD200;
}
.se-iii .box.color-4 .icon::before {
  background-color: #BD63F9;
}
.se-iii .box.color-5 .icon::before {
  background-color: #00FFB7;
}
.se-iii .box.color-6 .icon::before {
  background-color: #FE9801;
}
.se-iii .box .icon img {
  width: 34px;
}

/* box-title */
.se-iii .box-title {
  color: #FFFFFF;
  font-size: 20px;
  font-family: var(--secondary-font);
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.2;
}
.light-theme .se-iii .box-title {
  color: var(--darkBlue);
}

/* box-para */
.se-iii .box-para {
  font-size: 14px;
  font-weight: 500;
  color: var(--darkGray);
  line-height: 1.7;
  max-height: 70px;
  height: 70px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-bottom: 25px;
}

/* arrow */
.se-iii .arrow {
  margin-top: 20px;
}
.se-iii .arrow img {
  width: 24px;
  filter: contrast(0);
  transition: all .15s ease;
}
.se-iii .box:hover .arrow img {
  filter: contrast(100%);
}
/* ----------------------------------- */