/* =====================================
   WEB DEVELOPMENT PAGE HERO
===================================== */

.web-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: 100px 20px;
}

.hero-content {
  max-width: 850px;
}

/* Tag */
.hero-tag {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  font-size: 14px;
  color: white;
  margin-bottom: 25px;
}

/* Heading */
.hero-content h1 {
  font-size: 55px;
  font-weight: bold;
  color: white;
  line-height: 1.2;
}

.hero-content h1 span {
  background: linear-gradient(to right, #6a5cff, orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Paragraph */
.hero-content p {
  margin-top: 20px;
  font-size: 16px;
  color: #bbb;
  line-height: 1.6;
}

/* Buttons */
.hero-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Primary Button */
.btn-primary {
  padding: 14px 28px;
  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: 30px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

}


/* ==============================
   DEVELOPMENT STATS SECTION
============================== */

.dev-stats {
  padding: 80px 20px;
  background: #050505; /* dark */
  display: flex;
  justify-content: center;
}

.stats-container {
  width: 100%;
  max-width: 1100px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.stat-card {
  background: #0f0f0f;
  border-radius: 18px;
  padding: 35px 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: 0.3s;
}

.stat-card h2 {
  font-size: 38px;
  font-weight: bold;
  color: #00ffcc; /* reference */
  margin-bottom: 10px;
}

.stat-card p {
  font-size: 14px;
  color: #bbb;
}

/* Highlight Card */
.stat-card.highlight {
  border: 1px solid rgba(0, 255, 200, 0.4);
  box-shadow: 0 0 18px rgba(0, 255, 200, 0.15);
}

/* Hover Effect */
.stat-card:hover {
  transform: translateY(-6px);
}

/* Responsive */
@media (max-width: 900px) {
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .stats-container {
    grid-template-columns: 1fr;
  }
}


/* ==============================
   WHY CHOOSE SECTION
============================== */

.why-choose {
  padding: 90px 20px;
  background: #070b12; /* हल्का अलग dark */
}

.why-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT SIDE */
.why-left h2 {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.why-left h2 span {
  color: #00ffcc;
}

.why-left p {
  margin: 18px 0 35px;
  color: #bbb;
  font-size: 15px;
  max-width: 500px;
}

.why-point {
  margin-bottom: 25px;
}

.why-point h4 {
  font-size: 16px;
  color: #fff;
  margin-bottom: 6px;
}

.why-point p {
  font-size: 14px;
  color: #999;
  line-height: 1.6;
}

/* RIGHT SIDE CODE BOX */
.why-right {
  background: #0d111a;
  border-radius: 20px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Tabs */
.code-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
}

.tab-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 18px;
  border-radius: 20px;
  cursor: pointer;
  color: #bbb;
  font-size: 14px;
  transition: 0.3s;
}

.tab-btn.active {
  background: #5a4bff;
  color: #fff;
  border-color: transparent;
}

/* Code Box */
.code-box {
  background: #05070d;
  border-radius: 15px;
  padding: 18px;
  min-height: 260px;
}

.code-content {
  display: none;
  font-size: 13px;
  color: #00ffcc;
  white-space: pre-wrap;
}

.code-content.active {
  display: block;
}

/* Responsive */
@media (max-width: 900px) {
  .why-container {
    grid-template-columns: 1fr;
  }
}



/* ==============================
   PROFESSIONAL SERVICES SECTION
============================== */

.pro-services {
  padding: 100px 20px;
  background: #05070d;
}

.pro-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* LEFT SIDE */
.pro-left h2 {
  font-size: 44px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.pro-left h2 span {
  color: #8a5cff;
}

.pro-left h2 .blue {
  color: #00cfff;
}

.pro-left p {
  margin: 18px 0 35px;
  font-size: 15px;
  color: #aaa;
  max-width: 520px;
  line-height: 1.7;
}

.pro-point {
  margin-bottom: 25px;
}

.pro-point h4 {
  font-size: 16px;
  color: #fff;
  margin-bottom: 6px;
}

.pro-point p {
  font-size: 14px;
  color: #888;
  line-height: 1.6;
}

/* RIGHT IMAGE CARD */
.pro-image-box {
  background: #0d111a;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 30px rgba(0, 255, 200, 0.08);
}

.pro-image-box img {
  width: 100%;
  border-radius: 15px;
  display: block;
}

/* Responsive */
@media (max-width: 900px) {
  .pro-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .pro-left p {
    margin: auto;
  }
}

/* ==============================
   WEBSITE DEVELOPMENT SOLUTIONS
============================== */

.dev-solutions {
  padding: 100px 20px;
  background: #05070d;
}

.dev-container {
  max-width: 1200px;
  margin: auto;
}

/* Heading */
.dev-heading {
  text-align: center;
  margin-bottom: 60px;
}

.dev-heading h2 {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
}

.dev-heading h2 span {
  color: #8a5cff;
}

.dev-heading p {
  margin-top: 15px;
  color: #999;
  font-size: 15px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* Grid */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.solution-card {
  background: #0d111a;
  border-radius: 18px;
  padding: 35px 28px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 255, 200, 0.3);
}

/* Icon */
.icon-box {
  width: 55px;
  height: 55px;
  background: rgba(138, 92, 255, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}

/* Title */
.solution-card h3 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 12px;
}

/* Text */
.solution-card p {
  font-size: 14px;
  color: #888;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* Checklist */
.solution-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.solution-card ul li {
  font-size: 13.5px;
  color: #00ffb3;
  margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 950px) {
  .solution-grid {
    grid-template-columns: 1fr;
  }

  .solution-card {
    text-align: center;
  }

  .icon-box {
    margin: auto;
    margin-bottom: 18px;
  }
}


/* ==============================
   WEBSITE DEVELOPMENT PROCESS
============================== */

.dev-process {
  padding: 110px 20px;
  background: #05070d;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
  margin-top: 60px;
}

/* Card */
.process-card {
  background: #0d111a;
  border-radius: 18px;
  padding: 40px 22px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
  transition: 0.3s ease;
}

.process-card:hover {
  transform: translateY(-10px);
  border-color: rgba(138, 92, 255, 0.4);
}

/* Step Circle */
.step-circle {
  width: 38px;
  height: 38px;
  background: #8a5cff;
  border-radius: 50%;
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 15px;
}

/* Title */
.process-card h3 {
  margin-top: 25px;
  font-size: 16px;
  color: #fff;
  margin-bottom: 15px;
}

/* Paragraph */
.process-card p {
  font-size: 13.5px;
  color: #999;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* Bullet List */
.process-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.process-card ul li {
  font-size: 13px;
  color: #00ffb3;
  margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 1200px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}



/* ==============================
   TECHNOLOGY STACK SECTION
============================== */

.tech-stack {
  padding: 110px 20px;

  /* ✅ Slight lighter shade (rule follow) */
  background: #070a12;
}

/* Grid */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
  margin-top: 60px;
}

/* Card Base */
.tech-card {
  height: 95px;
  border-radius: 16px;
  font-size: 26px;
  font-weight: bold;
  color: #fff;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  transition: 0.3s ease;
  cursor: pointer;
}

.tech-card span {
  font-size: 12px;
  font-weight: 400;
  margin-top: 6px;
  opacity: 0.9;
}

/* Hover */
.tech-card:hover {
  transform: translateY(-8px) scale(1.03);
}

/* Individual Colors */
.html { background: linear-gradient(135deg, #d9a15f, #b57a2f); }
.css { background: linear-gradient(135deg, #007bff, #004aad); }
.js { background: linear-gradient(135deg, #6a9b00, #4c6f00); }
.react { background: linear-gradient(135deg, #00c6ff, #0072ff); }
.vue { background: linear-gradient(135deg, #3ddc97, #1fa86a); }
.angular { background: linear-gradient(135deg, #ff416c, #ff0033); }

.node { background: linear-gradient(135deg, #4caf50, #2e7d32); }
.php { background: linear-gradient(135deg, #6a5acd, #483d8b); }
.laravel { background: linear-gradient(135deg, #ff4b2b, #ff416c); }
.wp { background: linear-gradient(135deg, #0099cc, #006699); }
.mysql { background: linear-gradient(135deg, #00bcd4, #007c91); }
.mongo { background: linear-gradient(135deg, #00c853, #009624); }

.aws { background: linear-gradient(135deg, #ff9800, #e65100); }
.docker { background: linear-gradient(135deg, #2196f3, #0d47a1); }
.git { background: linear-gradient(135deg, #ff7043, #d84315); }
.figma { background: linear-gradient(135deg, #a855f7, #ec4899); }
.xd { background: linear-gradient(135deg, #d946ef, #9333ea); }
.ps { background: linear-gradient(135deg, #03a9f4, #01579b); }

/* Responsive */
@media (max-width: 1200px) {
  .tech-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 700px) {
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}




/* ==============================
   PORTFOLIO SECTION
============================== */

.portfolio-section {
  padding: 110px 20px;

  /* ✅ Shade changed (rule follow) */
  background: #050814;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
  margin-top: 70px;
}

/* Portfolio Card */
.portfolio-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);

  transition: 0.35s ease;
}

.portfolio-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 255, 200, 0.25);
}

/* Image */
.portfolio-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

/* Content */
.portfolio-content {
  padding: 25px;
}

.portfolio-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.portfolio-content p {
  font-size: 14px;
  color: #bbb;
  margin-bottom: 15px;
  line-height: 1.6;
}

/* List */
.portfolio-content ul {
  padding-left: 18px;
  margin-bottom: 18px;
}

.portfolio-content ul li {
  font-size: 13px;
  color: #aaa;
  margin-bottom: 8px;
}

/* Tags */
.portfolio-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.portfolio-tags span {
  background: rgba(0, 255, 200, 0.08);
  color: #00ffc8;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 12px;
}

/* Result */
.portfolio-result {
  font-size: 13px;
  font-weight: 600;
  color: #f7b731;
}

/* Responsive */
@media (max-width: 1000px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-card img {
    height: 200px;
  }
}

html {
  scroll-behavior: smooth;
}


/* ==============================
   FINAL CTA SECTION
============================== */

.final-cta-section {
  padding: 120px 20px;

  /* ✅ Purple Shade Change */
  background: radial-gradient(circle at center, #1b0b3a, #050814);
  text-align: center;
}

/* Heading */
.final-cta-heading h2 {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
}

.final-cta-heading h2 span {
  color: #7d5cff;
}

.final-cta-heading p {
  max-width: 750px;
  margin: 18px auto;
  font-size: 15px;
  color: #bbb;
  line-height: 1.7;
}

/* Cards */
.final-cta-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 60px;
}

.cta-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 28px;
  border-radius: 18px;
  transition: 0.35s ease;
}

.cta-card:hover {
  transform: translateY(-8px);
  border-color: rgba(125, 92, 255, 0.35);
}

.cta-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.cta-card p {
  font-size: 13px;
  color: #aaa;
  line-height: 1.6;
}

/* Button */
.final-cta-btn {
  margin-top: 60px;
}

.cta-main-btn {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 40px;

  font-weight: 700;
  font-size: 14px;

  background: linear-gradient(90deg, #7d5cff, #f7b731);
  color: #000;
  text-decoration: none;

  transition: 0.35s ease;
}

.cta-main-btn:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 1000px) {
  .final-cta-cards {
    grid-template-columns: 1fr;
  }

  .final-cta-heading h2 {
    font-size: 32px;
  }
}


