/* :: HEADER :: */
header.hero-header {
  position: relative;
  padding: 60px 0;
  background: radial-gradient(109.18% 191.18% at 50% 50%, rgba(54, 54, 204, 0.79) 19.92%, rgba(73, 73, 231, 0.32) 85.29%), url("../images/backgournds/header-01.png") center, var(--primary);
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 480px;
  display: flex;
  align-items: center;
}

/* Hero Video Background */
.hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.hero-video-wrapper video.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(14, 41, 84, 0.75) 0%, rgba(0, 96, 254, 0.5) 100%);
  mix-blend-mode: multiply;
}

/* content */
header .content .title-1 {
  font-size: clamp(2rem, calc(0.6rem + 2.1vw), 3.2rem);
  font-weight: bold;
  line-height: 1.2;
  color: #ffffff;
}

header .content .para-1 {
  font-size: 16px;
  color: #dadada;
  font-weight: 400;
  max-width: 570px;
}

/* :: HERO DOMAIN REGISTRATION MINIMAL CARD :: */
.hero-domain-minimal {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
  backdrop-filter: blur(10px);
}

.hero-domain-minimal-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--darkBlue, #0e2954);
  line-height: 1.25;
}

.hero-domain-minimal-sub {
  font-size: 13.5px;
  color: #64748b;
}

.hero-minimal-search-box {
  background: #f8fafc;
  border: 1.5px solid #cbd5e1;
  border-radius: 8px;
  padding: 4px 6px 4px 12px;
  transition: all 0.2s ease;
}

.hero-minimal-search-box:focus-within {
  border-color: var(--pri-color, #0060fe);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(0, 96, 254, 0.15);
}

.hero-minimal-search-box .search-icon img {
  width: 16px;
  opacity: 0.6;
  margin-right: 8px;
}

.hero-minimal-input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 14px;
  color: #0f172a;
  width: 100%;
}

.hero-minimal-input::placeholder {
  color: #94a3b8;
  font-size: 13px;
}

