/* =====================================
   E-COMMERCE DEVELOPMENT HERO
===================================== */

.ecom-hero {
  width: 100%;
  min-height: 100vh;
  background: radial-gradient(circle at top, #111, #000);

  display: flex;
  justify-content: center;
  align-items: center;

  text-align: center;
  padding: 120px 20px;
}

.hero-content {
  max-width: 900px;
}

/* Tag */
.hero-tag {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  font-size: 14px;
  color: white;
  margin-bottom: 25px;
}

/* Heading */
.hero-content h1 {
  font-size: 60px;
  font-weight: bold;
  color: white;
  line-height: 1.2;
}

.hero-content h1 span {
  color: #00ff7f; /* Green Highlight */
}

/* 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;
}

.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;
}


/* ✅ Mobile Responsive */
@media (max-width: 768px) {

  .hero-content h1 {
    font-size: 34px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

}

/* ==============================
   ECOMMERCE STATS SECTION
============================== */

.eco-stats {
  padding: 70px 20px;
  background: transparent;
  text-align: center;
}

.eco-stats-container {
  max-width: 1100px;
  margin: auto;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.eco-stat-box h2 {
  font-size: 42px;
  font-weight: 800;
  color: #00cfff;
}

.eco-stat-box p {
  margin-top: 8px;
  font-size: 14px;
  color: #aaa;
}

/* Responsive */
@media (max-width: 900px) {
  .eco-stats-container {
    flex-direction: column;
    gap: 25px;
  }
}


/* ==============================
   WHY CHOOSE ECOMMERCE SECTION
============================== */

.eco-why {
  padding: 110px 20px;
  background: radial-gradient(circle at top, #050814, #000);
}

.eco-why-container {
  max-width: 1250px;
  margin: auto;

  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT SIDE */
.eco-left h2 {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
}

.eco-left h2 span {
  color: #7a5cff;
}

.eco-left p {
  color: #aaa;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 18px;
}

/* Points */
.eco-point {
  margin-top: 25px;
}

.eco-point h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.eco-point p {
  font-size: 14px;
  color: #aaa;
}

/* RIGHT CODE BOX */
.eco-right {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 18px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Tabs */
.eco-tabs {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.eco-tab {
  background: transparent;
  border: none;
  color: #aaa;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.eco-tab.active {
  background: rgba(122, 92, 255, 0.25);
  color: #fff;
}

/* Code Box */
.eco-codebox {
  background: rgba(0, 0, 0, 0.35);
  padding: 20px;
  border-radius: 14px;
  min-height: 260px;
}

.eco-code {
  display: none;
  font-size: 13px;
  color: #ddd;
  line-height: 1.6;
  white-space: pre-wrap;
}

.eco-code.active {
  display: block;
}

/* Responsive */
@media (max-width: 900px) {
  .eco-why-container {
    grid-template-columns: 1fr;
  }
}

.eco-left h2 i {
  color: #00ff99;
  font-size: 30px;
  margin-right: 10px;
}


/* ==============================
   COMPLETE E-COMMERCE SOLUTIONS
============================== */

.eco-solutions {
  padding: 110px 20px;
  background: radial-gradient(circle at top, #050814, #000);
}

.eco-solutions-container {
  max-width: 1250px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 70px;
  align-items: center;
}

/* LEFT */
.eco-solutions-left h2 {
  font-size: 46px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.eco-solutions-left h2 span {
  color: #a855f7;
}

.eco-solutions-left p {
  margin-top: 18px;
  font-size: 15px;
  color: #aaa;
  line-height: 1.7;
}

/* Feature Points */
.eco-point {
  display: flex;
  gap: 15px;
  margin-top: 28px;
  align-items: flex-start;
}

.eco-point i {
  font-size: 20px;
  color: #00ffcc;
  margin-top: 6px;
}

.eco-point h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.eco-point p {
  font-size: 14px;
  margin-top: 6px;
  color: #aaa;
}

/* RIGHT IMAGE */
.eco-solutions-right img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.6);
}

/* Responsive */
@media (max-width: 900px) {
  .eco-solutions-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .eco-point {
    justify-content: center;
    text-align: left;
  }
}


/* ==============================
   ECOM SERVICES SECTION
============================== */

.ecom-services {
  padding: 120px 20px;
  background: radial-gradient(circle at top, #050814, #000);
}

.ecom-services-container {
  max-width: 1250px;
  margin: auto;
}

.ecom-services-heading {
  text-align: center;
  max-width: 850px;
  margin: auto;
}

.ecom-services-heading h2 {
  font-size: 44px;
  font-weight: 800;
  color: #fff;
}

.ecom-services-heading h2 span {
  color: #a855f7;
}

.ecom-services-heading p {
  margin-top: 14px;
  font-size: 15px;
  color: #aaa;
  line-height: 1.7;
}

/* Grid */
.ecom-services-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Card */
.ecom-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 18px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: 0.3s;
}

.ecom-card:hover {
  transform: translateY(-8px);
  border-color: rgba(168, 85, 247, 0.4);
}

/* Icon */
.ecom-icon {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  background: rgba(0, 255, 200, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.ecom-icon i {
  font-size: 20px;
  color: #00ffcc;
}

/* Text */
.ecom-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
}

.ecom-card p {
  margin-top: 10px;
  font-size: 14px;
  color: #aaa;
  line-height: 1.6;
}

/* List */
.ecom-card ul {
  margin-top: 15px;
  padding-left: 0;
  list-style: none;
}

.ecom-card ul li {
  font-size: 13px;
  color: #bbb;
  margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 1000px) {
  .ecom-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .ecom-services-grid {
    grid-template-columns: 1fr;
  }
}


/* ==============================
   ESSENTIAL FEATURES SECTION
============================== */

.essential-features {
  padding: 120px 20px;
  background: radial-gradient(circle at top, #050814, #000);
  text-align: center;
}

.features-container {
  max-width: 1250px;
  margin: auto;
}

/* Heading */
.features-heading h2 {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
}

.features-heading h2 span {
  color: #a855f7;
}

.features-heading p {
  max-width: 720px;
  margin: 18px auto 70px;
  font-size: 15px;
  color: #aaa;
  line-height: 1.7;
}

/* Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* Feature Card */
.feature-box {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 18px;
  padding: 28px 22px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: 0.3s ease;
  text-align: left;
}

.feature-box:hover {
  transform: translateY(-8px);
  border-color: rgba(168, 85, 247, 0.35);
}

/* Icon Box */
.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.feature-icon i {
  font-size: 18px;
  color: #fff;
}

/* Icon Colors */
.search { background: rgba(168, 85, 247, 0.25); }
.filter { background: rgba(59, 130, 246, 0.25); }
.reviews { background: rgba(245, 158, 11, 0.25); }
.wishlist { background: rgba(239, 68, 68, 0.25); }
.shipping { background: rgba(34, 197, 94, 0.25); }
.security { background: rgba(234, 179, 8, 0.25); }
.analytics { background: rgba(14, 165, 233, 0.25); }
.email { background: rgba(148, 163, 184, 0.25); }

/* Text */
.feature-box h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.feature-box p {
  font-size: 13px;
  color: #aaa;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1000px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* ==============================
   ECOM PROCESS SECTION
============================== */

.ecom-process {
  padding: 120px 20px;
  background: radial-gradient(circle at top, #050814, #000);
  text-align: center;
}

.process-container {
  max-width: 1250px;
  margin: auto;
}

/* Heading */
.process-heading h2 {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
}

.process-heading h2 span {
  color: #a855f7;
}

.process-heading p {
  max-width: 720px;
  margin: 18px auto 80px;
  font-size: 15px;
  color: #aaa;
  line-height: 1.7;
}

/* Steps Grid */
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 35px;
  justify-content: center;
}

/* Step Card */
.process-step {
  text-align: center;
  color: #fff;
}

/* Step Number */
.step-number {
  width: 34px;
  height: 34px;
  margin: auto;
  border-radius: 50%;
  background: rgba(168, 85, 247, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
}

/* Icon */
.step-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

/* Title */
.process-step h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
}

/* Description */
.process-step p {
  font-size: 13px;
  color: #aaa;
  line-height: 1.6;
  margin-bottom: 12px;
}

/* Small Text */
.process-step span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
}

/* Responsive */
@media (max-width: 1100px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 45px;
  }
}

@media (max-width: 600px) {
  .process-steps {
    grid-template-columns: 1fr;
  }
}

/* ==============================
   ECOM PLATFORMS SECTION
============================== */

.ecom-platforms {
  padding: 120px 20px;
  background: radial-gradient(circle at top, #050814, #000);
  text-align: center;
}

.platform-container {
  max-width: 1250px;
  margin: auto;
}

/* Heading */
.platform-heading h2 {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.platform-heading p {
  font-size: 14px;
  color: #aaa;
  margin-bottom: 70px;
}

/* Grid */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 22px;
  justify-content: center;
}

/* Card */
.platform-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 14px;
  padding: 22px 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: 0.3s ease;
}

.platform-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 255, 200, 0.2);
}

/* Icon Text */
.platform-card .icon {
  font-size: 20px;
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}

/* Platform Name */
.platform-card p {
  font-size: 13px;
  color: #ccc;
  font-weight: 500;
}

/* Colors */
.icon.green { color: #00ff99; }
.icon.blue { color: #3aa9ff; }
.icon.orange { color: #ff9f43; }
.icon.cyan { color: #00cfff; }
.icon.purple { color: #a855f7; }
.icon.red { color: #ff4d6d; }
.icon.yellow { color: #facc15; }
.icon.pink { color: #ff5cf4; }
.icon.lime { color: #7CFC00; }

/* Responsive */
@media (max-width: 1200px) {
  .platform-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 700px) {
  .platform-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ==============================
   ECOM PROJECTS SECTION
============================== */

.ecom-projects {
  padding: 120px 20px;
  background: radial-gradient(circle at top, #050814, #000);
}

.projects-container {
  max-width: 1250px;
  margin: auto;
}

/* Heading */
.projects-heading {
  text-align: center;
  margin-bottom: 70px;
}

.projects-heading h2 {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
}

.projects-heading p {
  font-size: 14px;
  color: #aaa;
  max-width: 750px;
  margin: 15px auto 0;
  line-height: 1.6;
}

/* Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}

/* Card */
.project-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: 0.3s ease;
}

.project-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 255, 200, 0.25);
}

/* Image */
.project-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* Content */
.project-content {
  padding: 25px;
}

.project-content h3 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 10px;
}

.project-content p {
  font-size: 14px;
  color: #bbb;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* Highlights */
.project-content h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.project-content ul {
  padding-left: 18px;
  margin-bottom: 18px;
}

.project-content ul li {
  font-size: 13px;
  color: #aaa;
  margin-bottom: 6px;
}

/* Tags */
.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
}

.project-tags span {
  background: rgba(255, 255, 255, 0.06);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  color: #00ffd5;
}

/* Result */
.project-result {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 900px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
}


/* ==============================
   FINAL CTA SECTION
============================== */

.final-cta {
  padding: 130px 20px;
  text-align: center;
  background: radial-gradient(circle at center, #2a1b5e, #050814);
}

.cta-container {
  max-width: 1100px;
  margin: auto;
}

/* Heading */
.final-cta h2 {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 15px;
}

.final-cta h2 span {
  color: #7b5cff;
}

.final-cta p {
  max-width: 750px;
  margin: auto;
  font-size: 14px;
  color: #bbb;
  line-height: 1.7;
}

/* Cards */
.cta-cards {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.cta-box {
  background: rgba(255, 255, 255, 0.05);
  padding: 35px 25px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.3s ease;
}

.cta-box:hover {
  transform: translateY(-8px);
  border-color: rgba(123, 92, 255, 0.4);
}

/* Icon */
.cta-icon {
  font-size: 28px;
  margin-bottom: 15px;
}

/* Text */
.cta-box h3 {
  font-size: 16px;
  color: #fff;
  margin-bottom: 10px;
}

.cta-box p {
  font-size: 13px;
  color: #aaa;
  line-height: 1.6;
}

/* Button */
.cta-btn {
  display: inline-block;
  margin-top: 60px;
  padding: 14px 40px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(90deg, #7b5cff, #ffcc33);
  transition: 0.3s ease;
}

.cta-btn:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 900px) {
  .cta-cards {
    grid-template-columns: 1fr;
  }
}


html {
  scroll-behavior: smooth;
}