/* ==============================
   Base / Reset / Tokens
============================== */
:root {
  --bg-grad-start: #89cff0;
  --bg-grad-mid: #a64dff;
  --bg-grad-end: #9e3ffd8f;

  --text: #1b1b1b91;
  --muted: #00000085;

  --brand-1: #89cff0;
  --brand-2: #a64dff;
  --brand-3: #9e3ffd8f;

  --card-bg: rgba(0, 0, 0, .08);
  --glass: rgba(255, 255, 255, .18);

  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;

  --container-pad: clamp(16px, 4vw, 48px);
  --section-gap: clamp(24px, 4vw, 48px);
  --grid-gap: clamp(14px, 2.5vw, 24px);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  background-image: linear-gradient(to bottom, var(--bg-grad-start), var(--bg-grad-mid), var(--bg-grad-end));
  text-transform: capitalize;
  line-height: 1.55;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* Improve focus states for accessibility */
:where(a, button, [role="button"], .button):focus-visible {
  outline: 3px solid var(--brand-1);
  outline-offset: 2px;
  border-radius: 8px;
}

/* Reduce heavy animations for those who prefer less motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* ==============================
   Nav
============================== */

nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: 12px;
  background: rgba(255, 255, 255, .15);
  backdrop-filter: saturate(140%) blur(6px);
  position: sticky;
  top: 0;
  z-index: 50;
}

.top-nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px var(--container-pad);
  background: rgba(255, 255, 255, 0);
  font-size: 14px;
}

.top-nav a {
  color: var(--muted);
  text-decoration: none;
}

.Rig {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.navbar-custom {
  padding: 10px var(--container-pad) 16px;
}

.logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-image: url("imges/elite_services.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: var(--shadow-1);
  border: 2px solid var(--brand-1);
  opacity: .9;
}

.navbar-nav .nav-link {
  font-size: 16px;
  color: var(--muted) !important;
  display: flex;
  align-items: center;
  gap: 6px;
}

.navbar-nav .nav-link:hover {
  color: #000 !important;
}

.cart-btn {
  position: relative;
  display: inline-block;
}

.cart-btn span {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--brand-1);
  color: #000;
  font-size: 12px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 50%;
}

i {
  color: rgba(46, 5, 46, .68);
}

/* ==============================
   Home / Hero
============================== */
.home {
  display: grid;
  align-items: center;
  justify-content: center;
  min-height: clamp(52vh, 70vh, 82vh);
  padding: clamp(32px, 6vw, 72px) var(--container-pad);
  text-align: center;
}

.contant h1 {
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 800;
  letter-spacing: .3px;
}

.contant h2 {
  font-size: clamp(18px, 2.8vw, 24px);
  margin-top: 10px;
  color: #000000a6;
}

.contant h3 {
  font-size: clamp(14px, 2.2vw, 18px);
  margin-top: 6px;
  color: #000000a1;
}

/* ==============================
   Utility line
============================== */
.line {
  border: none;
  height: 2px;
  width: min(92%, 1200px);
  margin: var(--section-gap) auto;
  background: linear-gradient(90deg, var(--brand-1), var(--brand-2), var(--brand-3));
  box-shadow: var(--shadow-1);
  border-radius: 999px;
}

/* ==============================
   Sections: Shared
============================== */
section>div>h1 {
  text-align: center;
  font-size: clamp(22px, 4vw, 36px);
  margin-bottom: 16px;
}

section {
  padding-inline: var(--container-pad);
}

/* ==============================
   Services
============================== */
.our-sev {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.our-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--grid-gap);
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
}

.cards-serv {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 240px;
  padding: 14px 16px;
  border: 1px solid #89cff0ca;
  border-radius: var(--radius-lg);
  background: var(--glass);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(6px);
  transition: transform .2s ease, box-shadow .2s ease;
}

.cards-serv:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-1);
}

.cards-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-image: url("imges/260px-Quests.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.cards-data {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 6px;
}

.cards-data h2 {
  font-size: 15px;
  font-weight: 700;
}

.cards-data a {
  display: inline;
  align-items: center;
  justify-content: center;
  width: 10px;
  height: 36px;
  border-radius: 10px;
}

/* slider */
.Community-Reviews {
  padding: 40px 20px;
}

.card-Reviews {
  border-radius: 12px;
  padding: 20px;
  margin: 10px;
}

