/* =====================================
   APPLICATION DEVELOPMENT HERO
===================================== */

.app-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: 55px;
  font-weight: bold;
  color: white;
  line-height: 1.2;
}

.hero-content h1 span {
  background: linear-gradient(to right, #6a5cff, #00c6ff);
  -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;
}

/* Features Line */
.hero-features {
  margin-top: 25px;
  font-size: 14px;
  color: #ddd;
  line-height: 1.8;
}

/* Buttons */
.hero-buttons {
  margin-top: 45px;
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

/* Primary Button */
.btn-primary {
  padding: 14px 30px;
  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-features {
    font-size: 13px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

}



/* ==============================
   APPLICATION STATS SECTION
============================== */

.app-stats {
  padding: 90px 20px;
  background: #050505;
  display: flex;
  justify-content: center;
}

.app-stats-container {
  width: 100%;
  max-width: 1100px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* Card */
.app-stat-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 18px;
  padding: 35px 20px;
  text-align: center;

  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: 0.35s ease;
}

.app-stat-card h2 {
  font-size: 38px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 10px;
}

.app-stat-card p {
  font-size: 14px;
  color: #bbb;
}

/* Highlight Card */
.app-stat-card.highlight {
  border: 1px solid rgba(0, 255, 200, 0.35);
  box-shadow: 0 0 20px rgba(0, 255, 200, 0.15);
}

/* Hover Effect */
.app-stat-card:hover {
  transform: translateY(-8px);
}

/* Responsive */
@media (max-width: 900px) {
  .app-stats-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .app-stats-container {
    grid-template-columns: 1fr;
  }
}



/* ==============================
   WHY CHOOSE APPLICATION SECTION
============================== */

.app-why {
  padding: 110px 20px;
  background: radial-gradient(circle at center, #111827, #050505);
}

.app-why-container {
  max-width: 1200px;
  margin: auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* LEFT SIDE */
.app-why-left h2 {
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
}

.app-why-left h2 span {
  color: #00ffcc;
}

.app-why-left p {
  margin: 18px 0 35px;
  font-size: 15px;
  color: #bbb;
  line-height: 1.7;
}

.why-point {
  margin-bottom: 25px;
}

.why-point h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.why-point p {
  font-size: 14px;
  color: #999;
  line-height: 1.6;
}

/* RIGHT SIDE CODE BOX */
.app-why-right {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 22px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* Tabs */
.code-tabs {
  display: flex;
  gap: 15px;
  margin-bottom: 18px;
}

.tab-btn {
  background: transparent;
  border: none;
  font-size: 14px;
  color: #bbb;
  cursor: pointer;
  padding-bottom: 8px;
  border-bottom: 2px solid transparent;
  transition: 0.3s;
}

.tab-btn.active {
  color: #00ffcc;
  border-bottom: 2px solid #00ffcc;
}

/* Code Box */
.code-box {
  background: #05070d;
  border-radius: 16px;
  padding: 22px;
  min-height: 320px;
}

.code-content {
  display: none;
  font-size: 13px;
  color: #00ffcc;
  white-space: pre-wrap;
}

.code-content.active {
  display: block;
}

/* Responsive */
@media (max-width: 900px) {
  .app-why-container {
    grid-template-columns: 1fr;
  }
}


/* ==============================
   APPLICATION SERVICES CARDS SECTION
============================== */

.app-services {
  padding: 120px 20px;
  background: radial-gradient(circle at top, #050814, #000);
}

.app-services-container {
  max-width: 1250px;
  margin: auto;
}

/* Heading Center */
.app-services-heading {
  text-align: center;
  max-width: 850px;
  margin: auto;
}

.app-services-heading h2 {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
}

.app-services-heading h2 span {
  color: #00ffcc;
}

.app-services-heading p {
  margin-top: 18px;
  font-size: 15px;
  color: #bbb;
  line-height: 1.7;
}

/* Grid Layout */
.app-services-grid {
  margin-top: 80px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* Card */
.service-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 22px;
  padding: 40px 30px;

  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.35s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 255, 200, 0.3);
}

/* Icon */
.service-icon {
  font-size: 28px;
  margin-bottom: 18px;
}

/* Title */
.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}

/* Paragraph */
.service-card p {
  font-size: 14px;
  color: #aaa;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* List */
.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-card ul li {
  font-size: 13.5px;
  color: #00ffcc;
  margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 1000px) {
  .app-services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    text-align: left;
  }
}



/* ==============================
   APPLICATION DEVELOPMENT PROCESS
============================== */

.app-process {
  padding: 130px 20px;
  background: radial-gradient(circle at center, #050814, #000);
}

.app-process-container {
  max-width: 1350px;
  margin: auto;
}

/* Heading */
.app-process-heading {
  text-align: center;
  max-width: 850px;
  margin: auto;
}

.app-process-heading h2 {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
}

.app-process-heading h2 span {
  color: #00ffcc;
}

.app-process-heading p {
  margin-top: 18px;
  font-size: 15px;
  color: #aaa;
  line-height: 1.7;
}

/* Grid */
.process-grid {
  margin-top: 90px;

  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
}

/* Card */
.process-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 45px 20px;
  text-align: center;

  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: 0.35s ease;
  position: relative;
}

.process-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 255, 200, 0.25);
}

/* Step Circle */
.step-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;

  background: linear-gradient(135deg, #00ffcc, #5a4bff);
  color: #000;

  font-weight: 800;
  font-size: 15px;

  display: flex;
  align-items: center;
  justify-content: center;

  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}

/* Title */
.process-card h3 {
  margin-top: 25px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

/* Text */
.process-card p {
  font-size: 13px;
  color: #999;
  line-height: 1.6;
}

/* 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-section {
  padding: 130px 20px;
  background: radial-gradient(circle at top, #050814, #000);
  text-align: center;
}

.tech-container {
  max-width: 1350px;
  margin: auto;
}

/* Heading */
.tech-heading h2 {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
}

.tech-heading h2 span {
  color: #00cfff;
}

.tech-heading p {
  max-width: 750px;
  margin: 18px auto 70px;
  font-size: 15px;
  color: #aaa;
  line-height: 1.7;
}

/* Subtitle */
.tech-subtitle {
  margin: 60px 0 35px;
  font-size: 18px;
  font-weight: 600;
  color: #ddd;
}

/* Grid */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 20px;
  justify-content: center;
}

/* Card */
.tech-card {
  background: rgba(255, 255, 255, 0.06); /* ✅ brighter */
  border-radius: 16px;
  padding: 28px 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);

  transition: 0.35s ease;
}

.tech-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 255, 200, 0.35);
  box-shadow: 0 0 18px rgba(0, 255, 200, 0.12);
}

