/* =========================
   DIGITAL MARKETING LONG PAGE CSS
========================= */
.dmxl-container {
  font-family: 'Segoe UI', sans-serif;
  color: #2c2c2c;
  line-height: 1.8
}

/* HERO */
.dmxl-hero {
  padding: 110px 20px;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, #667eea, #764ba2, #6a11cb);
  background-size: 300% 300%;
  animation: dmxlGradient 5s ease infinite;
}

@keyframes dmxlGradient {
  0% {
    background-position: 0% 50%
  }

  50% {
    background-position: 100% 50%
  }

  100% {
    background-position: 0% 50%
  }
}

.dmxl-hero h1 {
  font-size: 46px;
  margin-bottom: 15px;
  color: #fff;
}

.dmxl-hero p {
  max-width: 800px;
  margin: auto;
  font-size: 18px;
  color: #fff;
}

/* SECTION */
.dmxl-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
}

.dmxl-section h2 {
  font-size: 34px;
  margin-bottom: 20px;
}

.dmxl-section h3 {
  font-size: 24px;
  margin-top: 25px;
}

.dmxl-section p {
  margin-bottom: 20px;
  color: #555
}

/* GRID */
.dmxl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px
}

/* CARD */
.dmxl-card {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
}

.dmxl-card:hover {
  transform: translateY(-10px)
}

.dmxl-card i {
  font-size: 30px;
  color: #6a11cb;
  margin-bottom: 15px
}

/* FAQ */
.dmxl-faq-item {
  border-bottom: 1px solid #ddd
}

.dmxl-faq-question {
  cursor: pointer;
  padding: 15px;
  font-weight: 600;
  display: flex;
  justify-content: space-between
}

.dmxl-faq-answer {
  display: none;
  padding: 0 15px 15px
}

/* CTA */
.dmxl-cta {
  background: linear-gradient(135deg, #2575fc, #6a11cb);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.dmxl-btn {
  padding: 12px 30px;
  border-radius: 30px;
  background: #fff;
  color: #6a11cb;
  text-decoration: none;
  display: inline-block;
  margin-top: 15px;
}

.dmxl-btn:hover {
  background: #6a11cb;
  color: #fff;
}

/* ANIMATION */
.dmxl-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: 1s
}

.dmxl-fade.show {
  opacity: 1;
  transform: translateY(0)
}

@media(max-width:768px) {
  .dmxl-hero h1 {
    font-size: 30px
  }
}

.dmxl-cta h2,
.dmxl-cta p {

  color: #fff;
}


/* =========================
   PREMIUM SEO + AEO CSS
========================= */
.seoaeop-container {
  font-family: 'Poppins', sans-serif;
  color: #2b2b2b;
  line-height: 1.9
}

/* HERO */
.seoaeop-hero {
  padding: 120px 20px;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, #00c6ff, #0072ff, #00f2fe);
  background-size: 300% 300%;
  animation: seoaeopGradient 5s ease infinite;
}

@keyframes seoaeopGradient {
  0% {
    background-position: 0% 50%
  }

  50% {
    background-position: 100% 50%
  }

  100% {
    background-position: 0% 50%
  }
}

.seoaeop-hero h1 {
  font-size: 48px;
  margin-bottom: 15px;
}

.seoaeop-hero p {
  max-width: 850px;
  margin: auto;
  font-size: 18px;
  opacity: 0.95
}

/* SECTION */
.seoaeop-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
}

.seoaeop-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.seoaeop-section h3 {
  font-size: 24px;
  margin-top: 25px;
}

.seoaeop-section p {
  margin-bottom: 20px;
  color: #555
}

/* GRID */
.seoaeop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px
}

/* GLASS CARD */
.seoaeop-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  padding: 25px;
  border-radius: 18px;
  transition: 0.4s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
}

.seoaeop-card i {
  font-size: 32px;
  margin-bottom: 15px;
  color: #0072ff;
}