/* service-specific images */
.img-skills {
  background-image: url("imges/310px-Max_cape_detail.webp");
}

.img-minig {
  background-image: url("imges/240px-Minigames.webp");
}

.img-pvm {
  background-image: url("imges/162px-Blood_Moon.webp");
}

.img-achv {
  background-image: url("imges/Achievement_Diaries.png");
}

.img-raids {
  background-image: url("imges/Olmlet_detail_1.png");
}

.img-cas {
  background-image: url("imges/300px-Combat_achievements_detail.webp");
}

.img-capes {
  background-image: url("imges/clipart2474862.png");
}

.img-dev{
  background-image:url("imges/pngegg (3).png") ;
}

.img-gfx{
  background-image: url("imges/pngegg (2).png");
}
.advice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 6vw, 40px);
  border: 1px solid #89cff0ca;
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-lg);
  padding: clamp(14px, 3vw, 26px);
  text-align: center;
  background: rgba(255, 255, 255, .25);
  max-width: 1100px;
  margin-inline: auto;
}

.advice a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 10px;
  background-color: #89cff0;
  color: #1b1b1b;
  font-weight: 600;
  border: 1px solid #a64dff80;
}

.advice a:hover {
  background-color: #a64dff;
  color: white;
  border-color: #89cff0a4;
}

/* ==============================
   About / Counters
============================== */
.sec-about {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-block: var(--section-gap);
}

.dad-dad {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--grid-gap);
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;

}

.card-dad {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 76px;
  padding: 10px 16px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-1);
  background: rgba(255, 255, 255, .3);
}

.card-dad h4 {
  font-size: 18px;
}

.sythe {
  width: 100px;
  height: 50px;
  background-image: url("imges/newlogo1.webp");
  background-size: contain;
  background-repeat: no-repeat;

}

.complete {
  width: 50px;
  height: 50px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("imges/completed.png");
}

.customer {
  width: 50px;
  height: 50px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("imges/—Pngtree—vector leader of group icon_4165511.png");
  /* fix spaced path */
}

.suport {
  width: 50px;
  height: 50px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("imges/Daco_3150320.png");
}

.choose-us {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
}



/* ==============================
   Community Reviews
============================== */
.Community-Reviews {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-block: var(--section-gap);
}

.dad-rev {
  display: grid;
  gap: var(--grid-gap);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
}

.card-Reviews {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: space-between;
  min-height: 190px;
  padding: 14px;
  border: 1px solid #89cff0ca;
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .35);
}

.card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
}

.card-head h6 {
  font-weight: 800;
  font-size: 14px;
}

.card-contat {
  font-size: 13px;
  text-align: left;
  color: #1b1b1be0;
}

.card-imgs {
  width: 92px;
  height: auto;
}

.Community-Reviews a,
.dis {
  color: #0e2d9da8;
  text-decoration: none;
}

/* ==============================
   FAQ (Bootstrap accordion tune)
============================== */
.faq {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 4vw, 40px);
  padding-block: var(--section-gap);
}

.accordion-flush {
  width: min(100%, 900px);
  margin-inline: auto;
}

.accordion-button {
  background-color: #a64dff !important;
  color: #89cff0;
  box-shadow:
    0 0 10px #89cff0,
    0 0 20px #a64dff,
    0 0 30px #9e3ffd8f !important;

}


.accordion-body {
  background-color: #89cff0 !important;
}

/* ==============================
   Payment Methods
============================== */
.Payment {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding-block: var(--section-gap);
}

.payment-logo {
  display: grid;
  gap: var(--grid-gap);
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
}

.payment-logo div {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 84px;
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.104);
  box-shadow: var(--shadow-soft);
}

.payment-logo div img {
  width: min(100%, 80px);
  height: auto;
}


.more {
  display: flex;
  align-items: center;
  justify-content: center;
}

.more span , .collapse a , .collapse i {
  color: #4a43c0;
}

/* ==============================
   Footer
============================== */
footer {
  background: rgba(255, 255, 255, 0.104);
  border-radius: 14px;
  padding: clamp(20px, 4vw, 42px) var(--bs-gutter-x, 1rem);
}

footer a {
  color: #00000066;
  text-decoration: none;
}

footer a:hover {
  color: #00000091;
  text-decoration: none;
}

footer h2 {
  font-size: 20px;
  margin-bottom: .5rem;
}