.hero-minimal-submit {
  padding: 8px 18px;
  font-size: 12.5px;
  font-weight: 600;
  border-radius: 6px;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.hero-tld-minimal-chips {
  gap: 6px;
}

.hero-tld-minimal-chips .chip {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 4px 9px;
  font-size: 11.5px;
  color: #475569;
}

.hero-tld-minimal-chips .chip strong {
  color: var(--pri-color, #0060fe);
}

/* :: MINI DOMAIN TOGGLE SWITCH :: */
.mini-domain-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  background: #e2e8f0;
  border-radius: 20px;
  padding: 2px;
  user-select: none;
}

.mini-domain-toggle .toggle-btn {
  position: relative;
  z-index: 2;
  border: none;
  background: transparent;
  padding: 3px 9px;
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  border-radius: 18px;
  cursor: pointer;
  transition: color 0.25s ease;
  line-height: 1.2;
}

.mini-domain-toggle .toggle-btn.active {
  color: #ffffff;
}

.mini-domain-toggle .toggle-slider {
  position: absolute;
  top: 2px;
  left: 2px;
  width: calc(50% - 2px);
  height: calc(100% - 4px);
  background: var(--pri-color, #0060fe);
  border-radius: 18px;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 6px rgba(0, 96, 254, 0.3);
  z-index: 1;
}

.mini-domain-toggle.mode-transfer .toggle-slider {
  transform: translateX(100%);
}

@media (max-width: 991.98px) {
  header.hero-header {
    padding: 30px 0;
    min-height: auto;
  }

  .hero-domain-minimal {
    margin-top: 15px;
    padding: 20px 16px;
  }
}

@media (max-width: 767.98px) {
  header.hero-header {
    padding: 20px 0 25px 0;
    min-height: auto;
  }

  header.hero-header .container-fluid {
    padding-top: 6px !important;
    padding-bottom: 6px !important;
  }

  header.hero-header .col-xl-6.mb-4,
  header.hero-header .col-xl-6 {
    margin-bottom: 14px !important;
  }

  header.hero-header .content .title-1 {
    font-size: 24px;
    line-height: 1.25;
    margin-bottom: 8px !important;
  }

  header.hero-header .content .para-1 {
    font-size: 13.5px;
    margin-bottom: 14px !important;
    line-height: 1.4;
  }

  header.hero-header .content .theme-btn {
    padding: 8px 16px;
    font-size: 12px;
    margin-bottom: 6px !important;
  }

  .hero-domain-minimal {
    margin-top: 10px;
    padding: 16px 14px;
  }

  .hero-domain-minimal-title {
    font-size: 16px;
  }

  .hero-domain-minimal-sub {
    font-size: 12.5px;
    margin-bottom: 10px !important;
  }

  .mini-domain-toggle {
    padding: 2px;
    flex-shrink: 0;
  }

  .mini-domain-toggle .toggle-btn {
    padding: 3px 8px;
    font-size: 10.5px;
  }

  .hero-minimal-search-box {
    padding: 3px 4px 3px 8px;
  }

  .hero-minimal-input {
    font-size: 12.5px;
  }

  .hero-minimal-submit {
    padding: 6px 14px;
    font-size: 11.5px;
  }

  .hero-tld-minimal-chips .chip {
    padding: 2px 6px;
    font-size: 10.5px;
  }
}

@media (max-width: 576px) {
  header.hero-header {
    padding: 15px 0 20px 0;
  }

  header.hero-header .container-fluid {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }

  header.hero-header .col-xl-6.mb-4,
  header.hero-header .col-xl-6 {
    margin-bottom: 10px !important;
  }

  header.hero-header .content .title-1 {
    font-size: 21px;
    margin-bottom: 6px !important;
    line-height: 1.2;
  }

  header.hero-header .content .para-1 {
    font-size: 12.5px;
    margin-bottom: 10px !important;
    line-height: 1.35;
  }

  header.hero-header .content .theme-btn {
    padding: 7px 14px;
    font-size: 11px;
    margin-bottom: 4px !important;
    margin-right: 4px !important;
  }

  .hero-domain-minimal {
    margin-top: 8px;
    padding: 12px 10px;
    border-radius: 10px;
  }

  .hero-domain-minimal-title {
    font-size: 14px;
    letter-spacing: -0.2px;
  }

  .hero-domain-minimal-sub {
    font-size: 11.5px;
    margin-bottom: 8px !important;
    line-height: 1.3;
  }

  .mini-domain-toggle {
    padding: 2px;
  }

  .mini-domain-toggle .toggle-btn {
    padding: 2px 6px;
    font-size: 9.5px;
  }

  .hero-minimal-search-box {
    padding: 3px 4px 3px 6px;
  }

  .hero-minimal-search-box .search-icon img {
    width: 14px;
    margin-right: 4px;
  }

  .hero-minimal-input {
    font-size: 11.5px;
  }

  .hero-minimal-input::placeholder {
    font-size: 11px;
  }

  .hero-minimal-submit {
    padding: 5px 10px;
    font-size: 10.5px;
  }

  .hero-tld-minimal-chips {
    gap: 3px;
  }

  .hero-tld-minimal-chips .chip {
    padding: 2px 5px;
    font-size: 10px;
  }
}

@media (max-width: 380px) {
  header.hero-header {
    padding: 20px 0 15px 0;
  }

  header.hero-header .content .title-1 {
    font-size: 25px;
  }

  header.hero-header .content .para-1 {
    font-size: 12px;
  }

  .hero-domain-minimal {
    padding: 10px 8px;
  }

  .hero-domain-minimal-title {
    font-size: 13px;
  }

  .mini-domain-toggle .toggle-btn {
    padding: 2px 5px;
    font-size: 9px;
  }

  .hero-minimal-input {
    font-size: 11px;
  }

  .hero-minimal-submit {
    padding: 4px 8px;
    font-size: 10px;
  }
}


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

/* :: SECTION-I :: */
.se-i {
  padding: 60px 0;
}

/* section-title */
.se-i .section-title,
.se-i .section-title>span {
  font-size: 42px;
  font-weight: 700;
  color: var(--darkBlue);
  font-family: 'Poppins', sans-serif;
  line-height: 1;
}

/* section-para */
.se-i .section-para {
  font-size: 16px;
  color: var(--darkBlue);
}

/* th-input */
.se-i .domain-form .th-input {
  height: 72px;
  font-size: 20px;
  padding: 0 130px 0 30px;
}

.se-i .domain-form .th-btn {
  position: absolute;
  right: 20px;
}

/* box */
.se-i .box {
  padding: 30px 15px 30px 15px;
  background-color: #fff;
  border: 1px solid var(--primary-shadow);
  box-shadow: -4px 4px 0 var(--primary-shadow);
  border-radius: 4px;
}

/* box-title */
.se-i .box .box-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--darkBlue);
}