.seoaeop-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* HIGHLIGHT BOX */
.seoaeop-highlight {
  background: linear-gradient(135deg, #0072ff, #00c6ff);
  color: #fff;
  padding: 30px;
  border-radius: 15px;
  margin-top: 20px;
}

/* FAQ */
.seoaeop-faq-item {
  border-bottom: 1px solid #ddd
}

.seoaeop-faq-question {
  cursor: pointer;
  padding: 18px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
}

.seoaeop-faq-answer {
  display: none;
  padding: 0 18px 18px;
  color: #555;
}

/* CTA */
.seoaeop-cta {
  background: linear-gradient(135deg, #0072ff, #00c6ff);
  color: #fff;
  text-align: center;
  padding: 90px 20px;
}

.seoaeop-btn {
  padding: 14px 35px;
  border-radius: 30px;
  background: #fff;
  color: #0072ff;
  text-decoration: none;
  display: inline-block;
  margin-top: 20px;
  font-weight: 600;
  transition: 0.3s;
}

.seoaeop-btn:hover {
  background: #eee;
  color: #000;
}

/* ANIMATION */
.seoaeop-fade {
  opacity: 0;
  transform: translateY(40px);
  transition: 1s
}

.seoaeop-fade.show {
  opacity: 1;
  transform: translateY(0)
}

@media(max-width:768px) {
  .seoaeop-hero h1 {
    font-size: 32px
  }
}

.seoaeop-hero h1,
.seoaeop-hero p,
.seoaeop-cta h2,
.seoaeop-cta p {
  color: #fff;
}


/* =========================
   WEBSITE DEVELOPMENT PREMIUM CSS
========================= */
.wdxp-container {
  font-family: 'Poppins', sans-serif;
  color: #2b2b2b;
  line-height: 1.9
}

/* HERO */
.wdxp-hero {
  padding: 120px 20px;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, #ff7e5f, #feb47b, #ff6a00);
  background-size: 300% 300%;
  animation: wdxpGradient 5s ease infinite;
}

@keyframes wdxpGradient {
  0% {
    background-position: 0% 50%
  }

  50% {
    background-position: 100% 50%
  }

  100% {
    background-position: 0% 50%
  }
}

.wdxp-hero h1 {
  font-size: 48px;
}

.wdxp-hero p {
  max-width: 850px;
  margin: auto
}

/* SECTION */
.wdxp-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
}

.wdxp-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.wdxp-section p {
  margin-bottom: 20px;
  color: #555
}

/* GRID */
.wdxp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px
}

/* CARD */
.wdxp-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  padding: 25px;
  border-radius: 18px;
  transition: 0.4s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.wdxp-card i {
  font-size: 30px;
  color: #ff6a00;
  margin-bottom: 15px;
}

.wdxp-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* TECH ICONS */
.wdxp-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.wdxp-tech div {
  background: #fff;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.wdxp-tech div:hover {
  transform: scale(1.1)
}

/* FAQ */
.wdxp-faq-item {
  border-bottom: 1px solid #ddd
}

.wdxp-faq-question {
  cursor: pointer;
  padding: 18px;
  display: flex;
  justify-content: space-between;
  font-weight: 600;
}

.wdxp-faq-answer {
  display: none;
  padding: 0 18px 18px
}

