:root {
  /* Brand colors */
  --primary: #1E90FF;   /* Light Blue */
  --primary-dark: #1565c0;
  --text-dark: #333;
  --text-light: #fff;
  --bg-light: #f9f9f9;
  --bg-white: #fff;
  --bg-footer: #0a0a23;

  /* Accent colors */
  --bg-card: #f1f1f1;
  --bg-dropdown: #f0f6ff;
  --shadow: rgba(0,0,0,0.1);
}


* { margin: 0; padding: 0; box-sizing: border-box; }
    body { font-family: 'DM Sans', sans-serif; background: #f9f9f9; color: #333; line-height: 1.6; padding-top: 70px; }
    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; display: block; }

    /* Header */
    header {
      background: #fff;
      padding: 1rem 5%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    header h1 { color: #1E90FF; font-weight: 700; font-size: 1.5rem; }
    nav { display: flex; align-items: center; }
    nav ul { list-style: none; display: flex; gap: 20px; }
    nav ul li { position: relative; }
    nav a { color: #333; font-weight: 500; padding: 8px 12px; transition: color 0.3s; }
    nav a:hover, nav a:focus { color: #1E90FF; outline: none; }

    /* Dropdown */
    .dropdown-menu {
      position: absolute; top: 100%; left: 0;
      background: #f0f6ff;
      min-width: 200px;
      display: none; flex-direction: column;
      border-radius: 5px; box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    .dropdown:hover .dropdown-menu { display: flex; }
    .dropdown-menu a { padding: 10px 15px; display: block; color: #333; }
    .dropdown-menu a:hover { background: #1E90FF; color: #fff; }

    /* Mobile Menu */
    .menu-toggle, .close-menu {
      display: none; font-size: 1.8rem; color: #1E90FF; cursor: pointer;
    }
    .close-menu {
      position: absolute; top: 15px; right: 20px; font-size: 2rem;
    }
    @media (max-width: 900px) {
      nav {
        position: fixed; top: 0; right: -100%; width: 250px; height: 100%;
        background: #fff; flex-direction: column; align-items: flex-start;
        padding-top: 80px; transition: right 0.3s ease-in-out;
        box-shadow: -2px 0 8px rgba(0,0,0,0.1);
      }
      nav ul { flex-direction: column; gap: 15px; width: 100%; }
      nav ul li a { display: block; width: 100%; padding: 12px 20px; }
      .menu-toggle, .close-menu { display: block; }
      nav.active { right: 0; }
      .dropdown:hover .dropdown-menu { display: none; }
      .dropdown.open .dropdown-menu { display: flex; position: static; width: 100%; background: #f0f6ff; }
    }

    /* Hero */
    .hero { display: flex; align-items: center; justify-content: space-between; padding: 5rem 5%; background: #fff; flex-wrap: wrap; }
    .hero-text { flex: 1; padding-right: 2rem; min-width: 280px; }
    .hero-text h2 { font-size: 2.8rem; margin-bottom: 1rem; color: #1E90FF; }
    .hero-text p { font-size: 1.2rem; margin-bottom: 2rem; }
    .btn-get { background: #1E90FF; color: #fff; padding: 0.8rem 1.6rem; border-radius: 5px; font-weight: 600; transition: 0.3s; display: inline-block; }
    .btn-get:hover, .btn-get:focus { background: #1565c0; outline: none; }
    .hero-image { flex: 1; text-align: center; min-width: 280px; }
    .hero-image img { border-radius: 10px; }

    /* Sections (fade in animation for lazy loading) */
    section { opacity: 0; transform: translateY(30px); transition: all 0.6s ease-out; }
    section.visible { opacity: 1; transform: translateY(0); }

    /* Footer */
    footer { background: #0a0a23; color: white; padding: 3rem 5%; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; }
    footer h2 { color: #1E90FF; }
    footer ul { list-style: none; margin-top: 1rem; }
    footer ul li { margin: 0.5rem 0; }
    footer ul li a { color: #fff; transition: color 0.3s; }
    footer ul li a:hover { color: #1E90FF; }
    footer p { margin-top: 1rem; font-size: 0.9rem; color: #bbb; }

/*Features*/
.features{display: flex; flex-direction: column;gap: 2rem;justify-content: center; text-align: center;}
.features-cnt {
  padding: 4rem 5%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  justify-items: center;
}

.card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 320px;
  border-radius: 10px;
  line-height: 1.6;
  transition: all 0.64s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
  border: 1px var(--primary) solid;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 32px;
  border-radius: 24px;
  background: transparent;
  color: var(--text-dark);
  z-index: 1;
  transition: all 0.64s cubic-bezier(0.23, 1, 0.32, 1);
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--primary);
  border-radius: inherit;
  height: 100%;
  width: 100%;
  opacity: 0;
  transform: skew(-24deg);
  clip-path: circle(0% at 50% 50%);
  transition: all 0.64s cubic-bezier(0.23, 1, 0.32, 1);
}

.content .heading {
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.3;
  z-index: 1;
}

.content .para {
  z-index: 1;
  opacity: 0.85;
  font-size: 1rem;
}

.card:hover::before {
  opacity: 1;
  transform: skew(0deg);
  clip-path: circle(140.9% at 0 0);
}

.card:hover .content {
  color: var(--text-light);
}


.pricing{display: flex; flex-direction: column;gap: 2rem;justify-content: center; text-align: center;}
.pricing-cnt {
  padding: 4rem 5%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  justify-content: center;
}

/* From Uiverse.io by Yaya12085 */ 
.pack_card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 0.5rem;
  border: 2px solid var(--primary);
  padding: 1.5rem 1rem 1rem 1rem;
  margin-top: 1rem;
  background-color: var(--bg-white);
  max-width: 300px;
}

.banner {
  position: absolute;
  left: 0px;
  right: 0px;
  top: -2rem;
  display: flex;
  justify-content: center;
}

.banner_tag {
  display: flex;
  height: 1.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background-color: var(--primary);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
}

.pack_name {
  margin-bottom: 0.5rem;
  text-align: center;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
  color: var(--text-dark);
}

.description {
  margin: 0 auto 2rem auto;
  text-align: center;
  color: var(--primary-dark);
}

.lists > :not([hidden]) ~ :not([hidden]) {
  margin-top: 0.5rem;
}

.list {
  display: flex;
  gap: 0.5rem;
}

.list svg {
  height: 1.5rem;
  width: 1.5rem;
  flex-shrink: 0;
  color: var(--primary-dark);
}

.list span {
  color: var(--primary);
}

.bottom {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.price_container {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.25rem;
}

.devise {
  align-self: flex-start;
  color: rgb( 75 85 99 );
}

.price {
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 700;
  color: rgb(31 41 55 );
}

.date {
  color: rgb(107 114 128 );
}

.btn {
  display: block;
  border-radius: 0.5rem;
  background-color: var(--primary);
  padding: 0.75rem 2rem;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
  color: var(--text-light);
  outline: 2px solid transparent;
  outline-offset: 2px;
  transition: all .1s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover {
  background-color: var(--primary-dark);
}

.btn:active {
  background-color: var(--primary-dark);
}


/* From Uiverse.io by gharsh11032000 */ 
.testimonial-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 320px;
  border-radius: 24px;
  line-height: 1.6;
  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.testimonial-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 36px;
  border-radius: 22px;
  color: #ffffff;
  overflow: hidden;
  background: var(--primary);
  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.testimonial-content::before {
  position: absolute;
  content: "";
  top: -4%;
  left: 50%;
  width: 90%;
  height: 90%;
  transform: translate(-50%);
  background: #ced8ff;
  z-index: -1;
  transform-origin: bottom;

  border-radius: inherit;
  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.testimonial-content::after {
  position: absolute;
  content: "";
  top: -8%;
  left: 50%;
  width: 80%;
  height: 80%;
  transform: translate(-50%);
  background: #e7ecff;
  z-index: -2;
  transform-origin: bottom;
  border-radius: inherit;
  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.testimonial-content svg {
  width: 48px;
  height: 48px;
}

.testimonial-content .para {
  z-index: 1;
  opacity: 1;
  font-size: 18px;
  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.testimonial-content .link {
  z-index: 1;
  color: #fea000;
  text-decoration: none;
  font-family: inherit;
  font-size: 16px;
  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.testimonial-content .testimonial-link:hover {
  text-decoration: underline;
}

.testimonial-card:hover {
  transform: translate(0px, -16px);
}

.testimonial-card:hover .testimonial-content::before {
  rotate: -8deg;
  top: 0;
  width: 100%;
  height: 100%;
}

.testimonial-card:hover .testimonial-content::after {
  rotate: 8deg;
  top: 0;
  width: 100%;
  height: 100%;
}




/* From Uiverse.io by andrew-demchenk0 */ 
.cube-loader {
  position: relative;
/* u can choose any size */
  min-width: 280px;
  min-height: 280px;
  transform-style: preserve-3d;
  transform: rotateX(-30deg);
  animation: animate 4s linear infinite;
}

@keyframes animate {
  0% {
    transform: rotateX(-30deg) rotateY(0);
  }

  100% {
    transform: rotateX(-30deg) rotateY(360deg);
  }
}

.cube-loader .cube-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  /* top: 0;
  left: 0; */
  transform-style: preserve-3d;
}

.cube-loader .cube-wrapper .cube-span {
  position: absolute;
  width: 100%;
  height: 100%;
  /* top: 0;
  left: 0; */
                                     /* width 75px / 2 = 37.5px */
  transform: rotateY(calc(90deg * var(--i))) translateZ(37.5px);
  background: linear-gradient(
    to bottom,
    hsl(330, 3.13%, 25.1%) 0%,
    hsl(177.27, 21.71%, 32.06%) 5.5%,
    hsl(176.67, 34.1%, 36.88%) 12.1%,
    hsl(176.61, 42.28%, 40.7%) 19.6%,
    hsl(176.63, 48.32%, 43.88%) 27.9%,
    hsl(176.66, 53.07%, 46.58%) 36.6%,
    hsl(176.7, 56.94%, 48.91%) 45.6%,
    hsl(176.74, 62.39%, 50.91%) 54.6%,
    hsl(176.77, 69.86%, 52.62%) 63.4%,
    hsl(176.8, 76.78%, 54.08%) 71.7%,
    hsl(176.83, 83.02%, 55.29%) 79.4%,
    hsl(176.85, 88.44%, 56.28%) 86.2%,
    hsl(176.86, 92.9%, 57.04%) 91.9%,
    hsl(176.88, 96.24%, 57.59%) 96.3%,
    hsl(176.88, 98.34%, 57.93%) 99%,
    hsl(176.89, 99.07%, 58.04%) 100%
  );
}

.cube-top {
  position: absolute;
  min-width: 75px;
  height: 75px;
  background: hsl(330, 3.13%, 25.1%) 0%;
                      /* width 75px / 2 = 37.5px */
  transform: rotateX(90deg) translateZ(37.5px);
  transform-style: preserve-3d;
}

.cube-top::before {
  content: '';
  position: absolute;
/* u can choose any size */
  width: 75px;
  height: 75px;
  background: hsl(176.61, 42.28%, 40.7%) 19.6%;
  transform: translateZ(-90px);
  filter: blur(10px);
  box-shadow: 0 0 10px #323232,
              0 0 20px hsl(176.61, 42.28%, 40.7%) 19.6%,
              0 0 30px #323232,
              0 0 40px hsl(176.61, 42.28%, 40.7%) 19.6%;
}
