    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }

    body {
      overflow-x: hidden;
    }

    a {
      text-decoration: none;
    }

    .navbar {
      background: #fff;
      backdrop-filter: blur(10px);
      padding: 10px 0;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }

    .navbar-brand {
      font-size: 32px;
      font-weight: 800;
      letter-spacing: 2px;
      background: linear-gradient(90deg, #00c6ff, #7b2ff7);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    
    .navbar-brand img{
        max-width: 200px;
    }

    .nav-link {
      color: #010a3b !important;
      margin-left: 20px;
      font-weight: 500;
      transition: 0.3s;
    }

    .nav-link:hover {
      color: #0057fc !important;
    }

    .hero {
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
    }

    .hero h1 {
      font-size: 42px;
      font-weight: 800;
      line-height: 1.2;
    }

    .gradient-text {
      background: linear-gradient(90deg, #010a3b, #0057fc);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .hero p {
      margin: 25px 0;
      font-size: 17px;
      line-height: 1.8;
    }

    .btn-custom {
      padding: 14px 34px;
      border-radius: 50px;
      font-weight: 600;
      border: none;
      background: linear-gradient(90deg, #010a3b, #0057fc);
      color: #fff;
      transition: 0.4s;
      box-shadow: 0 10px 30px rgba(123, 47, 247, 0.4);
    }

    .btn-custom:hover {
      transform: translateY(-3px);
      color: #fff;
    }

    .hero-image {
      position: relative;
    }

    .hero-image img {
      width: 100%;
      animation: float 5s ease-in-out infinite;
    }

    @keyframes float {
      0%, 100% {
        transform: translateY(0px);
      }
      50% {
        transform: translateY(-15px);
      }
    }

    .section-title {
      text-align: center;
      margin-bottom: 60px;
    }

    .section-title h2 {
      font-size: 48px;
      font-weight: 700;
    }
    
    .custom-br{
        border-radius: 30px 100px;
    }

    .section-title p {
      margin-top: 15px;
    }


    .service-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid #010a3b47;
      border-radius: 25px;
      padding: 40px 30px;
      transition: 0.4s;
      height: 100%;
      backdrop-filter: blur(10px);
    }

    .service-card:hover {
      transform: translateY(-10px);
      border-color: #00c6ff;
      box-shadow: 0 20px 50px rgba(0,198,255,0.15);
    }

    .service-card i {
      font-size: 50px;
      margin-bottom: 20px;
      display: inline-block;
      background: linear-gradient(90deg, #010a3b, #0057fc);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .service-card h4 {
      font-size: 24px;
      margin-bottom: 15px;
      font-weight: 600;
    }

    .service-card p {
      line-height: 1.8;
    }

    .about {
      padding: 100px 0;
    }

    .about-box {
      background: rgba(255,255,255,0.05);
      border-radius: 30px;
      padding: 60px;
      border: 1px solid rgba(255,255,255,0.08);
    }

    .about h2 {
      font-size: 50px;
      font-weight: 700;
      margin-bottom: 25px;
    }

    .about p {
      color: #c9c9c9;
      line-height: 1.9;
      margin-bottom: 20px;
    }

    .stats {
      margin-top: 40px;
    }

    .stat-item h3 {
      font-size: 42px;
      font-weight: 700;
      color: #00c6ff;
    }

    .stat-item p {
      margin: 0;
      color: #bfbfbf;
    }

    .portfolio-card {
      position: relative;
      overflow: hidden;
      border-radius: 25px;
    }

    .portfolio-card img {
      width: 100%;
      transition: 0.4s;
    }

    .portfolio-card:hover img {
      transform: scale(1.1);
    }

    .portfolio-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
      display: flex;
      align-items: end;
      padding: 25px;
    }

    .portfolio-overlay h5 {
      font-size: 24px;
      font-weight: 600;
      color: #0057fc;
    }
    
    .portfolio-overlay p{
        color: #fff;
    }


    .contact-box {
      background: rgba(255,255,255,0.05);
      padding: 0 60px;
      border-radius: 30px;
      border: 1px solid rgba(255,255,255,0.08);
    }

    .form-control {
      background: rgba(255,255,255,0.08);
      border: none;
      color: #fff;
      padding: 15px 20px;
      border-radius: 15px;
      margin-bottom: 20px;
      border: 1px solid #010a3b47;
    }

    .form-control::placeholder {
      color: #c9c9c9;
    }

    .form-control:focus {
      background: rgba(255,255,255,0.08);
      color: #fff;
      box-shadow: none;
      border: 1px solid #00c6ff;
    }

    footer {
      background: #e5e5e5;
      border-top: 1px solid rgba(255,255,255,0.08);
      color: #b5b5b5;
    }

    .footer-links li a {
      color: #212529;
      transition: 0.3s;
      font-size: 15px;
    }

    .footer-links li a:hover {
      color: #0057fc !important;
      padding-left: 5px;
    }

    .social-icons a {
      width: 45px;
      height: 45px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: rgba(255,255,255,0.08);
      color: #fff;
      margin-right: 10px;
      transition: 0.3s;
    }

    .social-icons a:hover {
      background: linear-gradient(90deg, #00c6ff, #7b2ff7);
      transform: translateY(-5px);
    }

    @media(max-width: 991px) {
      .hero {
        text-align: center;
        padding-top: 120px;
      }

      .hero h1 {
        font-size: 48px;
      }

      .about-box,
      .contact-box {
        padding: 35px;
      }
    }

    .why-choose {
  background: linear-gradient(
    to bottom,
    #050816,
    #0b1023
  );
  position: relative;
  overflow: hidden;
}

.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 25px;
  padding: 25px;
  transition: 0.4s;
  backdrop-filter: blur(10px);
}

.why-card:hover {
  transform: translateY(-8px);
  border-color: #00c6ff;
  box-shadow: 0 15px 40px rgba(0,198,255,0.15);
}

.icon-box {
  min-width: 70px;
  height: 70px;
  border-radius: 20px;
  background: #0057fc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #fff;
}

.why-card h4 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
}

.why-card p {
  color: #bfbfbf;
  line-height: 1.8;
  margin: 0;
}


.experience-box {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #0057fc;
  padding: 30px;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(123,47,247,0.35);
}

.experience-box h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #fff;
}

.experience-box p {
  margin: 0;
  color: #fff;
  font-weight: 500;
}

@media(max-width: 991px) {
  .experience-box {
    position: relative;
    bottom: 0;
    right: 0;
    margin-top: 20px;
  }

  .why-card {
    flex-direction: column;
    text-align: center;
  }

  .icon-box {
    margin-bottom: 20px;
  }
}

  
.micro-services {
  background: linear-gradient(to bottom, #050816, #0b1023);
  position: relative;
  overflow: hidden;
}

.service-product-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  overflow: hidden;
  transition: 0.4s;
  backdrop-filter: blur(10px);
  height: 100%;
  position: relative;
}

.service-product-card:hover {
  transform: translateY(-10px);
  border-color: #00c6ff;
  box-shadow: 0 20px 50px rgba(0,198,255,0.15);
}

.service-image {
  overflow: hidden;
  position: relative;
}

.service-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: 0.5s;
}

