@font-face {
  font-family: "Montserrat-Arabic";
  src: url("../fonts/Montserrat-Arabic-Regular.woff2") format("woff2"),
    url("../fonts/Montserrat-Arabic-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat-Arabic";
  src: url("../fonts/Montserrat-Arabic-Medium.woff2") format("woff2"),
    url("../fonts/Montserrat-Arabic-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat-Arabic";
  src: url("../fonts/Montserrat-Arabic-SemiBold.woff2") format("woff2"),
    url("../fonts/Montserrat-Arabic-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat-Arabic";
  src: url("../fonts/Montserrat-Arabic-Bold.woff2") format("woff2"),
    url("../fonts/Montserrat-Arabic-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary-clr: #0e4ca6;
  --secondry-clr: #1a293b;
  --light-clr: #888888;
  --white-clr: #fff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
::selection {
  background-color: rgb(48, 143, 194);
  color: #fff;
}

a {
  text-decoration: none;
  display: inline-block;
}

button:focus {
  outline: none;
}

img {
  max-width: 100%;
  user-select: none;
}

input:focus,
textarea:focus {
  outline: none;
}

body {
  font-family: "Montserrat-Arabic";
  direction: rtl;
  scroll-behavior: smooth;
  background-color: #fafafa;
}

/* ----------------------utilities------------------ */

/* colors */
.primary-clr {
  color: var(--primary-clr);
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
}

.primary-clr-hover:hover {
  color: var(--primary-clr);
}

.secondry-clr {
  color: var(--secondry-clr);
  transition: 0.2s;
}

.secondry-clr-hover:hover {
  color: var(--secondry-clr);
}

.primary-back {
  background-color: var(--primary-clr);
  transition: 0.2s;
}

.primary-back-hover:hover {
  background-color: var(--primary-clr);
}

.secondry-back {
  background-color: var(--secondry-clr);
  transition: 0.2s;
}

.secondry-back-hover:hover {
  background-color: var(--secondry-clr);
}

.border-primary {
  border-color: var(--primary-clr) !important;
}

.light-text {
  color: #888888;
  font-weight: 300;
}

/* font sizes */
.font-15 {
  font-size: 15px;
}

.font-18 {
  font-size: 18px;
}
.font-19 {
  font-size: 19px;
}
.font-20 {
  font-size: 20px;
}

.font-22 {
  font-size: 22px;
}

/* shadow */
.shadow-box {
  box-shadow: 0px 20px 30px 1px rgb(0, 0, 0, 3%);
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cursor-pointer {
  cursor: pointer;
}

.ltr {
  direction: ltr;
}

p {
  line-height: 30px;
}

.hosting-info {
  background-color: #ebf3ff3b;
}

.domain-box .price {
  border: 1px solid #8e8e8e;
}
.domain-box {
  color: #000;
  margin-bottom: 15px;
  display: block;
}

.domain-box img {
  max-width: 120px;
  width: auto;
}

.domain-box span {
  display: block;
}

.earth-back {
  padding: 30px 0;
  background-image: url("../images/earth-back.webp");
  background-size: cover;
  background-position: center center;
}

.plan-box > a {
  position: relative;
  overflow: hidden;
}

.plan-box > a span {
  position: relative;
  z-index: 333;
}

.plan-box > a::before {
  content: "";
  width: 0;
  height: 0;
  border-radius: 50%;
  position: absolute;
  right: 50%;
  top: 0;
  transform: translateX(50%);
  background-color: #17468c;
  transition: 0.4s;
  z-index: 222;
}

.plan-box > a:hover::before {
  width: 100%;
  height: 100%;
  border-radius: 0;
}

section.domain-check {
  padding: 15px 20px;
  text-align: center;
}

.domain-check h2 {
  font-weight: 700;
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
}

.domain-check p {
  font-size: 1.1rem;
  color: #e0e0e0;
  margin-bottom: 2.5rem;
}

.domain-form {
  background: #ffffff;
  padding: 0.8rem;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  max-width: 650px;
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.5rem;
}

.domain-form input {
  flex: 1;
  border: none;
  outline: none;
  padding: 0.9rem 1.2rem;
  border-radius: 50px;
  font-size: 1rem;
  color: #333;
}

.domain-form input::placeholder {
  color: #aaa;
}

.domain-form button {
  background: linear-gradient(135deg, #ffc107, #ffcd39);
  border: none;
  color: #141212;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.9rem 1.8rem;
  border-radius: 50px;
  transition: 0.3s ease;
}

.domain-form button:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #ffca2c, #ffe083);
}

.domain-extensions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

.domain-extensions span {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  padding: 0.5rem 1rem;
  font-size: 0.95rem;
  transition: 0.3s;
}

.domain-extensions span:hover {
  background: rgba(255, 255, 255, 0.25);
}

.msg {
  max-width: 650px;
}

.msg .alert {
  border-radius: 33px;
}
