/* Enhanced sophisticated design with modern visual elements */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #000;
  background: #fff;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Enhanced Hero Section */
.hero {
  position: relative;
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 50%, #fff 100%);
  padding: 60px 0 50px;
  text-align: center;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 20%, rgba(35, 194, 136, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(35, 194, 136, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #23c288 0%, #1ea574 100%);
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(35, 194, 136, 0.3);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.hero-title {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.02em;
}

.title-highlight {
  background: linear-gradient(135deg, #23c288 0%, #1ea574 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-accent {
  position: relative;
  color: #23c288;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 300;
  opacity: 0.7;
  margin-bottom: 40px;
  font-style: italic;
}

/* Enhanced Stats Showcase */
.stats-showcase {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.stat-card {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  padding: 30px 24px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(35, 194, 136, 0.1);
  transition: all 0.3s ease;
  min-width: 180px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #23c288, #1ea574);
}

.stat-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(35, 194, 136, 0.15);
  border-color: #23c288;
}

.stat-number {
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 900;
  color: #23c288;
  line-height: 1;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #23c288 0%, #1ea574 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #000;
  opacity: 0.8;
}

/* Enhanced Section Styling */
.section {
  padding: 50px 0;
  position: relative;
}

.section:nth-child(even) {
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 32px;
}

.section h2 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.01em;
}

.section-intro {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #000;
  opacity: 0.85;
}

/* Client Overview */
.content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}

.content-main p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.lead {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 32px;
}

.highlight-text {
  color: #23c288;
  font-weight: 600;
}

.industries-card {
  background: #fff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border-left: 4px solid #23c288;
}

.industries-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #23c288;
}

.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  background: rgba(35, 194, 136, 0.1);
  color: #23c288;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Challenge Section */
.challenge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.challenge-card {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  padding: 30px 24px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #23c288;
  transition: all 0.3s ease;
  position: relative;
}

.challenge-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  border-left-color: #1ea574;
}

.challenge-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #23c288 0%, #1ea574 100%);
  color: #fff;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(35, 194, 136, 0.3);
}

.challenge-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #000;
  line-height: 1.3;
}

.challenge-card p {
  line-height: 1.8;
  color: #000;
  opacity: 0.8;
  font-size: 1.05rem;
}

/* Objectives Timeline */
.objectives-timeline {
  max-width: 800px;
  margin: 0 auto;
}

.objective-item {
  display: flex;
  gap: 32px;
  margin-bottom: 48px;
  position: relative;
}

.objective-item:last-child {
  margin-bottom: 0;
}

.objective-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.marker-dot {
  width: 20px;
  height: 20px;
  background: #23c288;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 0 0 4px rgba(35, 194, 136, 0.2);
}

.marker-line {
  width: 2px;
  height: 60px;
  background: linear-gradient(to bottom, #23c288, rgba(35, 194, 136, 0.3));
  margin-top: 8px;
}

.objective-item:last-child .marker-line {
  display: none;
}

.objective-content h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #23c288;
}

.objective-content p {
  line-height: 1.7;
  opacity: 0.8;
}

/* Process Flow */
.process-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.process-step {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  text-align: center;
  max-width: 280px;
  flex: 1;
  min-width: 250px;
  border: 2px solid rgba(35, 194, 136, 0.1);
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(35, 194, 136, 0.12);
  border-color: #23c288;
}

.step-number {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #23c288 0%, #1ea574 100%);
  color: #fff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.4rem;
  margin: 0 auto 24px;
  box-shadow: 0 6px 20px rgba(35, 194, 136, 0.3);
}

.process-arrow {
  font-size: 2rem;
  color: #23c288;
  font-weight: bold;
}

/* Technology Section */
.tech-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 32px;
}

.services-panel,
.tech-stack {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.services-panel h3,
.tech-stack h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 32px;
  color: #23c288;
  text-align: center;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(35, 194, 136, 0.1);
}

.service-item:last-child {
  border-bottom: none;
}

.service-dot {
  width: 8px;
  height: 8px;
  background: #23c288;
  border-radius: 50%;
  flex-shrink: 0;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 16px;
}

.tech-card {
  background: rgba(35, 194, 136, 0.05);
  padding: 20px 16px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(35, 194, 136, 0.1);
  transition: all 0.3s ease;
}

.tech-card:hover {
  background: rgba(35, 194, 136, 0.1);
  transform: translateY(-2px);
}

.tech-name {
  font-weight: 600;
  color: #23c288;
  margin-bottom: 4px;
}

.tech-desc {
  font-size: 0.85rem;
  opacity: 0.7;
}

/* Results Section */
.results-showcase {
  margin-top: 32px;
}

.impact-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.metric-card {
  padding: 36px 28px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.metric-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 24px 80px rgba(35, 194, 136, 0.2);
}