.service-product-card:hover .service-image img {
  transform: scale(1.1);
}

.service-content {
  padding: 25px;
}

.service-badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 50px;
  background: linear-gradient(90deg, #0420b9, #0057fc);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
}

.service-content h4 {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}

.service-content p {
  color: #bfbfbf;
  line-height: 1.8;
  font-size: 15px;
  margin-bottom: 20px;
}

.price-box {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
}

.old-price {
  color: #8f8f8f;
  text-decoration: line-through;
  font-size: 18px;
}

.new-price {
  color: #0057fc;
  font-size: 30px;
  font-weight: 700;
}

.buy-btn {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 14px;
  border-radius: 15px;
  background: linear-gradient(90deg, #0420b9, #0057fc);
  color: #fff;
  font-weight: 600;
  transition: 0.4s;
}

.buy-btn:hover {
  transform: translateY(-3px);
  color: #fff;
  box-shadow: 0 10px 30px rgba(123,47,247,0.35);
}

@media(max-width: 991px) {
  .service-image img {
    height: 220px;
  }
}


  
.detailed-terms {
  position: relative;
  overflow: hidden;
}

.terms-main-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid #010a3b47;
  border-radius: 35px;
  padding: 60px;
  backdrop-filter: blur(12px);
  position: relative;
}