/* CTA */
.wdxp-cta {
  background: linear-gradient(135deg, #ff6a00, #ff7e5f);
  color: #fff;
  text-align: center;
  padding: 90px 20px;
}

.wdxp-btn {
  padding: 14px 35px;
  border-radius: 30px;
  background: #fff;
  color: #ff6a00;
  text-decoration: none;
  margin-top: 20px;
  display: inline-block;
}

.wdxp-btn:hover {
  background: #f54e25;
  color: #fff;
}

/* ANIMATION */
.wdxp-fade {
  opacity: 0;
  transform: translateY(40px);
  transition: 1s
}

.wdxp-fade.show {
  opacity: 1;
  transform: translateY(0)
}

@media(max-width:768px) {
  .wdxp-hero h1 {
    font-size: 32px
  }
}


.wdxp-hero h1,
.wdxp-hero p,
.wdxp-cta h2,
.wdxp-cta p {
  color: #fff;
}


/* =========================
   SMM PREMIUM CSS
========================= */
.smmxp-container {
  font-family: 'Poppins', sans-serif;
  color: #2b2b2b;
  line-height: 1.9
}

/* HERO */
.smmxp-hero {
  padding: 120px 20px;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, #ff416c, #ff4b2b, #ff9068);
  background-size: 300% 300%;
  animation: smmxpGradient 5s ease infinite;
}

@keyframes smmxpGradient {
  0% {
    background-position: 0% 50%
  }

  50% {
    background-position: 100% 50%
  }

  100% {
    background-position: 0% 50%
  }
}

.smmxp-hero h1 {
  font-size: 46px;
}

.smmxp-hero p {
  max-width: 800px;
  margin: auto
}

/* SECTION */
.smmxp-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
}

.smmxp-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.smmxp-section p {
  margin-bottom: 20px;
  color: #555
}

/* GRID */
.smmxp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px
}

/* CARD */
.smmxp-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  padding: 25px;
  border-radius: 18px;
  transition: 0.4s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.smmxp-card i {
  font-size: 32px;
  margin-bottom: 15px;
  color: #ff416c;
}

.smmxp-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* PLATFORM */
.smmxp-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.smmxp-platforms div {
  background: #fff;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.smmxp-platforms div:hover {
  transform: scale(1.1)
}

/* FAQ */
.smmxp-faq-item {
  border-bottom: 1px solid #ddd
}

.smmxp-faq-question {
  cursor: pointer;
  padding: 18px;
  display: flex;
  justify-content: space-between;
  font-weight: 600;
}

.smmxp-faq-answer {
  display: none;
  padding: 0 18px 18px
}

/* CTA */
.smmxp-cta {
  background: linear-gradient(135deg, #ff416c, #ff4b2b);
  color: #fff;
  text-align: center;
  padding: 90px 20px;
}

.smmxp-btn {
  padding: 14px 35px;
  border-radius: 30px;
  background: #fff;
  color: #ff416c;
  text-decoration: none;
  margin-top: 20px;
  display: inline-block;
}

.smmxp-btn:hover {
  background: #f19e3f;
  color: #fff;
}

/* ANIMATION */
.smmxp-fade {
  opacity: 0;
  transform: translateY(40px);
  transition: 1s
}

.smmxp-fade.show {
  opacity: 1;
  transform: translateY(0)
}

@media(max-width:768px) {
  .smmxp-hero h1 {
    font-size: 30px
  }
}


.smmxp-hero h1,
.smmxp-hero p,
.smmxp-cta h2,
.smmxp-cta p {
  color: #fff;
}


/* =========================
   WEBSITE DESIGNING PREMIUM CSS
========================= */
.wdsgxp-container {
  font-family: 'Poppins', sans-serif;
  color: #2b2b2b;
  line-height: 1.9
}

/* HERO */
.wdsgxp-hero {
  padding: 120px 20px;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, #8e2de2, #4a00e0, #6a11cb);
  background-size: 300% 300%;
  animation: wdsgxpGradient 5s ease infinite;
}

@keyframes wdsgxpGradient {
  0% {
    background-position: 0% 50%
  }

  50% {
    background-position: 100% 50%
  }

  100% {
    background-position: 0% 50%
  }
}

.wdsgxp-hero h1 {
  font-size: 48px;
}

.wdsgxp-hero p {
  max-width: 850px;
  margin: auto
}

/* SECTION */
.wdsgxp-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
}

.wdsgxp-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.wdsgxp-section h3 {
  font-size: 24px;
  margin-top: 25px;
}

.wdsgxp-section p {
  margin-bottom: 20px;
  color: #555
}

/* GRID */
.wdsgxp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px
}

/* CARD */
.wdsgxp-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  padding: 25px;
  border-radius: 18px;
  transition: 0.4s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.wdsgxp-card i {
  font-size: 32px;
  margin-bottom: 15px;
  color: #6a11cb;
}

