@font-face {
  font-family: "BukraGM-Extra-Light";
  src: url(fonts/Bukra/29LTBukra-Extra-Light.otf);
}
@font-face {
  font-family: "BukraGM-Light";
  src: url(fonts/Bukra/29LT-Bukra-Light.otf);
}
@font-face {
  font-family: "BukraGM";
  src: url(fonts/Bukra/29LTBukraGM.otf);
}
@font-face {
  font-family: "BukraGM-Medium";
  src: url(fonts/Bukra/29LTBukraGM-Medium.otf);
}
@font-face {
  font-family: "BukraGM-Semi-Bold";
  src: url(fonts/Bukra/29LTBukra-Semi-Bold.otf);
}
@font-face {
  font-family: "BukraGM-Bold";
  src: url(fonts/Bukra/29ltbukrabold.otf);
}
:root {
  --navy: #0a1628;
  --navy-mid: #0d1e3a;
  --navy-light: #112244;
  --teal: #00d4c8;
  --teal-dim: #00a89e;
  --gold: #f0c040;
  --white: #ffffff;
  --white-80: rgba(255,255,255,0.8);
  --white-20: rgba(255,255,255,0.12);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "BukraGM", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  background: linear-gradient(to bottom, rgba(46, 177, 190, 0.55) 0%, #ffffff 50%, rgba(46, 177, 190, 0.55) 100%);
}

/* ---- BACKGROUND LAYERS ---- */
.bg-mesh {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse 80% 50% at 20% 80%, rgba(0, 212, 200, 0.1) 0%, transparent 60%), radial-gradient(ellipse 60% 40% at 80% 20%, rgba(0, 90, 180, 0.18) 0%, transparent 55%), linear-gradient(160deg, #0a1628 0%, #0d1e3a 60%, #091520 100%);
}

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image: url("../images/pattern.png");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
}

@keyframes gridDrift {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 48px 48px;
  }
}
.bg-gradient {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.05) 99%);
}

/* Decorative arc */
.arc {
  position: fixed;
  bottom: -40px;
  left: -60px;
  width: 500px;
  height: 300px;
  border: 2px solid rgba(0, 212, 200, 0.18);
  border-radius: 50%;
  z-index: 0;
  animation: arcPulse 5s ease-in-out infinite alternate;
}

@keyframes arcPulse {
  from {
    opacity: 0.5;
    transform: scale(1);
  }
  to {
    opacity: 1;
    transform: scale(1.04);
  }
}
/* ---- CARD ---- */
.card {
  position: relative;
  z-index: 1;
  width: min(1280px, 95vw);
  width: min(80%, 95vw);
  /*    //border: 1px solid rgba(0,212,200,0.22);*/
  padding: 36px 28px 30px;
  animation: cardIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@media (max-width: 600px) {
  .card {
    width: min(100%, 100vw);
    border-radius: 0;
  }
}

@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(32px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
/* ---- HEADER ---- */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  animation: fadeUp 0.6s 0.2s both;
}

.badge {
  width: 100%;
}

.org-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 10px;
  margin-bottom: 35px;
}
@media (max-width: 450px) {
  .org-badges {
    gap: 2px;
  }
}

.bdg-1 {
  width: -moz-fit-content;
  width: fit-content;
  min-width: 220px;
  max-height: 180px;
  height: 180px;
  animation: fadeInUp 1s ease-out 0.3s backwards;
  text-align: center;
  padding: 0.5rem;
  overflow: hidden;
}
.bdg-1 .bdg-back {
  height: 100%;
}
@media (max-width: 500px) {
  .bdg-1 .bdg-back {
    display: flex;
    align-items: center;
  }
}
.bdg-1 img {
  height: 100%;
  width: 100%;
}
@media (max-width: 700px) {
  .bdg-1 {
    width: auto;
    max-width: 150px;
  }
  .bdg-1 img {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 500px) {
  .bdg-1 {
    width: auto;
    max-width: 110px;
    height: auto;
    min-width: auto;
  }
}

.badge-icon {
  font-size: 14px;
}

.logo-block {
  text-align: right;
}

.logo-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 3px;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: flex-end;
}