.terms-block {
  border-bottom: 1px solid #010a3b47;
  padding-bottom: 35px;
  margin-bottom: 35px;
}

.terms-block h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 22px;
  position: relative;
  padding-left: 22px;
}

.terms-block h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 6px;
  height: 80%;
  border-radius: 20px;
  background: linear-gradient(90deg, #010a3b, #0057fc);
}

.terms-block p {
  line-height: 2;
  font-size: 16px;
  margin-bottom: 18px;
}

@media(max-width: 991px) {

  .terms-main-box {
    padding: 35px 25px;
  }

  .terms-block h3 {
    font-size: 24px;
  }

  .terms-block p {
    font-size: 15px;
    line-height: 1.9;
  }

}



.whatsapp-cta {
  position: relative;
}

.cta-box {
  position: relative;
  overflow: hidden;
  padding: 70px 60px;
  border-radius: 35px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border-radius: 50px;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.25);
  color: #25D366;
  font-weight: 600;
  font-size: 14px;
}

.cta-box h2 {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
}

.cta-box p {
  font-size: 17px;
  line-height: 1.9;
  margin-top: 18px;
  max-width: 650px;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 35px;
  border-radius: 18px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  transition: 0.4s;
  position: relative;
  z-index: 2;
  box-shadow: 0 15px 40px rgba(37,211,102,0.3);
}

.whatsapp-btn i {
  font-size: 24px;
}

.whatsapp-btn:hover {
  transform: translateY(-5px) scale(1.03);
  color: #fff;
  box-shadow: 0 20px 50px rgba(37,211,102,0.45);
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}

.glow-1 {
  width: 250px;
  height: 250px;
  background: #21c66a;
  top: -80px;
  left: -80px;
}

.glow-2 {
  width: 250px;
  height: 250px;
  background: #21c66a;
  bottom: -100px;
  right: -100px;
}

@media(max-width: 991px) {

  .cta-box {
    padding: 45px 30px;
    text-align: center;
  }

  .cta-box h2 {
    font-size: 30px;
  }

  .whatsapp-btn {
    width: 100%;
    justify-content: center;
    margin-top: 20px;
  }
}



.testimonials {
  position: relative;
  overflow: hidden;
}

.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid #010a3b47;
  border-radius: 30px;
  padding: 27px;
  backdrop-filter: blur(12px);
  transition: 0.4s;
  height: 100%;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  border-color: #00c6ff;
  box-shadow: 0 20px 50px rgba(0,198,255,0.15);
}

.quote-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: linear-gradient(135deg, #010a3b, #0057fc);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.quote-icon i {
  color: #fff;
  font-size: 32px;
}

.testimonial-text {
  line-height: 2;
  font-size: 16px;
  margin-bottom: 30px;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.client-info img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255,255,255,0.15);
}

.client-info h5 {
  color: #fff;
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 600;
}

.client-info span {
  color: #010a3b;
  font-size: 14px;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #fff;
  opacity: 0.4;
  transition: 0.3s;
}

.light-blue-text{
    color: #0057fc!important;
}

.light-blue-bg{
    background: #0057fc!important;
}

.swiper-pagination-bullet-active {
  width: 30px;
  border-radius: 50px;
  background: #0057fc;
  opacity: 1;
}

@media(max-width: 991px) {

  .testimonial-card {
    padding: 30px;
  }

}