.wdsgxp-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* TOOLS */
.wdsgxp-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.wdsgxp-tools div {
  background: #fff;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.wdsgxp-tools div:hover {
  transform: scale(1.1)
}

/* FAQ */
.wdsgxp-faq-item {
  border-bottom: 1px solid #ddd
}

.wdsgxp-faq-question {
  cursor: pointer;
  padding: 18px;
  display: flex;
  justify-content: space-between;
  font-weight: 600;
}

.wdsgxp-faq-answer {
  display: none;
  padding: 0 18px 18px
}

/* CTA */
.wdsgxp-cta {
  background: linear-gradient(135deg, #4a00e0, #8e2de2);
  color: #fff;
  text-align: center;
  padding: 90px 20px;
}

.wdsgxp-btn {
  padding: 14px 35px;
  border-radius: 30px;
  background: #fff;
  color: #4a00e0;
  text-decoration: none;
  margin-top: 20px;
  display: inline-block;
}

.wdsgxp-btn:hover {
  background: #1b024d;
  color: #fff;
}

/* ANIMATION */
.wdsgxp-fade {
  opacity: 0;
  transform: translateY(40px);
  transition: 1s
}

.wdsgxp-fade.show {
  opacity: 1;
  transform: translateY(0)
}

@media(max-width:768px) {
  .wdsgxp-hero h1 {
    font-size: 32px
  }
}


.wdsgxp-hero h1,
.wdsgxp-hero p,
.wdsgxp-cta h2,
.wdsgxp-cta p {
  color: #fff;
}


/* =========================
   INFLUENCER MARKETING CSS
========================= */
.inflxp-container {
  font-family: 'Poppins', sans-serif;
  color: #2b2b2b;
  line-height: 1.9
}

/* HERO */

/* =========================
   INFLUENCER PREMIUM CSS
========================= */

.inflxpp-container {
  font-family: 'Poppins', sans-serif;
  color: #2b2b2b;
  line-height: 1.9
}

/* HERO */
.inflxpp-hero {
  padding: 120px 20px;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, #ff0080, #7928ca, #2af598);
  background-size: 300% 300%;
  animation: gradientMove 5s infinite;
}

@keyframes gradientMove {
  0% {
    background-position: 0%
  }

  50% {
    background-position: 100%
  }

  100% {
    background-position: 0%
  }
}

.inflxpp-hero h1 {
  font-size: 50px;
}

.inflxpp-hero p {
  max-width: 850px;
  margin: auto
}

/* SECTION */
.inflxpp-section {
  padding: 20px 20px;
  max-width: 1200px;
  margin: auto
}

.inflxpp-section h2 {
  font-size: 36px;
  margin-bottom: 20px
}

/* GRID */
.inflxpp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px
}

/* CARD */
.inflxpp-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  padding: 25px;
  border-radius: 18px;
  transition: 0.4s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.inflxpp-card i {
  font-size: 35px;
  margin-bottom: 15px;
  color: #ff0080;
}

.inflxpp-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

/* ICON LIST */
.inflxpp-list li {
  margin-bottom: 10px;
}

.inflxpp-list i {
  color: #ff0080;
  margin-right: 10px;
}

/* CTA */
.inflxpp-cta {
  background: linear-gradient(135deg, #7928ca, #ff0080);
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

.inflxpp-btn {
  padding: 14px 35px;
  border-radius: 30px;
  background: #fff;
  color: #ff0080;
  text-decoration: none;
  display: inline-block;
  margin-top: 20px;
}

/* FAQ */
.inflxpp-faq-item {
  border-bottom: 1px solid #ddd
}

.inflxpp-faq-question {
  cursor: pointer;
  padding: 18px;
  display: flex;
  justify-content: space-between;
}

.inflxpp-faq-answer {
  display: none;
  padding: 0 18px 18px
}


.inflxpp-hero h1,
.inflxpp-hero p,
.inflxpp-cta h2,
.inflxpp-cta p {
  color: #fff;
}