/* Icon (FINAL FIX ✅ Clear + Bright) */
.tech-card img {
  width: 46px;
  height: 46px;
  margin-bottom: 12px;

  /* ✅ Icons Visible on Dark Background */
  filter: brightness(2) contrast(1.4);

  transition: 0.3s ease;
}

/* Icon Hover Glow */
.tech-card:hover img {
  transform: scale(1.1);
  filter: brightness(2.4) contrast(1.6);
}

/* Text */
.tech-card p {
  font-size: 13px;
  color: #eee; /* ✅ brighter text */
  font-weight: 500;
}

/* Responsive */
@media (max-width: 1200px) {
  .tech-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 700px) {
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ==============================
   KEY FEATURES SECTION
============================== */

.key-features-section {
  padding: 130px 20px;
  background: radial-gradient(circle at top, #050814, #000);
}

.features-container {
  max-width: 1350px;
  margin: auto;
}

/* Heading */
.features-heading {
  text-align: center;
  margin-bottom: 80px;
}

.features-heading h2 {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
}

.features-heading h2 span {
  color: #00cfff;
}

.features-heading p {
  max-width: 780px;
  margin: 18px auto;
  font-size: 15px;
  color: #aaa;
  line-height: 1.7;
}

/* Grid Layout */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Card */
.feature-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 18px;
  padding: 38px 28px;

  border: 1px solid rgba(255, 255, 255, 0.07);

  transition: 0.35s ease;
}

/* Hover Effect */
.feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 255, 200, 0.25);
  box-shadow: 0 0 20px rgba(0, 255, 200, 0.08);
}

/* Title */
.feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

/* Text */
.feature-card p {
  font-size: 13.5px;
  color: #aaa;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1100px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* ==============================
   FINAL CTA SECTION
============================== */

.final-cta-section {
  padding: 140px 20px;
  background: radial-gradient(circle at center, #1b0b3a, #050814);
  text-align: center;
}

.final-cta-container {
  max-width: 1200px;
  margin: auto;
}

/* Heading */
.final-cta-heading h2 {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
}

.final-cta-heading h2 span {
  color: #00cfff;
}

.final-cta-heading p {
  max-width: 750px;
  margin: 20px auto 70px;
  font-size: 15px;
  color: #bbb;
  line-height: 1.7;
}

/* Cards Grid */
.final-cta-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 70px;
}

/* Card */
.cta-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 32px;
  border-radius: 18px;
  transition: 0.35s ease;
}

.cta-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 255, 200, 0.25);
  box-shadow: 0 0 20px rgba(0, 255, 200, 0.08);
}

.cta-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.cta-card p {
  font-size: 13.5px;
  color: #aaa;
  line-height: 1.6;
}

/* Button */
.cta-main-btn {
  display: inline-block;
  padding: 16px 45px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;

  background: linear-gradient(90deg, #7d5cff, #00cfff);
  color: #000;

  transition: 0.35s ease;
}

.cta-main-btn:hover {
  transform: scale(1.07);
}

/* Responsive */
@media (max-width: 1000px) {
  .final-cta-cards {
    grid-template-columns: 1fr;
  }

  .final-cta-heading h2 {
    font-size: 32px;
  }
}


html {
  scroll-behavior: smooth;
}