.se-i .box .box-title>span {
  font-size: 26px;
  font-weight: 600;
  color: var(--tomato);
}

/* price */
.se-i .box .price {
  font-size: 16px;
  color: var(--darkBlue);
  margin-top: 15px;
}

.se-i .box .price .text:nth-child(1) {
  color: var(--darkGray);
  font-size: 14px;
}

.se-i .box .price .text:nth-child(2) {
  font-size: 20px;
  font-weight: 800;
}

/* th-btn */
.se-i .box .th-btn {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -21px;
}

/* media-query */
@media only screen and (max-width: 1599.98px) {

  /* section-title */
  .se-i .section-title,
  .se-i .section-title>span {
    font-size: 36px;
  }

  /* box-title */
  .se-i .box .box-title {
    font-size: 22px;
  }
}

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

/* :: SECTION-II :: */

/* filter-nav-i */
.se-ii .filter-nav-i .tab {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--darkGray);
  font-size: 14px;
  border: 1px solid var(--border);
  padding: 14px 28px;
  border-radius: 2px;
  cursor: pointer;
  color: var(--darkBlue);
  font-weight: 500;
  background-color: #fff;
  box-shadow: -4px 4px 0 var(--primary-shadow);
  transition: all .15s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.se-ii .filter-nav-i .tab:not(.active):hover {
  box-shadow: 0 0 0 var(--primary-shadow);
}

.se-ii .filter-nav-i .tab.active {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #FFFFFF;
}

/* side-plan */
.se-ii .side-plan {
  position: relative;
  padding: 60px 30px;
  border-radius: 12px;
  background-color: var(--primary);
  height: 100%;
  background-image: url("../images/elements/shop-receipt.png");
  background-repeat: no-repeat;
  background-size: 270px;
  background-position: bottom -50px center;
}

.se-ii .side-plan .title-1 {
  font-size: 20px;
  font-weight: 400;
  color: #fff;
}

.se-ii .side-plan .title-2 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 30px;
}

.se-ii .side-plan .para-1 {
  font-size: 14px;
  font-weight: 500;
  color: #ddd;
}

/* plan */
.se-ii .plan {
  background-color: #fff;
  padding: 50px 30px;
  border-radius: 8px;
  border: 1px solid var(--primary-shadow);

}

/* plan-title */
.se-ii .plan .plan-title {
  font-size: 20px;
  font-weight: bold;
  color: var(--darkBlue);
  margin-bottom: 10px;
}

/* plan-sub */
.se-ii .plan .plan-sub {
  font-size: 14px;
  font-weight: 600;
  color: var(--lightBlue);
  margin-bottom: 45px;
}

/* plan-price */
.se-ii .plan .plan-price {
  font-size: 26px;
  font-weight: 900;
  color: var(--darkBlue);
}

.se-ii .plan .plan-price-sub {
  font-size: 14px;
  font-weight: 600;
  color: var(--lightBlue);
}

/* hr */
.se-ii .plan hr {
  border-color: var(--primary-shadow);
  border-width: 1px;
}

/* fea-sec */
.se-ii .plan .fea-sec {
  margin-top: 45px;
}

/* fea-title */
.se-ii .plan .fea-sec .fea-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--darkBlue);
  margin-bottom: 20px;
}

/* item */
.se-ii .plan .fea-sec .item {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--darkBlue);
}

.se-ii .plan .fea-sec .item:not(last-of-type) {
  margin-bottom: 10px
}

.se-ii .plan .fea-sec .item img {
  width: 16px;
}

/* float-box */
.se-ii .plan .fea-sec .item .float-box {
  position: absolute;
  top: 2px;
  right: 0;
  width: 18px;
  height: 18px;
}