.foot-p1,
.foot-p2,
.foot-p3,
.foot-p4 {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.foot-p1 {
  align-items: center;
  text-align: center;
}

.foot-p4 .imgss {
  width: 120px;
  height: 60px;
  background-image: url("imges/sythe.png");
  background-size: contain;
  background-repeat: no-repeat;
}

/* phones text in mid*/
@media (max-width: 575.98px) {
  footer {
    text-align: center;
  }

  .foot-p2,
  .foot-p3,
  .foot-p4 {
    align-items: center;
  }
}

/* ==============================
   CTA Button (existing effect)
============================== */
.button {
  position: relative;
  padding: 10px 22px;
  border-radius: 10px;
  border: none;
  color: #fff;
  cursor: pointer;
  background-color: #7d2ae8;
  transition: transform 0.2s ease;
  font-weight: 700;
}

.button:active {
  transform: scale(0.96);
}

.button:before,
.button:after {
  position: absolute;
  content: "";
  width: 150%;
  left: 50%;
  height: 100%;
  transform: translateX(-50%);
  z-index: -1;
  background-repeat: no-repeat;
}

.button:hover:before {
  top: -70%;
  background-image:
    radial-gradient(circle, #7d2ae8 20%, transparent 20%),
    radial-gradient(circle, transparent 20%, #7d2ae8 20%, transparent 30%),
    radial-gradient(circle, #7d2ae8 20%, transparent 20%),
    radial-gradient(circle, #7d2ae8 20%, transparent 20%),
    radial-gradient(circle, transparent 10%, #7d2ae8 15%, transparent 20%),
    radial-gradient(circle, #7d2ae8 20%, transparent 20%),
    radial-gradient(circle, #7d2ae8 20%, transparent 20%),
    radial-gradient(circle, #7d2ae8 20%, transparent 20%),
    radial-gradient(circle, #7d2ae8 20%, transparent 20%);
  background-size: 10% 10%, 20% 20%, 15% 15%, 20% 20%, 18% 18%, 10% 10%, 15% 15%, 10% 10%, 18% 18%;
  background-position: 50% 120%;
  animation: greentopBubbles 0.6s ease;
}

@keyframes greentopBubbles {
  0% {
    background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%, 40% 90%, 55% 90%, 70% 90%;
  }

  50% {
    background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%, 50% 50%, 65% 20%, 90% 30%;
  }

  100% {
    background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%, 50% 40%, 65% 10%, 90% 20%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}

.button:hover::after {
  bottom: -70%;
  background-image:
    radial-gradient(circle, #7d2ae8 20%, transparent 20%),
    radial-gradient(circle, #7d2ae8 20%, transparent 20%),
    radial-gradient(circle, transparent 10%, #7d2ae8 15%, transparent 20%),
    radial-gradient(circle, #7d2ae8 20%, transparent 20%),
    radial-gradient(circle, #7d2ae8 20%, transparent 20%),
    radial-gradient(circle, #7d2ae8 20%, transparent 20%),
    radial-gradient(circle, #7d2ae8 20%, transparent 20%);
  background-size: 15% 15%, 20% 20%, 18% 18%, 20% 20%, 15% 15%, 20% 20%, 18% 18%;
  background-position: 50% 0%;
  animation: greenbottomBubbles 0.6s ease;
}

@keyframes greenbottomBubbles {
  0% {
    background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%, 70% -10%, 70% 0%;
  }

  50% {
    background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%, 105% 0%;
  }

  100% {
    background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%, 110% 10%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}

/* ==============================
   Responsive tweaks
============================== */
/* ≥1200px (large screens) – gentle max width alignment */
@media (min-width:1200px) {

  nav,
  footer {
    width: min(1200px, 95%);
    margin-inline: auto;
  }
}

/* ≤992px */
@media (max-width: 992px) {
  .down-nav {
    justify-content: center;
  }
}

/* ≤768px */
@media (max-width: 768px) {
  .top-nav {
    font-size: 13px;
  }

  .p2 a,
  .p3 a {
    font-size: 15px;
  }

  .advice {
    flex-direction: column;
  }
}

/* ≤576px */
@media (max-width: 576px) {
  .logo {
    width: 46px;
    height: 46px;
  }

  .card-Reviews {
    min-height: unset;
  }

  .payment-logo div {
    min-height: 64px;
  }

}

