body {
  font-family: "Lato", sans-serif;
  background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
}

.navbar {
  padding: 1rem 2rem;
  background: linear-gradient(120deg, #f8f7f3, #e9e4f9);
}

.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  background-color: #5e17eb;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.2s ease;
}

/* Remove custom cursor on mobile devices */
@media (max-width: 768px) {
  .custom-cursor {
    display: none; /* Hide custom cursor on mobile */
  }
}

.navbar-brand img {
  height: 30px;
}

.nav-item {
  margin: 0 10px;
}

.hero-section {
  padding: 60px 20px;
  text-align: center;
  /* background: linear-gradient(120deg, #f8f7f3, #e9e4f9); */
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-small-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #333;
}

.hero-title {
  font-size: 5.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #5e17eb;
  position: relative;
  display: inline-block;
}

.hero-subtitle {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #1a1a1a;
}

.hero-description {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto 2rem;
  color: #333;
  line-height: 1.6;
}

.cta-button {
  background-color: #5e17eb;
  color: #fff;
  border-radius: 50px;
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  margin-top: 20px;
}

.cta-button:hover {
  background-color: #333;
  transform: translateY(-2px);
}

.partners {
  padding: 20px 0;
  text-align: center;
}

.partners-text {
  color: #666;
  margin-right: 15px;
}

.partners img {
  height: 24px;
  margin: 0 5px;
}

.asterisk {
  color: #6e5ee8;
  font-size: 5rem;
  position: absolute;
  top: -10px;
  right: -25px;
}

.btn-outline-dark {
  border-radius: 30px;
  padding: 8px 20px;
}

.btn-dark {
  border-radius: 30px;
  padding: 8px 25px;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
  .hero-subtitle {
    font-size: 2.2rem;
  }
  .hero-description {
    font-size: 1rem;
    padding: 0 15px;
  }
  .asterisk {
    font-size: 3rem;
    right: -15px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 3rem;
  }
  .hero-subtitle {
    font-size: 2rem;
  }
  .partners img {
    height: 20px;
  }
}

/* --------------------------------------------------------------------------------- */

.banner-section {
  /* background-image: url("assets/AOyWvrrQJAlpT1ZE8BV3Q2skl4.avif"); */
  background-size: 100% 550px;
  background-repeat: no-repeat;
  background-position: center;
  margin: 0 15%;
  padding: 5px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  overflow: hidden;
}

.security-badge {
  background-color: #5e17eb;
  color: #dee2e6;
  border-radius: 30px;
  padding: 10px 20px;
  display: inline-flex;
  align-items: center;
  margin: 20px auto 40px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* .security-badge .badge {
  margin: 0 5px;
  background-color: #f8f9fa;
  color: #ffffff;
  font-weight: normal;
  padding: 6px 12px;
} */

/* .security-badge i {
  color: #ffffff;
  margin-right: 8px;
} */

.security-badge .divider {
  width: 1px;
  height: 20px;
  background-color: #dee2e6;
  margin: 0 10px;
}

.example-box {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.example-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (max-width: 768px) {
  .banner-section {
    /* background-image: none; */
    margin: 0;
    border-radius: 0;
    padding: 20px 10px;
  }

  .example-box {
    width: 100%;
    max-width: 100%;
    border-radius: 0;
  }

  .bookmark-bar {
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 10px;
  }

  .nav-menu {
    margin-top: 15px;
  }

  .security-badge {
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px;
  }

  .security-badge .badge {
    margin: 5px;
  }

  .security-badge .divider {
    display: none;
  }
}

/* ---------------------------------------------------------------------------------------- */
.about-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
  color: #1e293b;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(59,130,246,0.05)" points="0,1000 1000,800 1000,1000"/></svg>');
  background-size: cover;
}

.about-content {
  position: relative;
  z-index: 2;
}

.section-title {
  font-size: 3.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #3b82f6, #1d4ed8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  text-align: center;
  font-size: 1.3rem;
  margin-bottom: 60px;
  opacity: 0.7;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: #64748b;
}

.about-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(71, 85, 105, 0.1);
}

.about-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(71, 85, 105, 0.15);
  background: rgba(255, 255, 255, 0.95);
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 20px;
}

.highlight {
  color: #3b82f6;
  font-weight: 600;
}

.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 50px;
}

.mission-card,
.vision-card {
  background: rgba(255, 255, 255, 0.6);
  padding: 30px;
  border-radius: 15px;
  border-left: 4px solid #3b82f6;
  transition: all 0.3s ease;
  box-shadow: 0 2px 15px rgba(71, 85, 105, 0.08);
}

.mission-card:hover,
.vision-card:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateX(10px);
  box-shadow: 0 4px 25px rgba(71, 85, 105, 0.12);
}

