    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }

    body {
      background: #050816;
      color: #fff;
      overflow-x: hidden;
    }

    a {
      text-decoration: none;
    }

    .navbar {
      background: rgba(5, 8, 22, 0.95);
      backdrop-filter: blur(10px);
      padding: 10px 0;
    }

    .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: 220px;
    }

    .nav-link {
      color: #fff !important;
      margin-left: 20px;
      font-weight: 500;
      transition: 0.3s;
    }

    .nav-link:hover {
      color: #00c6ff !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, #00c6ff, #7b2ff7);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .hero p {
      color: #c9c9c9;
      margin: 25px 0;
      font-size: 18px;
      line-height: 1.8;
    }

    .btn-custom {
      padding: 14px 34px;
      border-radius: 50px;
      font-weight: 600;
      border: none;
      background: linear-gradient(90deg, #00c6ff, #7b2ff7);
      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;
    }

    .section-title p {
      color: #b5b5b5;
      margin-top: 15px;
    }

    .services {
      padding: 100px 0;
    }

    .service-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
      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, #00c6ff, #7b2ff7);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .service-card h4 {
      font-size: 24px;
      margin-bottom: 15px;
      font-weight: 600;
    }

    .service-card p {
      color: #bfbfbf;
      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 {
      padding: 100px 0;
    }

    .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;
    }

    .contact {
      padding: 100px 0;
    }

    .contact-box {
      background: rgba(255,255,255,0.05);
      padding: 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;
    }

    .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: #070b1d;
      border-top: 1px solid rgba(255,255,255,0.08);
      color: #b5b5b5;
    }

    .footer-links li a {
      color: #bfbfbf;
      transition: 0.3s;
      font-size: 15px;
    }

    .footer-links li a:hover {
      color: #00c6ff;
      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: linear-gradient(135deg, #00c6ff, #7b2ff7);
  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: linear-gradient(135deg, #00c6ff, #7b2ff7);
  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.05);
  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: 230px;
  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, #00c6ff, #7b2ff7);
  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: #00c6ff;
  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, #00c6ff, #7b2ff7);
  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 {
  background: linear-gradient(to bottom, #050816, #0b1023);
  position: relative;
  overflow: hidden;
}

.terms-main-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 35px;
  padding: 60px;
  backdrop-filter: blur(12px);
  position: relative;
}

.terms-block {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 35px;
  margin-bottom: 35px;
}

.terms-block h3 {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 22px;
  position: relative;
  padding-left: 22px;
}

.terms-block h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 6px;
  height: 80%;
  border-radius: 20px;
  background: linear-gradient(180deg, #00c6ff, #7b2ff7);
}

.terms-block p {
  color: #c9c9c9;
  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 {
  background: linear-gradient(to bottom, #050816, #0b1023);
  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 {
  color: #c9c9c9;
  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: #00c6ff;
  top: -80px;
  left: -80px;
}

.glow-2 {
  width: 250px;
  height: 250px;
  background: #7b2ff7;
  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 {
  background: linear-gradient(to bottom, #0b1023, #050816);
  position: relative;
  overflow: hidden;
}

.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 30px;
  padding: 40px;
  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, #00c6ff, #7b2ff7);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.quote-icon i {
  color: #fff;
  font-size: 32px;
}

.testimonial-text {
  color: #c9c9c9;
  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: #00c6ff;
  font-size: 14px;
}

.swiper {
  padding-bottom: 60px;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #fff;
  opacity: 0.4;
  transition: 0.3s;
}

.swiper-pagination-bullet-active {
  width: 30px;
  border-radius: 50px;
  background: linear-gradient(90deg, #00c6ff, #7b2ff7);
  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 {
  background: linear-gradient(to bottom, #050816, #0b1023);
  position: relative;
  overflow: hidden;
}

.custom-accordion .accordion-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px !important;
  margin-bottom: 20px;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.custom-accordion .accordion-button {
  background: transparent;
  color: #fff;
  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: #00c6ff;
}

.custom-accordion .accordion-button:focus {
  box-shadow: none;
  border: none;
}

.custom-accordion .accordion-button::after {
  filter: brightness(0) invert(1);
}

.custom-accordion .accordion-body {
  color: #c9c9c9;
  line-height: 1.9;
  padding: 0 30px 30px;
  font-size: 16px;
}

.custom-accordion .accordion-button:hover {
  color: #00c6ff;
}

@media(max-width: 991px) {

  .custom-accordion .accordion-button {
    font-size: 17px;
    padding: 22px;
  }

  .custom-accordion .accordion-body {
    padding: 0 22px 25px;
  }

}

.divisha-slider {
  position: relative;
  overflow: hidden;
}

.divisha-slide {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
}

.divisha-bg {
  position: absolute;
  inset: 0;
}

.divisha-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.divisha-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%
    );
}

.divisha-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.divisha-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: #00c6ff;
  font-weight: 600;
  margin-bottom: 25px;
  backdrop-filter: blur(10px);
}

.divisha-content h1 {
  font-size: 50px;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 25px;
}

.divisha-content p {
  color: #d1d1d1;
  font-size: 18px;
  line-height: 2;
  max-width: 650px;
  margin-bottom: 35px;
}

.divisha-btns {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.primary-btn {
  padding: 16px 34px;
  border-radius: 16px;
  background: linear-gradient(90deg, #00c6ff, #7b2ff7);
  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, #00c6ff, #7b2ff7);
  opacity: 1;
}

.divisha-slider .swiper-pagination {
  bottom: 80px !important;
}

@media(max-width: 991px) {

  .divisha-slide {
    height: auto;
    min-height: 100vh;
    padding: 140px 0 100px;
  }

  .divisha-content h1 {
    font-size: 46px;
  }

  .divisha-content p {
    font-size: 16px;
  }

}

@media(max-width: 576px) {

  .divisha-content h1 {
    font-size: 38px;
  }

  .divisha-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%;
}