.service-two-section {
  background: linear-gradient(to bottom, #0b1023, #050816);
  position: relative;
  overflow: hidden;
}

.service-two-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.service-two-card {
  display: flex;
  gap: 25px;
  padding: 35px;
  border-radius: 28px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}

.service-two-card:hover {
  transform: translateY(-8px);
  border-color: #00c6ff;
  box-shadow: 0 20px 50px rgba(0,198,255,0.15);
}

.service-two-icon {
  min-width: 75px;
  height: 75px;
  border-radius: 22px;
  background: linear-gradient(135deg, #00c6ff, #7b2ff7);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-two-icon i {
  font-size: 32px;
  color: #fff;
}

.service-two-content h4 {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
}

.service-two-content p {
  color: #c9c9c9;
  line-height: 1.9;
  margin: 0;
  font-size: 15px;
}

@media(max-width: 991px) {

  .service-two-wrapper {
    grid-template-columns: 1fr;
  }

  .service-two-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 30px;
  }

}

.faq-section {
  position: relative;
  overflow: hidden;
}

.custom-accordion .accordion-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid #010a3b47;
  border-radius: 22px !important;
  margin-bottom: 20px;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.custom-accordion .accordion-button {
  background: transparent;
  font-size: 20px;
  font-weight: 600;
  padding: 28px 30px;
  box-shadow: none;
}

.custom-accordion .accordion-button:not(.collapsed) {
  background: rgba(255,255,255,0.03);
  color: #0057fc;
}

.custom-accordion .accordion-button:focus {
  box-shadow: none;
  border: none;
}

.custom-accordion .accordion-button::after {
  filter: brightness(0) invert(1);
}

.custom-accordion .accordion-body {
  line-height: 1.9;
  padding: 0 30px 30px;
  font-size: 16px;
}

.custom-accordion .accordion-button:hover {
  color: #0057fc !important;
}

@media(max-width: 991px) {

  .custom-accordion .accordion-button {
    font-size: 17px;
    padding: 22px;
  }

  .custom-accordion .accordion-body {
    padding: 0 22px 25px;
  }

}

.genitech-slider {
  position: relative;
  overflow: hidden;
}

.genitech-slide {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
}

.genitech-bg {
  position: absolute;
  inset: 0;
}

.genitech-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.genitech-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(5,8,22,0.92) 20%,
      rgba(5,8,22,0.72) 55%,
      rgba(5,8,22,0.88) 100%
    );
}

.genitech-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.genitech-badge {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 50px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  color: #0057fc;
  font-weight: 600;
  margin-bottom: 25px;
  backdrop-filter: blur(10px);
}

.genitech-content h1 {
  font-size: 50px;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 25px;
}

.genitech-content p {
  color: #d1d1d1;
  font-size: 18px;
  line-height: 2;
  max-width: 650px;
  margin-bottom: 35px;
}

