/* =====================================
   DIGITAL MARKETING HERO
===================================== */

.digital-hero {
  width: 100%;
  min-height: 100vh;
  background: radial-gradient(circle at top, #111, #000);

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
  padding: 120px 20px;
}

/* Hero Content */
.hero-content {
  max-width: 900px;
}

/* Tag */
.hero-tag {
  display: inline-block;
  padding: 8px 22px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  font-size: 14px;
  color: white;
  margin-bottom: 25px;
}

/* Heading */
.hero-content h1 {
  font-size: 62px;
  font-weight: bold;
  color: white;
  line-height: 1.2;
}

/* Highlight Gradient */
.hero-content h1 span {
  background: linear-gradient(90deg, #00e5ff, #00ffcc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Paragraph */
.hero-content p {
  margin-top: 18px;
  font-size: 16px;
  color: #bbb;
  line-height: 1.7;
}

/* Buttons */
.hero-buttons {
  margin-top: 45px;
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

/* Primary Button */
.btn-primary {
  padding: 14px 35px;
  background: orange;
  color: black;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0px 0px 25px rgba(255, 165, 0, 0.4);
}

.btn-primary:hover {
  background: white;
}

/* Secondary Button */
.btn-secondary {
  padding: 14px 20px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn-secondary:hover {
  color: orange;
}

/* ===============================
   STATS ROW
=============================== */

.stats-row {
  width: 100%;
  max-width: 950px;
  margin-top: 90px;

  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.stat-box {
  flex: 1;
  min-width: 180px;
}

.stat-box h2 {
  font-size: 34px;
  font-weight: bold;
  color: #00ffcc;
}

.stat-box p {
  margin-top: 8px;
  font-size: 14px;
  color: #aaa;
}


/* ✅ Mobile Responsive */
@media (max-width: 768px) {

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .stats-row {
    margin-top: 60px;
    flex-direction: column;
    gap: 25px;
  }

}


/* ==============================
   WHY CHOOSE DIGITAL MARKETING
============================== */

.dm-why {
  padding: 100px 20px;
  background: radial-gradient(circle at top, #0e1635, #05050b);
}

.dm-why-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.dm-why-left h2 {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.dm-why-left h2 span {
  color: #00ff99;
}

.dm-why-left p {
  margin-top: 15px;
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

.dm-point {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.dm-point i {
  font-size: 18px;
  color: #00ff99;
  margin-top: 5px;
}

.dm-point h4 {
  font-size: 16px;
  color: #fff;
  margin-bottom: 5px;
}

.dm-point p {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}

/* Right Box */
.dm-performance-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 25px;
}

/* Tabs */
.dm-tabs {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.dm-tab {
  border: none;
  padding: 8px 16px;
  border-radius: 10px;
  background: transparent;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  font-size: 13px;
}

.dm-tab.active {
  background: #00ff99;
  color: #000;
  font-weight: 600;
}

/* Bars */
.dm-bar {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #fff;
  margin-top: 18px;
}

.dm-bar span {
  color: #00ff99;
  font-weight: 600;
}

.dm-line {
  height: 4px;
  background: rgba(0,255,153,0.25);
  border-radius: 6px;
  margin-top: 8px;
}

/* Tab Switching */
.dm-tab-content {
  display: none;
}

.dm-tab-content.active {
  display: block;
}

/* Responsive */
@media(max-width: 900px) {
  .dm-why-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .dm-point {
    justify-content: center;
  }
}


.dm-progress {
  margin-bottom: 18px;
}

.dm-line {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 8px;
}

.dm-fill {
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(90deg, #00ffd5, #00cfff);
  transition: width 0.6s ease;
}





/* ==============================
   DIGITAL MARKETING SERVICES SECTION
============================== */


.dm-services {
  padding: 100px 0;
  background: radial-gradient(circle at top, #0b1a2a, #05070d);
}

/* Center Container */
.dm-services-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 8%;

  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 70px;
  align-items: center;
}

/* Left Heading */
.dm-services-left h2 {
  font-size: 48px;
  font-weight: 800;
  color: white;
  line-height: 1.2;
}

.dm-services-left h2 span {
  color: #00cfff;
}

.dm-services-left h2 .green {
  color: #00ff99;
}

/* Paragraph */
.dm-services-left p {
  margin-top: 18px;
  font-size: 15px;
  line-height: 1.7;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.65);
}

/* Service Points */
.dm-service-point {
  display: flex;
  gap: 18px;
  margin-top: 32px;
  align-items: flex-start;
}

.dm-service-point h4 {
  font-size: 17px;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
}

.dm-service-point p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
  max-width: 420px;
}

/* Icon Box */
.dm-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

/* Colors */
.dm-icon-box.blue {
  background: rgba(0, 207, 255, 0.15);
  color: #00cfff;
}

.dm-icon-box.orange {
  background: rgba(255, 165, 0, 0.15);
  color: orange;
}

.dm-icon-box.green {
  background: rgba(0, 255, 150, 0.15);
  color: #00ff99;
}

/* Right Image Card */
.dm-image-card {
  width: 100%;
  max-width: 520px;

  background: rgba(255, 255, 255, 0.06);
  padding: 20px;
  border-radius: 20px;

  box-shadow: 0 0 50px rgba(0, 0, 0, 0.45);

  margin-left: auto;
}

/* Image */
.dm-image-card img {
  width: 100%;
  border-radius: 16px;
  display: block;
}


.dm-image-card {
  position: relative;
}

.dm-image-card::before {
  content: "";
  position: absolute;
  inset: -15px;
  background: rgba(0, 255, 200, 0.12);
  filter: blur(50px);
  z-index: -1;
  border-radius: 25px;
}

/* ✅ Responsive Fix */
@media (max-width: 900px) {

  .dm-services-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .dm-services-left p {
    margin-left: auto;
    margin-right: auto;
  }

  .dm-service-point {
    justify-content: center;
    text-align: left;
  }

  .dm-image-card {
    margin: 50px auto 0;
  }
}



/* ==============================
   DIGITAL MARKETING SERVICES GRID (FIXED CENTER)
============================== */

.dm-grid-services {
  padding: 110px 0;
  background: radial-gradient(circle at top, #05070d, #000);
}

/* Main Container FIX */
.dm-grid-container {
  width: 100%;
  max-width: 1250px;   /* Pure section center रहेगा */
  margin: auto;
  padding: 0 25px;
}

/* Heading Center */
.dm-grid-heading {
  text-align: center;
  max-width: 850px;
  margin: auto;
}

.dm-grid-heading h2 {
  font-size: 46px;
  font-weight: 800;
  color: white;
  line-height: 1.3;
}

.dm-grid-heading h2 span {
  color: #00cfff;
}

.dm-grid-heading p {
  margin-top: 18px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
}

/* Cards Grid PERFECT CENTER */
.dm-grid-cards {
  margin-top: 70px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;

  justify-content: center; /* FIX */
}

/* Service Card */
.dm-service-box {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 35px 28px;

  box-shadow: 0 0 35px rgba(0, 0, 0, 0.55);
  transition: 0.35s ease;
}

.dm-service-box:hover {
  transform: translateY(-10px);
  border: 1px solid rgba(0, 255, 200, 0.35);
  box-shadow: 0 0 55px rgba(0, 255, 200, 0.25);
}

/* Card Title */
.dm-service-box h3 {
  font-size: 17px;
  font-weight: 700;
  color: white;
  margin-bottom: 14px;
}

/* Paragraph */
.dm-service-box p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 18px;
}

/* Tick List */
.dm-service-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dm-service-box ul li {
  font-size: 13.5px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.75);
}

/* Responsive Fix */
@media (max-width: 1000px) {
  .dm-grid-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .dm-grid-cards {
    grid-template-columns: 1fr;
  }

  .dm-grid-heading h2 {
    font-size: 34px;
  }
}

/* ==============================
   WHY WE ARE BEST PROCESS SECTION
============================== */

.dm-process {
  padding: 120px 0;
  background: radial-gradient(circle at top, #05070d, #000);
}

.dm-process-container {
  max-width: 1300px;
  margin: auto;
  padding: 0 25px;
}

/* Heading */
.dm-process-heading {
  text-align: center;
  max-width: 850px;
  margin: auto;
}

.dm-process-heading h2 {
  font-size: 46px;
  font-weight: 800;
  color: white;
  line-height: 1.3;
}

.dm-process-heading h2 span {
  color: #00ff99;
}

.dm-process-heading h2 .blue {
  color: #00cfff;
}

.dm-process-heading p {
  margin-top: 15px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
}

/* Cards Grid */
.dm-process-cards {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
}

/* Box */
.dm-process-box {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  padding: 35px 25px;
  text-align: center;

  box-shadow: 0 0 35px rgba(0, 0, 0, 0.55);
  transition: 0.35s ease;
  position: relative;
}

.dm-process-box:hover {
  transform: translateY(-10px);
  border: 1px solid rgba(0, 255, 200, 0.35);
}

/* Step Bubble */
.dm-step {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #00cfff;
  color: black;
  font-size: 13px;
  font-weight: 700;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Icon */
.dm-process-box i {
  font-size: 28px;
  margin-top: 20px;
  margin-bottom: 18px;
  color: #00ff99;
}

/* Title */
.dm-process-box h3 {
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
}

/* Text */
.dm-process-box p {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 18px;
}

/* List */
.dm-process-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dm-process-box ul li {
  font-size: 13px;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.75);
}

/* =========================
   RESPONSIVE FIX
========================= */

/* Tablet */
@media (max-width: 1100px) {
  .dm-process-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 650px) {
  .dm-process-heading h2 {
    font-size: 32px;
  }

  .dm-process-cards {
    grid-template-columns: 1fr;
  }
}

/* ==============================
   MARKETING TOOLS SECTION
============================== */

.dm-tools {
  padding: 120px 8%;
  background: radial-gradient(circle at top, #05070d, #000);
  text-align: center;
}

.dm-tools-container {
  max-width: 1300px;
  margin: auto;
}

/* Heading */
.dm-tools-heading h2 {
  font-size: 44px;
  font-weight: 800;
  color: white;
}

.dm-tools-heading h2 span {
  color: #00cfff;
}

.dm-tools-heading p {
  margin-top: 15px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* Grid */
.dm-tools-grid {
  margin-top: 70px;

  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
  justify-content: center;
}

/* Tool Card */
.dm-tool-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 28px 15px;
  border: 1px solid rgba(255, 255, 255, 0.06);

  transition: 0.35s ease;
}

.dm-tool-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 255, 200, 0.25);
  box-shadow: 0 0 25px rgba(0, 255, 200, 0.15);
}

/* Logo Text */
.dm-tool-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 6px;
}

/* Tool Name */
.dm-tool-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}

/* Colors */
.blue { color: #00cfff; }
.green { color: #00ff99; }
.yellow { color: gold; }
.orange { color: orange; }
.red { color: #ff4d4d; }
.pink { color: #ff5ec4; }
.cyan { color: #00ffee; }
.white { color: #ffffff; }

/* Responsive */
@media (max-width: 1100px) {
  .dm-tools-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 650px) {
  .dm-tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dm-tools-heading h2 {
    font-size: 32px;
  }
}

/* ==============================
   MARKETING SUCCESS STORIES
============================== */

.dm-success {
  padding: 120px 8%;
  background: radial-gradient(circle at top, #05070d, #000);
}

.dm-success-container {
  max-width: 1300px;
  margin: auto;
}

/* Heading */
.dm-success-heading {
  text-align: center;
  max-width: 750px;
  margin: auto;
}

.dm-success-heading h2 {
  font-size: 46px;
  font-weight: 800;
  color: white;
}

.dm-success-heading h2 span {
  color: #00cfff;
}

.dm-success-heading p {
  margin-top: 16px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

/* Cards Layout */
.dm-success-cards {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}

/* Card Base */
.dm-success-card {
  border-radius: 22px;
  padding: 45px 40px;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
}

/* Icon */
.dm-card-icon {
  font-size: 22px;
  color: white;
  margin-bottom: 20px;
  opacity: 0.9;
}

/* Titles */
.dm-success-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
}

.dm-success-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Subheadings */
.dm-success-card h4 {
  font-size: 14px;
  font-weight: 700;
  margin: 18px 0 10px;
  color: rgba(255, 255, 255, 0.9);
}

/* Lists */
.dm-success-card ul {
  padding-left: 18px;
  margin: 0;
}

.dm-success-card ul li {
  font-size: 13.5px;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.65);
}

/* Tags */
.dm-tags {
  margin-top: 22px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.dm-tags span {
  background: rgba(255, 255, 255, 0.12);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
}

/* Gradient Styles */
.blue-card {
  background: linear-gradient(
    135deg,
    rgba(0, 207, 255, 0.18),
    rgba(0, 0, 0, 0.85)
  );
}

.gold-card {
  background: linear-gradient(
    135deg,
    rgba(255, 200, 0, 0.18),
    rgba(0, 0, 0, 0.85)
  );
}

/* Responsive */
@media (max-width: 950px) {
  .dm-success-cards {
    grid-template-columns: 1fr;
  }

  .dm-success-card {
    padding: 35px 28px;
  }
}

/* ==============================
   FINAL CTA SECTION
============================== */

.dm-final-cta {
  padding: 120px 8%;
  background: radial-gradient(circle at top, #121a2d, #000);
  text-align: center;
}

.dm-final-container {
  max-width: 1100px;
  margin: auto;
}

/* Heading */
.dm-final-container h2 {
  font-size: 48px;
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
}

.dm-final-container h2 span {
  color: #00cfff;
}

/* Paragraph */
.dm-final-container p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
  max-width: 850px;
  margin: 10px auto;
}

/* CTA Cards */
.dm-cta-cards {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card Box */
.dm-cta-box {
  background: rgba(255, 255, 255, 0.06);
  padding: 35px 25px;
  border-radius: 18px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.55);
  transition: 0.35s ease;
}

.dm-cta-box:hover {
  transform: translateY(-10px);
  border: 1px solid rgba(0, 207, 255, 0.35);
}

/* Icons */
.dm-cta-box i {
  font-size: 22px;
  color: #00cfff;
  margin-bottom: 18px;
}

/* Card Title */
.dm-cta-box h3 {
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
}

/* Card Text */
.dm-cta-box p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.55);
}

/* Button */
.dm-cta-btn {
  margin-top: 60px;
}

.dm-cta-btn a {
  display: inline-block;
  padding: 16px 42px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 700;
  color: black;
  text-decoration: none;
  background: linear-gradient(90deg, #00ff99, #00cfff);
  box-shadow: 0 0 25px rgba(0, 255, 200, 0.4);
  transition: 0.3s ease;
}

.dm-cta-btn a:hover {
  transform: scale(1.05);
}

/* Footer Note */
.dm-cta-footer {
  margin-top: 50px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.dm-cta-footer span {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  opacity: 0.6;
}

/* Responsive */
@media (max-width: 950px) {
  .dm-cta-cards {
    grid-template-columns: 1fr;
  }

  .dm-final-container h2 {
    font-size: 36px;
  }
}

html {
  scroll-behavior: smooth;
}