:root {
  --bg: #f7f7f7;
  --accent: #ffab3d;
  --dark-accent: #ffa024;
  --muted: #dadada;
  --dark: #131514;
  --circle-size-large: 12vw;
  --circle-size-small: 10vw;
}

/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  background: var(--bg);
  color: var(--dark);
  font-family: "Avenir Arabic", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  overflow-x: hidden;
}

/* Background decorative blurred circles */
.page-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.page-bg::before,
.page-bg::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.6;
}

.page-bg::before {
  width: 500px;
  height: 500px;
  left: -120px;
  bottom: -10%;
  background: radial-gradient(50% 50% at 50% 50%, #fecc8b 0%, #f7f7f7 100%);
  filter: blur(5px);
}

.page-bg::after {
  width: 420px;
  height: 420px;
  right: -90px;
  bottom: 35%;
  background: radial-gradient(50% 50% at 50% 50%, #fecc8b 0%, #f7f7f7 100%);
  filter: blur(5px);
}

/* subtle additional circles */
.page-bg .dot {
  position: absolute;
  border-radius: 50%;
}

.page-bg .dot.a {
  width: 140px;
  height: 140px;
  left: -3%;
  top: 12%;
  background-color: #ebebeb;
}

.page-bg .dot.b {
  width: 80px;
  height: 80px;
  right: 40%;
  top: 6%;
  background-color: #fdedd8;
}

.page-bg .dot.c {
  width: 220px;
  height: 220px;
  right: 10%;
  top: -10%;
  background-color: #fdedd8;
}

.page-bg .dot.d {
  width: 60px;
  height: 60px;
  right: 16%;
  bottom: 10%;
  background-color: #ebebeb;
}

/* Container */
.wrap {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  width: 100%;
  text-align: center;
  padding: 80px 30px;
  background: transparent;
}

h1 {
  font-size: 42px;
  margin-bottom: 24px;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: 0.5px;
}

p.lead {
  color: var(--dark);
  font-size: 22px;
  max-width: 680px;
  line-height: 1.7;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 12px 32px;
  border-radius: 10px;
  background: var(--accent);
  color: #111;
  font-weight: 500;
  font-size: 22px;
  height: 52px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(246, 163, 60, 0.14);
  transition: all 0.18s ease;
  outline: none;
}

.btn:active {
  transform: translateY(1px);
}

.btn:hover,
.btn:focus {
  background: var(--dark-accent);
}

/* central logo */
.hero-middle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 36px;
  position: relative;
}

.logo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background-color: #dadada;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Floating circles area */
.floating-area {
  /* position: relative;
  margin-top: 36px;
  margin-bottom: 36px; */
  position: fixed;
  width: 80%;
  height: 80%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* circle common style */
.circle {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  background: #fff;
  border: 6px solid rgba(0, 0, 0, 0.06);
}

.circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ring style variant */
.circle.orange {
  border-color: var(--accent);
}

.circle.gray {
  border-color: var(--muted);
}

/* Animation: gentle up-down float */
@keyframes floatY {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-18px);
  }

  100% {
    transform: translateY(0);
  }
}

/* Animation: orbit - rotate container while image offsets to create circular motion */
@keyframes orbitRotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* specific positions & sizes */
/* top-left large */
.c1 {
  width: var(--circle-size-large);
  height: var(--circle-size-large);
  left: 12%;
  top: 8%;
  animation: floatY 6s ease-in-out infinite;
}

/* top-right medium (ring) */
.c2 {
  width: var(--circle-size-large);
  height: var(--circle-size-large);
  right: 12%;
  top: 8%;
  animation: floatY 5.2s ease-in-out infinite;
}

/* bottom-right large */
.c3 {
  width: var(--circle-size-small);
  height: var(--circle-size-small);
  right: 20%;
  bottom: 0;
  animation: floatY 6.6s ease-in-out infinite;
}

/* bottom-left small ring */
.c4 {
  width: var(--circle-size-small);
  height: var(--circle-size-small);
  left: 20%;
  bottom: 0;
  animation: floatY 5.6s ease-in-out infinite;
}

/* small orbiting circle near middle-left */
.orbit-wrap {
  position: absolute;
  left: 38%;
  top: 18%;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  animation: orbitRotate 18s linear infinite;
  opacity: 0.98;
}

.orbit-wrap .orbit-item {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) translateY(-60px);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid var(--accent);
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* make some circles slightly larger on hover (subtle) */
.circle:hover {
  transform: scale(1.02);
}

/* responsive */
@media (max-width: 900px) {
  :root {
    --circle-size-large: 20vw;
    --circle-size-small: 16vw;
  }

  .dot {
    display: none;
  }

  .logo {
    width: 112px;
    height: 112px;
  }

  h1 {
    font-size: 30px;
  }

  .c1 {
    left: 4%;
    top: 4%;
  }

  .c2 {
    right: 6%;
    top: 6%;
  }

  .c3 {
    right: 6%;
    bottom: 3%;
  }

  .c4 {
    left: 6%;
    bottom: 3%;
  }
}

@media (max-width: 600px) {
  .page-bg::after {
    bottom: 70%;
  }

  body {
    padding: 20px;
  }

  .wrap {
    padding: 40px 12px;
  }

  .floating-area {
    margin-top: 10px;
  }

  h1 {
    font-size: 22px;
  }

  p.lead {
    font-size: 14px;
  }

  .btn {
    font-size: 16px;
    padding: 10px 24px;
    height: 44px;
    gap: 8px;
  }

  .c1,
  .c2,
  .c3,
  .c4 {
    display: none;
  }

  /* hide large decorations on small screens */
  .orbit-wrap {
    left: 50%;
    top: 6%;
    transform: translateX(-50%);
  }
}

.social-icons__wrapper {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin: 0;
  list-style: none;
}

.social-icons__icon-wrapper a {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--muted);
  color: var(--dark);
  transition: background-color 0.3s ease;
}

.social-icons__icon-wrapper a:hover {
  background-color: var(--dark);
  color: var(--accent);
}

.social-icons__icon-label {
  display: none;
}

.social-icons__icon {
  width: 24px;
  height: 24px;
}