.mission-title,
.vision-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #3b82f6;
}

.services-preview {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 40px;
  gap: 20px;
}

.service-badge {
  background: linear-gradient(45deg, #3b82f6, #1d4ed8);
  color: white;
  padding: 15px 25px;
  border-radius: 25px;
  font-weight: 500;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
  transition: all 0.3s ease;
}

.service-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }

  .mission-vision {
    grid-template-columns: 1fr;
  }

  .about-card {
    padding: 25px;
  }

  .services-preview {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 2rem;
  }

  .about-text {
    font-size: 1rem;
  }
}

/* -------------------------------------------------------------------------------------- */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}
header {
  text-align: center;
  margin-bottom: 60px;
}
h1 {
  font-size: 48px;
  margin-bottom: 20px;
  color: #222;
}
.subtitle {
  font-size: 20px;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}
.services-grid {
  display: flex;
  flex-wrap: wrap;
  /* gap: 40px; */
  justify-content: center;
}
.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: 100px;
}
.service-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.service-content.reverse {
  flex-direction: row-reverse;
}
.service-text {
  flex: 1;
  padding: 0 30px;
}
.service-image {
  flex: 1;
  display: flex;
  justify-content: center;
}
.service-box {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 30px;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
.service-box.pink {
  background: linear-gradient(to bottom right, #ff9a9e, #fad0c4);
}
.service-box.blue {
  background: linear-gradient(to bottom right, #a1c4fd, #c2e9fb);
}
.service-title {
  font-size: 36px;
  margin-bottom: 20px;
  color: #222;
}
.service-description {
  font-size: 18px;
  margin-bottom: 30px;
  color: #555;
}
.feature-list {
  margin-bottom: 30px;
}
.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.feature-icon {
  width: 30px;
  height: 30px;
  background-color: #f0f0f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: #0071e3;
  font-weight: bold;
}
.cta-button {
  display: inline-block;
  background-color: #5e17eb;
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}
.cta-button:hover {
  background-color: #0058b1;
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .service-content,
  .service-content.reverse {
    flex-direction: column;
  }
  .service-text {
    order: 2;
    padding: 30px 20px;
  }
  .service-image {
    order: 1;
    margin-bottom: 30px;
  }
}

/* ---------------------------------------------------------------------- */

.overview-section {
  /* padding: 80px 0; */
  text-align: center;
  background-color: #000;
  color: #fff;
  min-width: 100%;
}

.section-title-overview {
  color: #fff;
  font-size: 4rem;
  font-weight: 300;
  margin-bottom: 20px;
}

.section-subtitle {
  color: #aaa;
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

.stats-container {
  margin-bottom: 80px;
}

.stat-item {
  margin-bottom: 40px;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.stat-text {
  font-size: 1.2rem;
  color: #aaa;
}

.project-icon {
  background-color: transparent;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.project-card {
  padding: 20px;
  height: 100%;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: translateY(-10px);
}

.project-card:last-child {
  border-right: none;
}

.project-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 500;
}

.project-description {
  font-size: 0.95rem;
  color: #aaa;
  line-height: 1.5;
}

.counter-container {
  margin-bottom: 80px;
}

@media (max-width: 991px) {
  .project-card {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

  .project-row .col-lg-3:last-child .project-card {
    border-bottom: none;
  }
}

/* -------------------------------------------------------------- */

.contact-section {
  padding: 60px 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 40px;
  color: #6c757d;
}

.contact-form {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.btn-form {
  color: white;
  background-color: #5e17eb;
}
@media (max-width: 576px) {
  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }
}

/* --------------------------------------------------------------------------------------- */

footer {
  background-color: #000000;
  color: #ffffff;
  padding: 50px 0 30px;
  text-align: center;
  border-top: 1px solid #333;
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.footer-logo span {
  color: #ffffff;
  background-color: #000000;
  padding: 0 5px;
}

.footer-divider {
  border: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, #ffffff, transparent);
  margin: 25px auto;
  max-width: 300px;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 25px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #cccccc;
  text-decoration: underline;
}

.footer-social {
  margin-bottom: 25px;
}

.footer-social a {
  color: #ffffff;
  margin: 0 12px;
  font-size: 1.3rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  color: #cccccc;
  transform: translateY(-3px);
}

.footer-copyright {
  font-size: 0.8rem;
  color: #aaaaaa;
  margin-top: 20px;
}

.footer-contact {
  margin-bottom: 20px;
  line-height: 1.6;
}

.footer-contact p {
  margin: 5px 0;
  font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .footer-links {
    gap: 15px;
  }

  .footer-social a {
    margin: 0 8px;
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .footer-links {
    flex-direction: column;
    gap: 10px;
  }

  .footer-logo {
    font-size: 1.5rem;
  }
}

/* ----------------------------------------------------- */
/* fetures section  */
.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.hero {
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
  color: #1f2937;
  padding: 40px;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  animation: fadeUp 0.8s ease forwards;
}

.hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  animation: fadeUp 0.8s ease 0.2s both;
}

.features {
  padding: 60px 40px;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  color: #1f2937;
  margin-bottom: 40px;
  padding-top: 20px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  border-left: 5px solid;
  transition: all 0.3s ease;
  cursor: pointer;
  animation: slideUp 0.6s ease both;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.card:nth-child(1) {
  border-left-color: #3b82f6;
  animation-delay: 0.1s;
}

.card:nth-child(2) {
  border-left-color: #10b981;
  animation-delay: 0.2s;
}

.card:nth-child(3) {
  border-left-color: #8b5cf6;
  animation-delay: 0.3s;
}

.card:nth-child(4) {
  border-left-color: #ef4444;
  animation-delay: 0.4s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  background: #fefefe;
}

.icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.card:hover .icon {
  transform: scale(1.1);
}

.card:nth-child(1) .icon {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.card:nth-child(2) .icon {
  background: linear-gradient(135deg, #10b981, #047857);
}

.card:nth-child(3) .icon {
  background: linear-gradient(135deg, #8b5cf6, #6d28d9);
}

.card:nth-child(4) .icon {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

.title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 10px;
}

.desc {
  color: #6b7280;
  margin-bottom: 20px;
  line-height: 1.6;
}

.list {
  list-style: none;
}

.list li {
  padding: 8px 0;
  color: #4b5563;
  position: relative;
  padding-left: 25px;
  transition: color 0.3s ease;
}

.list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

.card:hover .list li {
  color: #1f2937;
}

.benefits {
  background: linear-gradient(135deg, #ffffff, #f8fafc);
  padding: 60px 40px;
}

.benefits .section-title {
  animation: fadeIn 0.8s ease 0.5s both;
}

.benefit-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  animation: slideRight 0.6s ease both;
}

.benefit-card:nth-child(2) {
  animation-delay: 0.2s;
}

.benefit-card:nth-child(3) {
  animation-delay: 0.4s;
}

.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.category {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e5e7eb;
}

.benefit-list {
  list-style: none;
}

.benefit-list li {
  padding: 10px 0;
  color: #4b5563;
  position: relative;
  padding-left: 25px;
  line-height: 1.5;
}

.benefit-list li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-weight: bold;
}

.cta {
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
  color: #1f2937;
  padding: 50px 40px;
  text-align: center;
}

.cta-text {
  font-size: 1.3rem;
  font-style: italic;
  opacity: 0.9;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  animation: fadeIn 0.8s ease 0.7s both;
}

/* Optimized Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .features,
  .benefits {
    padding: 40px 20px;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .hero,
  .cta {
    padding: 30px 20px;
  }
}

/* ------------------------------------------------------------------ */
/* price section  */
.dp-container-wrapper {
  width: 100%;
  max-width: 1200px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.dp-pricing-wrapper {
  max-width: 1000px;
  width: 100%;
  text-align: center;
}

.dp-pricing-header-section {
  margin-bottom: 40px;
  color: #2c3e50;
}

.dp-pricing-main-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.dp-pricing-subtitle {
  font-size: 1.1rem;
  opacity: 0.8;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.5;
}

.dp-pricing-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.dp-pricing-card {
  background: white;
  border-radius: 15px;
  padding: 25px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

.dp-pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.dp-popular-plan {
  border: 2px solid #3498db;
  transform: scale(1.02);
}

.dp-popular-plan::before {
  content: "POPULAR";
  position: absolute;
  top: 15px;
  right: -25px;
  background: linear-gradient(45deg, #3498db, #2ecc71);
  color: white;
  padding: 5px 30px;
  font-size: 0.75rem;
  font-weight: bold;
  transform: rotate(45deg);
  letter-spacing: 1px;
}

.dp-plan-header-section {
  text-align: center;
  margin-bottom: 20px;
}

.dp-plan-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 5px;
}

.dp-plan-description-text {
  color: #666;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.dp-price-value {
  font-size: 2.2rem;
  font-weight: 800;
  color: #3498db;
  margin-bottom: 5px;
}

.dp-billing-period {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.dp-modules-container {
  text-align: left;
  margin-bottom: 20px;
  position: relative;
}

.dp-modules-content {
  max-height: 200px;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.dp-expanded-content {
  max-height: 1000px;
}

.dp-toggle-modules-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: #3498db;
  font-weight: 600;
  cursor: pointer;
  padding: 10px;
  margin: 10px 0;
  transition: all 0.3s ease;
  border-radius: 5px;
  font-size: 0.9rem;
}

.dp-toggle-modules-btn:hover {
  background: #f8f9fa;
  color: #2980b9;
}

.dp-arrow-icon {
  margin-left: 8px;
  transition: transform 0.3s ease;
  font-size: 1.2rem;
}

.dp-expanded-btn .dp-arrow-icon {
  transform: rotate(180deg);
}

.dp-module-heading {
  color: #2c3e50;
  font-size: 0.9rem;
  font-weight: 600;
  margin: 15px 0 10px 0;
  text-align: left;
  border-bottom: 1px solid #3498db;
  padding-bottom: 5px;
}

.dp-module-heading:first-child {
  margin-top: 0;
}

.dp-features-list {
  list-style: none;
  text-align: left;
  margin-bottom: 15px;
}

.dp-features-list li {
  padding: 6px 0;
  position: relative;
  padding-left: 20px;
  color: #555;
  line-height: 1.3;
  font-size: 0.85rem;
}

.dp-features-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #27ae60;
  font-weight: bold;
  font-size: 1rem;
}

.dp-feature-number {
  color: #3498db;
  font-weight: 600;
  margin-right: 5px;
}

.dp-total-price-box {
  font-size: 1rem;
  color: #2c3e50;
  text-align: center;
  margin: 15px 0;
  padding: 10px;
  background: #ecf0f1;
  border-radius: 8px;
  font-weight: 600;
}

.dp-small-text {
  font-size: 0.8rem;
  color: #666;
}

.dp-free-trial-badge {
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  text-align: center;
  font-weight: 600;
  margin: 15px 0;
  font-size: 0.8rem;
}

.dp-addons-section {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px dashed #e0e0e0;
}

.dp-addons-title {
  color: #333;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.dp-addon-item {
  color: #555;
  font-weight: 500;
  font-size: 0.8rem;
  margin-bottom: 3px;
}

.dp-cta-button {
  width: 100%;
  padding: 12px 25px;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 15px;
}

.dp-silver-card .dp-cta-button {
  background: linear-gradient(135deg, #74b9ff, #0984e3);
  color: white;
}

.dp-gold-card .dp-cta-button {
  background: linear-gradient(135deg, #3498db, #27ae60);
  color: white;
}

.dp-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.dp-fade-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30px;
  background: linear-gradient(transparent, white);
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.dp-expanded-content + .dp-fade-overlay {
  opacity: 0;
}

@media (max-width: 768px) {
  .dp-pricing-main-title {
    font-size: 2rem;
  }

  .dp-pricing-cards-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .dp-popular-plan {
    transform: none;
  }

  .dp-pricing-card {
    padding: 20px 15px;
  }
}
/* ----------------------------------------------------------------------- */

.ms-container {
  max-width: 1200px;
  margin: 0 auto;
}

.ms-header {
  text-align: center;
  margin-bottom: 40px;
  color: #2d3748;
}

.ms-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #4a5568;
}

.ms-header p {
  font-size: 1.1rem;
  color: #718096;
  max-width: 600px;
  margin: 0 auto;
}

.ms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.ms-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.ms-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.ms-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.ms-icon-box {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 24px;
  color: white;
}

.ms-title {
  color: #2d3748;
  font-size: 1.5rem;
  font-weight: 600;
}

.ms-list {
  list-style: none;
}

.ms-item {
  display: flex;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}

.ms-item:last-child {
  border-bottom: none;
}

.ms-item:hover {
  background: rgba(102, 126, 234, 0.05);
  padding-left: 10px;
  border-radius: 8px;
}

.ms-dot {
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.2s ease;
}

.ms-item:hover .ms-dot {
  transform: scale(1.5);
}

.ms-text {
  color: #4a5568;
  font-size: 1rem;
  line-height: 1.4;
}

.ms-banner {
  background: linear-gradient(135deg, #ff6b6b, #feca57);
  color: white;
  text-align: center;
  padding: 25px;
  border-radius: 15px;
  margin-top: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.ms-banner h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.ms-banner p {
  font-size: 1.1rem;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .ms-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ms-header h2 {
    font-size: 2.2rem;
  }

  .ms-card {
    padding: 20px;
  }
}

.ms-floating {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.ms-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: ms-float 6s ease-in-out infinite;
}

.ms-circle:nth-child(1) {
  width: 100px;
  height: 100px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.ms-circle:nth-child(2) {
  width: 60px;
  height: 60px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.ms-circle:nth-child(3) {
  width: 80px;
  height: 80px;
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes ms-float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}