.metric-card.primary {
  background: linear-gradient(135deg, #23c288 0%, #1ea574 100%);
  color: #fff;
  box-shadow: 0 12px 40px rgba(35, 194, 136, 0.3);
}

.metric-card.secondary {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  border: 2px solid #23c288;
  color: #000;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.metric-card.accent {
  background: linear-gradient(135deg, rgba(35, 194, 136, 0.1) 0%, rgba(35, 194, 136, 0.05) 100%);
  border: 2px solid rgba(35, 194, 136, 0.3);
  color: #000;
  box-shadow: 0 12px 40px rgba(35, 194, 136, 0.1);
}

.metric-value {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.metric-label {
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 12px;
}

.metric-trend {
  font-size: 0.95rem;
  font-weight: 600;
  opacity: 0.9;
}

.achievements-panel {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border-left: 4px solid #23c288;
}

.achievements-panel h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 32px;
  color: #23c288;
  text-align: center;
}

.achievement-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.achievement-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(35, 194, 136, 0.1);
}

.achievement-item:last-child {
  border-bottom: none;
}

.achievement-bullet {
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, #23c288 0%, #1ea574 100%);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
  box-shadow: 0 2px 8px rgba(35, 194, 136, 0.3);
}

.achievement-text {
  line-height: 1.8;
  font-size: 1.05rem;
  color: #000;
}

.achievement-text strong {
  color: #23c288;
  font-weight: 700;
}

/* Enhanced Conclusion Banner */
.conclusion-banner {
  background: linear-gradient(135deg, #23c288 0%, #1ea574 100%);
  color: #fff;
  padding: 40px 32px;
  border-radius: 20px;
  text-align: center;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(35, 194, 136, 0.3);
}

.conclusion-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.conclusion-content {
  position: relative;
  z-index: 2;
}

.conclusion-banner h3 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.conclusion-banner p {
  font-size: 1.3rem;
  line-height: 1.6;
  opacity: 0.95;
  max-width: 800px;
  margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 40px 0 30px;
  }

  .stats-showcase {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .stat-card {
    min-width: 200px;
    padding: 24px 20px;
  }

  .section {
    padding: 40px 0;
  }

  .section-header {
    flex-direction: column;
    gap: 12px;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .challenge-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .challenge-card {
    padding: 24px 20px;
  }

  .process-flow {
    flex-direction: column;
    gap: 16px;
  }

  .process-arrow {
    transform: rotate(90deg);
    font-size: 1.5rem;
  }

  .tech-services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .services-panel,
  .tech-stack {
    padding: 24px 20px;
  }

  .impact-metrics {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .metric-card {
    padding: 28px 20px;
  }

  .achievements-panel {
    padding: 24px 20px;
  }

  .conclusion-banner {
    padding: 32px 20px;
    margin-top: 32px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(1.8rem, 5vw, 3.5rem);
  }

  .section-number {
    font-size: 1.1rem;
    padding: 8px 12px;
    min-width: 44px;
  }

  .challenge-card,
  .process-step,
  .services-panel,
  .tech-stack,
  .achievements-panel {
    padding: 20px 16px;
  }

  .metric-card {
    padding: 24px 16px;
  }

  .conclusion-banner {
    padding: 24px 16px;
  }

  .tech-grid {
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    gap: 10px;
  }

  .tech-card {
    padding: 16px 12px;
  }
}

/* CSS Icons for Results Section */
.trend-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  position: relative;
  vertical-align: middle;
}

.trend-up::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 10px solid currentColor;
  top: 3px;
  left: 2px;
}

.trend-target::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border: 2px solid currentColor;
  border-radius: 50%;
  top: 2px;
  left: 2px;
}

.trend-target::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  background: currentColor;
  border-radius: 50%;
  top: 6px;
  left: 6px;
}

.trend-check::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 10px;
  border: solid currentColor;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  top: 1px;
  left: 5px;
}







nav {
    background-color: #fff;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.containerl {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    height: 30px;
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
}

nav ul li {
    margin-left: 30px;
    position: relative;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #4CAF50;
}

nav ul li a.btn {
    background-color: #4CAF50;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    transition: background-color 0.3s;
}

nav ul li a.btn:hover {
    background-color: #45a049;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 1;
    border-radius: 4px;
    top: 100%;
    left: 0;
    padding: 10px 0;
}

.dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-icon {
    display: inline-block;
    font-size: 0.5rem;
    margin-left: 5px;
    transition: transform 0.3s;
}

.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}


.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}


@media screen and (max-width: 992px) {
    .mobile-menu-toggle {
        display: block;
    }

    nav ul {
        position: fixed;
        background-color: white;
        flex-direction: column;
        width: 100%;
        height: 100vh;
        top: 80px;
        left: -100%;
        text-align: center;
        transition: all 0.3s;
        padding-top: 20px;
    }

    nav ul.active {
        left: 0;
    }

    nav ul li {
        margin: 20px 0;
    }

    .dropdown-content {
        position: static;
        display: none;
        box-shadow: none;
        width: 100%;
        padding: 10px 0;
    }

    .dropdown-content.active {
        display: block;
    }

    .dropdown-toggle {
        display: block;
        margin-top: 10px;
        font-size: 14px;
        color: #666;
    }

    .dropdown-icon {
        transition: transform 0.3s;
    }

    .dropdown:hover .dropdown-content {
        display: none;
        /* Disable hover behavior on mobile */
    }
}













/* navigation new  */

/* Footer */





footer {
    background: #1e2837;
    color: #fff;
    padding: 50px 0;
    font-size: 16px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-icons a {
    color: #fff;
    font-size: 26px;
}

.footer-content .footer-links a {
    text-decoration: none;
}


.footer-links h3 {
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #fff;
    text-decoration: none;
}