.logo-star {
  display: inline-block;
  font-size: 18px;
  color: var(--teal);
  animation: spin 8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.logo-sub {
  font-size: 7px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.5px;
  text-align: right;
  margin-top: 2px;
  line-height: 1.3;
  max-width: 160px;
  float: right;
}

/* ---- TITLE ---- */
.title-block {
  text-align: center;
  margin-bottom: 22px;
  animation: fadeUp 0.6s 0.35s both;
  width: 60%;
  margin: 2rem auto;
}
@media (max-width: 950px) {
  .title-block {
    width: 90%;
  }
}

.title-ar {
  font-size: 1.5rem;
  font-weight: 900;
  color: #0F2A43;
  line-height: 1.45;
  direction: rtl;
  margin-bottom: 1rem;
  letter-spacing: 0;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
}

.title-en {
  font-size: 1.3rem;
  font-weight: 600;
  color: #357480;
  letter-spacing: 0.5px;
  line-height: 1.4;
  text-transform: uppercase;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
}

/* ---- CAMPAIGN BADGE ---- */
.campaign {
  text-align: center;
  margin-bottom: 22px;
  animation: fadeUp 0.6s 0.5s both;
}

.campaign-inner {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.campaign-ar {
  font-family: "Tajawal", sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.5px;
  direction: rtl;
}

.campaign-ar span {
  color: var(--teal);
}

.campaign-en {
  font-size: 11px;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}

/* ---- CTA BUTTON ---- */
.cta-btn {
  box-shadow: 0 4px 24px rgba(0, 212, 200, 0.15);
  background: linear-gradient(45deg, rgba(131, 209, 220, 0.15), rgba(131, 209, 220, 0.3));
  backdrop-filter: blur(20px);
  border: 2px solid rgba(52, 116, 128, 0.8);
  padding: 15px 15px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 30px;
  font-size: 14px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  width: 60%;
  color: #000;
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media (max-width: 950px) {
  .cta-btn {
    width: 90%;
  }
}

.cta-btn::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(131, 209, 220, 0.3), transparent);
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  60% {
    left: 150%;
  }
  100% {
    left: 150%;
  }
}
.cta-text-ar {
  font-family: "BukraGm";
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.8);
  direction: rtl;
}

.cta-text-en {
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.8);
  letter-spacing: 0.3px;
  font-family: "BukraGm";
}

.cta-arrow {
  font-size: 22px;
  color: var(--navy);
  animation: arrowBounce 1.5s ease-in-out infinite;
}

@keyframes arrowBounce {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(4px);
  }
}
/* ---- LANGUAGE GRID ---- */
.lang-grid {
  display: flex;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.5rem 1.5rem;
  width: 60%;
  flex-wrap: wrap;
  justify-content: center;
  margin: 2rem auto;
}
@media (max-width: 950px) {
  .lang-grid {
    width: 90%;
  }
}

.lang-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  animation: fadeUp 0.5s both;
  transition: transform 0.2s;
  width: 25%;
}
@media (max-width: 750px) {
  .lang-item {
    width: 25%;
  }
}

.lang-item:hover {
  transform: translateY(-4px);
}

.lang-item:hover .flag-ring {
  box-shadow: 0 0 0 3px var(--teal), 0 6px 20px rgba(52, 116, 128, 0.8);
  border: 2px solid rgba(52, 116, 128, 0.8);
}

.lang-item:nth-child(1) {
  animation-delay: 0.7s;
}

.lang-item:nth-child(2) {
  animation-delay: 0.78s;
}

.lang-item:nth-child(3) {
  animation-delay: 0.86s;
}

.lang-item:nth-child(4) {
  animation-delay: 0.94s;
}

.lang-item:nth-child(5) {
  animation-delay: 1.02s;
}

.lang-item:nth-child(6) {
  animation-delay: 1.1s;
}

.lang-item:nth-child(7) {
  animation-delay: 1.18s;
}

.lang-item:nth-child(8) {
  animation-delay: 1.26s;
}

.lang-item:nth-child(9) {
  animation-delay: 1.34s;
}

.flag-ring {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.15);
  transition: box-shadow 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.flag-ring img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* SVG flag fallbacks */
.flag-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.lang-label {
  font-size: 12px;
  font-weight: 600;
  color: #0F2A43;
  letter-spacing: 0.3px;
  text-align: center;
}

/* ---- FOOTER ---- */
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  animation: fadeUp 0.6s 1.4s both;
}

.social {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.5px;
}

.social-icon {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.website {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 4px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Pulse dots decorative */
.pulse-dot {
  position: absolute;
  border-radius: 50%;
  animation: pulseRing 3s ease-out infinite;
}

.pulse-dot-1 {
  width: 8px;
  height: 8px;
  background: var(--teal);
  top: 20px;
  right: 20px;
  animation-delay: 0s;
}

.pulse-dot-2 {
  width: 6px;
  height: 6px;
  background: var(--gold);
  bottom: 60px;
  left: 16px;
  animation-delay: 1.5s;
}

@keyframes pulseRing {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 212, 200, 0.5);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(0, 212, 200, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 212, 200, 0);
  }
}/*# sourceMappingURL=home.css.map */