.genitech-btns {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.primary-btn {
  padding: 16px 34px;
  border-radius: 16px;
  background: linear-gradient(90deg, #010a3b, #0057fc);
  color: #fff;
  font-weight: 600;
  transition: 0.4s;
}

.primary-btn:hover {
  transform: translateY(-5px);
  color: #fff;
  box-shadow: 0 15px 40px rgba(123,47,247,0.35);
}

.outline-btn {
  padding: 16px 34px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-weight: 600;
  backdrop-filter: blur(10px);
  transition: 0.4s;
}

.outline-btn:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
  transform: translateY(-5px);
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #fff;
  opacity: 0.5;
  transition: 0.3s;
}

.swiper-pagination-bullet-active {
  width: 30px;
  border-radius: 50px;
  background: linear-gradient(90deg, #010a3b, #0057fc);
  opacity: 1;
}

.genitech-slider .swiper-pagination {
  bottom: 40px !important;
}

@media(max-width: 991px) {

  .genitech-slide {
    height: auto;
    min-height: 100vh;
    padding: 140px 0 100px;
  }

  .genitech-content h1 {
    font-size: 46px;
  }

  .genitech-content p {
    font-size: 16px;
  }

}

@media(max-width: 576px) {

  .genitech-content h1 {
    font-size: 38px;
  }

  .genitech-btns {
    flex-direction: column;
  }

  .primary-btn,
  .outline-btn {
    width: 100%;
    text-align: center;
  }

}

.service-link {
    text-decoration: none;
    display: block;
    height: 100%;
    color: inherit;
}

.service-link:hover {
    color: inherit;
}

.service-link .service-card {
    height: 100%;
}

.for-font-color{
    color: #212529;
}

  .page-banner{
    position: relative;
    padding: 100px 0 50px;
    display: flex;
    align-items: center;
    overflow: hidden;

    background-image: url('https://genitech.in/wp-content/uploads/2026/06/breadcrumb.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Overlay */
.page-banner .banner-overlay{
    position: absolute;
    inset: 0;

    /* Adjust opacity here */
    background: rgba(0, 10, 35, 0.80);

    /* Alternative Genitech Gradient Overlay */
    /*
    background: linear-gradient(
        90deg,
        rgba(4, 15, 40, 0.85) 0%,
        rgba(4, 15, 40, 0.70) 50%,
        rgba(4, 15, 40, 0.55) 100%
    );
    */

    z-index: 1;
}

.banner-content{
    position: relative;
    z-index: 2;
    text-align: left;
}

.banner-content h1{
    color: #fff;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 8px;
}

.breadcrumb{
    margin: 0;
    padding: 0;
    background: transparent;
}

.breadcrumb-item a{
    color: #ffffff;
    text-decoration: none;
}

.breadcrumb-item.active{
    color: #ffffff;
}

.breadcrumb-item + .breadcrumb-item::before{
    color: rgba(255,255,255,.8);
}

@media(max-width:768px){
    .page-banner{
        height: 180px;
    }

    .banner-content h1{
        font-size: 32px;
    }
}

.contact-map-section{
    background:#0f172a;
}

.map-header h2{
    color:#fff;
    font-size:42px;
    font-weight:700;
    margin-bottom:15px;
}

.map-header p{
    color:#cbd5e1;
    max-width:700px;
    margin:auto;
    font-size:16px;
    line-height:1.8;
}

.map-wrapper{
    overflow:hidden;
    line-height:0;
}

.map-wrapper iframe{
    display:block;
    filter: grayscale(20%) contrast(1.05);
}

/*for animtion section*/


.genitech-growth-section{
    position:relative;
    overflow:hidden;
    background:#070b17;
    padding:120px 0;
}

.genitech-growth-section::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:linear-gradient(135deg,#4f46e5,#06b6d4);
    border-radius:50%;
    filter:blur(180px);
    opacity:.18;
    top:-150px;
    left:-150px;
}

.section-badge{
    display:inline-block;
    padding:10px 20px;
    border-radius:50px;
    background:rgba(255,255,255,.08);
    color:#fff;
    margin-bottom:20px;
}

.genitech-growth-section h2{
    font-size: 48px;
    font-weight: 700;
    color:#fff;
    line-height:1.2;
}

.genitech-growth-section p{
    color:#bfc7d9;
    margin-top:20px;
    line-height:1.8;
}

.stats-row{
    margin-top:40px;
}

.counter-box{
    text-align:center;
}

.counter-box h3{
    color:#fff;
    font-size:42px;
    font-weight:700;
}

.counter-box span{
    color:#9ca3af;
}

.genitech-btn{
    padding:14px 35px;
    border-radius:50px;
    background: linear-gradient(90deg, #0420b9, #0057fc);
    color:#fff;
    border:none;
    font-weight:600;
}

.genitech-btn:hover{
    color: #fff;
}

/* Animation Area */

.animation-wrapper{
    position:relative;
    height:600px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.center-circle{
    width:180px;
    height:180px;
    border-radius:50%;
    background:linear-gradient(90deg, #d0d7ff, #c6daff);
    color:#fff;
    font-size:32px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 0 50px rgba(79,70,229,.6);
    animation:pulse 3s infinite;
    z-index:2;
}

.orbit{
    position: absolute;
    border-left: 2px solid #0057fc;
    border-top: 2px solid #0057fc;
    border-radius: 50%;
}

.orbit-1{
    width:250px;
    height:250px;
    animation:rotate 5s linear infinite;
}

.orbit-2{
    width:400px;
    height:400px;
    animation:rotate 10s linear infinite reverse;
}

.orbit-3{
    width:550px;
    height:550px;
    animation:rotate 14s linear infinite;
}

.floating-card{
    position:absolute;
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(20px);
    border:1px solid rgba(255,255,255,.12);
    color:#fff;
    padding:18px 24px;
    border-radius:20px;
    font-weight:600;
    animation:float 5s ease-in-out infinite;
}

.card-1{
    top:70px;
    left:0px;
}

.card-2{
    top:130px;
    right:0px;
}

.card-3{
    bottom:120px;
    left:25px;
}

.card-4{
    bottom:80px;
    right:50px;
}

@keyframes rotate{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}

@keyframes pulse{
    0%,100%{
        transform:scale(1);
    }
    50%{
        transform:scale(1.08);
    }
}

@keyframes float{
    0%,100%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-20px);
    }
}
