
/* website logo in header */
        .logo img {
    height: 40px;
    width: auto;
}
/* end */

/* header section */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: #111827;
  background: #fff;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Sticky premium header */
.top-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  transition: all 0.35s ease;
}

/* topbar */
.topbar {
  background: #111827;
  color: #fff;
  font-size: 14px;
  padding: 10px 0;
  transition: all 0.35s ease;
}

.topbar-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.topbar-left,
.topbar-right {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* navbar */
.navbar {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  transition: all 0.35s ease;
}

.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  transition: all 0.35s ease;
}

.logo {
  font-size: 30px;
  font-weight: 800;
  color: #111827;
  transition: all 0.35s ease;
}

.logo span {
  color: #6c3bff;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-menu li a {
  font-weight: 600;
  color: #1f2937;
  transition: 0.3s;
}

.nav-menu li a:hover,
.nav-menu li a.active {
  color: #6c3bff;
}

/* Dropdown */
.nav-menu li {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 220px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s ease;
  z-index: 999;
}

.dropdown-menu li {
  display: block;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 18px;
  color: #111827;
  font-weight: 500;
  transition: 0.3s;
}

.dropdown-menu li a:hover {
  background: #f3f4f6;
  color: #6c3bff;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Shrink effect on scroll */
.top-header.scrolled {
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.top-header.scrolled .topbar {
  padding: 6px 0;
  font-size: 12px;
}

.top-header.scrolled .nav-flex {
  padding: 10px 0;
}

.top-header.scrolled .logo {
  font-size: 24px;
}

/* Important: page content should not hide behind fixed header */
body {
  padding-top: 110px;
}

/* Optional for banners */
.page-banner {
  padding: 90px 0;
  background: linear-gradient(135deg, #f3f6ff, #eef9ff);
  text-align: center;
}

.page-banner h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.page-banner p {
  color: #6b7280;
  font-size: 18px;
}

.page-section {
  padding: 80px 0;
}

.page-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.page-section p {
  color: #6b7280;
  margin-bottom: 16px;
}

.footer {
  background: #111827;
  color: #fff;
  padding: 50px 0 20px;
  margin-top: 60px;
}

.footer p {
  text-align: center;
  color: rgba(255,255,255,0.8);
}

@media (max-width: 991px) {
  body {
    padding-top: 130px;
  }

  .nav-flex {
    flex-direction: column;
    gap: 15px;
  }

  .nav-menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .page-banner h1 {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  .top-header.scrolled .topbar {
    padding: 5px 0;
  }

  .top-header.scrolled .logo {
    font-size: 22px;
  }
}/* end */

/* footer section */
.footer {
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(108, 59, 255, 0.18), transparent 28%),
    radial-gradient(circle at bottom right, rgba(0, 194, 255, 0.15), transparent 28%),
    #0f172a;
  color: #fff;
  padding: 80px 0 0;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 260px;
  height: 260px;
  background: rgba(108, 59, 255, 0.15);
  border-radius: 50%;
  filter: blur(20px);
}

.footer::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 220px;
  height: 220px;
  background: rgba(0, 194, 255, 0.12);
  border-radius: 50%;
  filter: blur(20px);
}

.footer .container {
  position: relative;
  z-index: 2;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 40px;
  padding-bottom: 45px;
}

.footer-brand {
  max-width: 380px;
}

.footer-logo {
  display: inline-block;
  font-size: 34px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: -1px;
}

.footer-logo span {
  color: #6c3bff;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  background: linear-gradient(135deg, #6c3bff, #00c2ff);
  transform: translateY(-4px);
}

.footer-links-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 22px;
  color: #fff;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42px;
  height: 3px;
  border-radius: 30px;
  background: linear-gradient(90deg, #6c3bff, #00c2ff);
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a,
.footer-contact li {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: #fff;
  padding-left: 6px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.7;
}

.footer-newsletter {
  margin-top: 10px;
  margin-bottom: 35px;
  padding: 28px 30px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(108, 59, 255, 0.18), rgba(0, 194, 255, 0.15));
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.newsletter-text h3 {
  font-size: 28px;
  margin-bottom: 8px;
}

.newsletter-text p {
  color: rgba(255, 255, 255, 0.75);
}

.newsletter-form {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.newsletter-form input {
  min-width: 280px;
  flex: 1;
  max-width: 420px;
  height: 54px;
  border: none;
  outline: none;
  border-radius: 999px;
  padding: 0 20px;
  background: #fff;
  color: #111827;
  font-size: 15px;
}

.newsletter-form button {
  height: 54px;
  border: none;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(135deg, #6c3bff, #00c2ff);
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
  font-size: 14px;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #fff;
}

@media (max-width: 991px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-links-wrap {
    grid-template-columns: repeat(2, 1fr);
  }

  .newsletter-form {
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  .footer {
    padding-top: 65px;
  }

  .footer-links-wrap {
    grid-template-columns: 1fr;
  }

  .newsletter-text h3 {
    font-size: 22px;
  }

  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}/* end */

/* Our Services */
.services-page {
  padding: 80px 0;
  background: #f8fbff;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 42px;
  margin-bottom: 10px;
}

.section-title p {
  color: #6b7280;
  font-size: 18px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.service-card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 20px;
  transition: 0.4s;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
  border: 1px solid #eef2f7;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #6c3bff, #00c2ff);
  opacity: 0;
  transition: 0.4s;
  z-index: 0;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card * {
  position: relative;
  z-index: 2;
}

.service-card:hover h3,
.service-card:hover p {
  color: #fff;
}

.service-card:hover .icon {
  background: #fff;
  color: #6c3bff;
}

.service-card:hover .service-btn {
  background: #fff;
  color: #111827;
}

.icon {
  width: 70px;
  height: 70px;
  margin: 0 0 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, #6c3bff, #00c2ff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  transition: 0.3s;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.service-card p {
  color: #6b7280;
  font-size: 15px;
  margin-bottom: 20px;
}

.service-btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #6c3bff, #00c2ff);
  color: #fff;
  font-weight: 700;
  transition: 0.3s;
}

.service-detail-hero {
  padding: 90px 0 70px;
  background: linear-gradient(135deg, #f3f6ff, #eef9ff);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.service-detail-hero h1 {
  font-size: 52px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.service-detail-hero p {
  color: #6b7280;
  font-size: 18px;
  margin-bottom: 24px;
}

.detail-badge {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(108, 59, 255, 0.1);
  color: #6c3bff;
  font-weight: 700;
  margin-bottom: 16px;
}

.detail-visual {
  min-height: 380px;
  border-radius: 28px;
  background: linear-gradient(135deg, #111827, #1f2937);
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(17, 24, 39, 0.12);
}

.detail-visual::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  top: -40px;
  right: -40px;
  border-radius: 50%;
  background: rgba(108, 59, 255, 0.35);
  filter: blur(10px);
}

.detail-visual::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  bottom: -30px;
  left: -30px;
  border-radius: 50%;
  background: rgba(0, 194, 255, 0.28);
  filter: blur(10px);
}

.detail-card {
  position: absolute;
  inset: 30px;
  border-radius: 24px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  padding: 24px;
  color: #fff;
}

.detail-card h3 {
  font-size: 24px;
  margin-bottom: 18px;
}

.detail-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.detail-card ul li {
  margin-bottom: 12px;
  color: rgba(255,255,255,0.85);
}

.service-content {
  padding: 80px 0;
}

.service-content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}

.service-main,
.service-sidebar-box {
  background: #fff;
  border-radius: 22px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border: 1px solid #eef2f7;
}

.service-main h2 {
  font-size: 34px;
  margin-bottom: 16px;
}

.service-main p {
  color: #6b7280;
  margin-bottom: 18px;
}

.service-main h3 {
  font-size: 24px;
  margin: 26px 0 14px;
}

.service-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-points li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  color: #374151;
}

.service-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #6c3bff;
  font-weight: 700;
}

.service-sidebar-box h4 {
  font-size: 22px;
  margin-bottom: 18px;
}

.service-sidebar-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-sidebar-box ul li {
  margin-bottom: 12px;
}

.service-sidebar-box ul li a {
  color: #111827;
  font-weight: 600;
}

.service-sidebar-box ul li a:hover {
  color: #6c3bff;
}

.quote-btn {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 14px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #6c3bff, #00c2ff);
  color: #fff;
  font-weight: 700;
  margin-top: 20px;
}

@media (max-width: 991px) {
  .services-grid,
  .service-detail-grid,
  .service-content-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-content-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .services-grid,
  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-hero h1 {
    font-size: 38px;
  }

  .section-title h2,
  .service-main h2 {
    font-size: 30px;
  }
}/* end */

/* css for Terms & Conditions / Privacy Policy*/
.page-section ul {
  margin: 15px 0 20px 20px;
  padding-left: 20px;
}

.page-section ul li {
  margin-bottom: 10px;
  color: #6b7280;
  line-height: 1.8;
  list-style: disc;
}

.page-section h2 {
  margin-top: 30px;
}/* end */

/* index page Testimonials What Our Clients Say */
.testimonial-slider {
  position: relative;
  overflow: hidden;
  margin-top: 20px;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-slider .testimonial-card {
  min-width: calc(100% / 3 - 16px);
  margin-right: 24px;
  flex: 0 0 calc(100% / 3 - 16px);
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 18px 45px rgba(17, 24, 39, 0.06);
}

.testimonial-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #6c3bff, #00c2ff);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  z-index: 2;
}

.testimonial-btn.prev {
  left: 10px;
}

.testimonial-btn.next {
  right: 10px;
}

.testimonial-dots {
  text-align: center;
  margin-top: 20px;
}

.testimonial-dots span {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #d1d5db;
  border-radius: 50%;
  margin: 0 6px;
  cursor: pointer;
  transition: 0.3s;
}

.testimonial-dots span.active {
  background: #6c3bff;
}

@media (max-width: 991px) {
  .testimonial-slider .testimonial-card {
    min-width: calc(100% / 2 - 12px);
    flex: 0 0 calc(100% / 2 - 12px);
  }
}

@media (max-width: 576px) {
  .testimonial-slider .testimonial-card {
    min-width: 100%;
    flex: 0 0 100%;
    margin-right: 0;
  }

  .testimonial-btn {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
} /* end */

/* index page Brands We’ve Worked With  */
.clients {
  padding: 70px 0;
  background: #fff;
  overflow: hidden;
}

.clients-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.clients-track {
  display: flex;
  align-items: center;
  gap: 24px;
  width: max-content;
  animation: clientScroll 30s linear infinite;
}

.client-logo {
  min-width: 180px;
  height: 110px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: 0.3s ease;
}

.client-logo:hover {
  transform: translateY(-5px);
}

.client-logo img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: 0.3s ease;
}

.client-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes clientScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .client-logo {
    min-width: 140px;
    height: 90px;
    padding: 14px;
  }

  .client-logo img {
    max-height: 45px;
  }
}

.clients-track:hover {
  animation-play-state: paused;
} /* end */

/* index page Sign Up / Request Call back / you agree to our */
/* Terms text */
.form-terms {
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}

.form-terms a {
  color: #c7d2fe;
  text-decoration: underline;
}

/* Checkbox container */
.consent-box {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 12px;
}

/* checkbox */
.consent-box input[type="checkbox"] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #c7d2fe;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
  margin-top: 4px; /* aligns with text */
}

/* checked */
.consent-box input[type="checkbox"]:checked {
  background: linear-gradient(135deg, #6c3bff, #00c2ff);
  border: none;
}

/* tick */
.consent-box input[type="checkbox"]:checked::after {
  content: "✔";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  font-size: 12px;
  color: #fff;
}

/* label */
.consent-box label {
  font-size: 13px;
  color: #fff;
  line-height: 1.6;
  cursor: pointer;
  flex: 1; /* takes full width */
}


/* end */

/* print pdf layout */
@media print {
  .navbar, .footer, .btn {
    display: none;
  }
}
/* end */

/* index page hero-stats */
.hero-stats {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* Stat Card */
.stat {
  flex: 1;
  min-width: 160px;
  background: #ffffff;
  padding: 25px 20px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid #e5e7eb;

  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* Hover Glow Background */
.stat::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #6c3bff, #00c2ff);
  opacity: 0;
  transition: 0.4s;
  z-index: 0;
}

/* Text styling */
.stat h3,
.stat p {
  position: relative;
  z-index: 2;
  transition: 0.3s;
}

.stat h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 5px;
}

.stat p {
  font-size: 14px;
  color: #6b7280;
}

/* Hover Effect */
.stat:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Gradient overlay appears */
.stat:hover::before {
  opacity: 1;
}

/* Text color changes */
.stat:hover h3,
.stat:hover p {
  color: #fff;
}

/* animated number effect + pulse */
.stat:hover h3 {
  animation: pop 0.3s ease;
}

@keyframes pop {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}
/* end */

/* In about page team-cards in right side */
.team-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.team-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.team-card {
  background: #fff;
  padding: 22px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  text-align: center;
  transition: 0.35s;
}

.team-icon {
  font-size: 30px;
  margin-bottom: 10px;
}

.team-card h4 {
  font-size: 18px;
  margin-bottom: 6px;
}

.team-card p {
  font-size: 14px;
  color: #6b7280;
}

/* Hover */
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}
/* end */

/* form pop in services  */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 9999;
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup-box {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  max-width: 400px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  animation: popupScale 0.3s ease;
}

.popup-box h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.popup-box p {
  color: #6b7280;
  margin-bottom: 20px;
}

.popup-box button {
  padding: 12px 24px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #6c3bff, #00c2ff);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

@keyframes popupScale {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
/* end */


/* active in header */
.nav-menu li a.active {
  color: #111827;
  background: #f3f4f6;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 800;
}

.nav-menu li a.active:hover {
  color: #6c3bff;
}

.dropdown-menu li a.active {
  background: linear-gradient(135deg, #6c3bff, #00c2ff);
  color: #fff !important;
  border-radius: 8px;
}
/* end */