.se-ii .plan .fea-sec .item .float-box::before {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  content: '?';
  right: 0;
  top: 0;
  width: 18px;
  height: 18px;
  background-color: var(--primary-shadow);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  transition: all .15s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.se-ii .plan .fea-sec .item .float-box::after {
  position: absolute;
  content: attr(data-text);
  top: 50%;
  right: 26px;
  transform: translateY(-50%);
  width: 280px;
  background-color: #fff;
  box-shadow: -4px 4px 0 var(--primary-shadow);
  white-space: normal;
  padding: 10px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--lightBlue);
  border: 1px solid var(--primary-shadow);
  border-radius: 4px;
  z-index: 3;
  visibility: hidden;
  opacity: 0;
  transition: all .15s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.se-ii .plan .fea-sec .item .float-box:hover::after {
  visibility: visible;
  opacity: 1;
}

/* se-footer */
.se-ii .se-footer .line {
  margin: 6px 12px;
}

.se-ii .se-footer .line .icon {
  min-width: 16px;
  width: 16px;
}

.se-ii .se-footer .line .text {
  font-size: 14px;
  font-weight: 500;
  color: var(--darkBlue);
}

/* media-query */
@media only screen and (max-width: 767.98px) {

  /* filter-nav-i */
  .se-ii .filter-nav-i .tab {
    padding: 14px;
  }

  /* side-plan */
  .se-ii .side-plan {
    padding: 40px 30px;
    height: 400px;
    background-size: 270px;
    background-position: bottom -100px center;
  }
}

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

/* :: SECTION-III :: */

/* box */
.se-iii .box {
  position: relative;
  border-radius: 12px;
  background-color: var(--primary);
  background: radial-gradient(109.18% 191.18% at 50% 50%, rgba(54, 54, 204, 0.79) 19.92%, rgba(73, 73, 231, 0.32) 85.29%), url("../images/backgournds/card-bg.png") center, var(--primary);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 40px 30px;
  height: 330px;
  box-shadow: -4px 4px 0 var(--primary-shadow);
  overflow: hidden;
}

.se-iii .box::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}

/* box-title , box-para */
.se-iii .text {
  position: relative;
  z-index: 3;
}

.se-iii .box-title {
  color: #fff;
  font-size: 20px;
  margin-bottom: 15px;
}

.se-iii .box-para {
  font-size: 16px;
  color: #ddd;
}

/* box-icon */
.se-iii .box-icon {
  position: absolute;
  width: 160px;
  right: -15px;
  bottom: -15px;
  z-index: 1;
}

[dir="rtl"] .se-iii .box-icon {
  right: unset;
  left: -15px;
}

/* media-query */
@media only screen and (max-width: 991.98px) {

  /* box */
  .se-iii .box {
    height: unset;
    padding: 30px;
  }

  /* box-title , box-para */
  .se-iii .text {
    max-width: 80%;
  }

  /* box-icon */
  .se-iii .box-icon {
    width: 160px;
  }
}

@media only screen and (max-width: 767.98px) {

  /* box-title , box-para */
  .se-iii .box-title {
    font-size: 18px;
  }

  .se-iii .box-para {
    font-size: 14px;
  }

  /* box-icon */
  .se-iii .box-icon {
    width: 100px;
    right: 10px;
    bottom: 10px;
  }

  [dir="rtl"] .se-iii .box-icon {
    right: unset;
    left: 10px;
  }
}

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

/* :: SECTION-V :: */
.se-v {
  position: relative;
}

/* text */
.se-v .text {
  padding: 100px 0 100px 4vw;
}

[dir="rtl"] .se-v .text {
  padding: 100px 4vw 100px 0;
}

.se-v .text .sub-title {
  font-size: 17px;
  font-weight: 500;
  color: var(--darkBlue);
}

.se-v .text .title-1 {
  font-size: 46px;
  color: var(--darkBlue);
}

.se-v .text .para-1 {
  font-size: 16px;
  font-weight: 500;
  color: var(--lightBlue);
}

/* media-query */
@media only screen and (min-width: 1200px) {
  .se-v::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    right: 50%;
    bottom: 0;
    background-color: var(--primary);
    background-image: url('../images/elements/marketplace-interface.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 42vh;
  }

  [dir="rtl"] .se-v::before {
    left: 50%;
    right: 0;
  }
}

@media only screen and (max-width: 1199.98px) {

  /* text */
  .se-v .text {
    padding: 100px 0;
  }
}

@media only screen and (max-width: 991.98px) {

  /* text */
  .se-v .text {
    padding: 90px 0;
  }

  /* text */
  .se-v .text .title-1 {
    font-size: 36px;
  }
}

@media only screen and (max-width: 767.98px) {

  /* text */
  .se-v .text {
    padding: 70px 0;
  }

  /* text */
  .se-v .text .sub-title {
    font-size: 16px;
  }
}

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