.hover-effect {
  color: #0f172a;
}
.hover-effect:hover {
  color: #ffffff !important;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #1e293b;
  background-color: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23a3e635' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  animation: pulse 4s ease-in-out infinite;
}

.nav {
  position: relative;
  z-index: 10;
  padding: 1.5rem 0;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 2.5rem;
  width: auto;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #a3e635;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 5rem 0 8rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background-color: rgba(163, 230, 53, 0.1);
  border: 1px solid rgba(163, 230, 53, 0.2);
  margin-bottom: 2rem;
  animation: fadeIn 0.6s ease-out;
}

.hero-badge span {
  color: #a3e635;
  font-size: 0.875rem;
  font-weight: 500;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  animation: fadeIn 0.6s ease-out 0.2s both;
}

.hero-title .highlight {
  color: #a3e635;
}

.hero-description {
  font-size: 1.25rem;
  color: #cbd5e1;
  margin-bottom: 3rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  animation: fadeIn 0.6s ease-out 0.4s both;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  animation: fadeIn 0.6s ease-out 0.6s both;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 0.875rem;
}

.btn-primary {
  background-color: #a3e635;
  color: #1e293b;
}

.btn-primary:hover {
  background-color: #84cc16;
}

.btn-outline {
  border: 1px solid #475569;
  color: white;
  background: transparent;
}

.btn-outline:hover {
  background-color: #1e293b;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}
/* Disclaimer Styles */
.disclaimer {
  max-width: 48rem;
  margin: 2rem auto 0;
  padding: 1rem 1.5rem;
  background-color: rgba(30, 41, 59, 0.5);
  border: 1px solid #475569;
  border-radius: 0.5rem;
  backdrop-filter: blur(4px);
  animation: fadeIn 0.6s ease-out 0.8s both;
}

.disclaimer-text {
  color: #cbd5e1;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
  text-align: center;
}

.disclaimer-text strong {
  color: #a3e635;
}

.disclaimer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  align-items: center;
}

.disclaimer-links a {
  color: #a3e635;
  text-decoration: underline;
  text-decoration-color: rgba(163, 230, 53, 0.5);
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.disclaimer-links a:hover {
  color: #84cc16;
  text-decoration-color: #84cc16;
}

.disclaimer-links .separator {
  color: #64748b;
}

@media (max-width: 768px) {
  .disclaimer {
    margin: 1.5rem auto 0;
    padding: 1rem;
  }

  .disclaimer-links {
    flex-direction: column;
    gap: 0.5rem;
  }

  .disclaimer-links .separator {
    display: none;
  }
}

/* Responsive Design for Hero */
@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .hero-title {
    font-size: 4rem;
  }

  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 5rem;
  }
}

/* Trusted By Section */
.trusted-by {
  padding: 4rem 0;
  background-color: #f8fafc;
}

.trusted-by-content {
  text-align: center;
}

.trusted-by-title {
  color: #64748b;
  font-weight: 500;
  margin-bottom: 2rem;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.client-name {
  color: #94a3b8;
  font-weight: 600;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.client-name:hover {
  color: #64748b;
}

.user-stat {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  background-color: rgba(163, 230, 53, 0.1);
  border: 1px solid rgba(163, 230, 53, 0.2);
}

.user-stat span {
  color: #334155;
  font-weight: 500;
}

.user-stat .highlight {
  color: #16a34a;
  font-weight: 700;
}

/* Services Section */
.services {
  padding: 6rem 0;
  background-color: white;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.section-description {
  font-size: 1.25rem;
  color: #64748b;
  max-width: 48rem;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  /* grid-template-columns: 1fr; */
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  padding: 2rem;
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(184, 228, 195, 0.589);
  transition: all 0.3s ease;
  border: none;
}

.service-card:hover {
  box-shadow: 0 25px 50px -12px rgb(202, 196, 196);
}

.service-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.service-icon {
  padding: 0.75rem;
  border-radius: 0.75rem;
  background-color: rgba(163, 230, 53, 0.1);
  color: #16a34a;
  margin-right: 1rem;
  transition: background-color 0.3s ease;
}

.service-card:hover .service-icon {
  background-color: rgba(104, 218, 132, 0.2);
}

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
}

.service-description {
  color: #64748b;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.service-features li {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 0.5rem;
}

.service-features li::before {
  content: "";
  width: 0.375rem;
  height: 0.375rem;
  background-color: #a3e635;
  border-radius: 50%;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.service-buttons {
  display: flex;
  gap: 0.75rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: #3a4b5c;
  flex: 1;
}

/* Stats Section */
.stats {
  padding: 6rem 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.stats .section-title {
  color: white;
}

.stats .section-description {
  color: #cbd5e1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.stat-card {
  text-align: center;
  padding: 2rem;
  border-radius: 1rem;
  background-color: rgba(30, 41, 59, 0.5);
  border: 1px solid #475569;
  transition: all 0.3s ease;
}

.stat-card:hover {
  border-color: rgba(163, 230, 53, 0.5);
  background-color: rgba(30, 41, 59, 0.8);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #a3e635;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.stat-card:hover .stat-number {
  transform: scale(1.1);
}

.stat-label {
  color: #cbd5e1;
  font-weight: 500;
}

/* Process Section */
.process {
  padding: 6rem 0;
  background-color: #f8fafc;
}

.process-container {
  position: relative;
}

.process-line {
  display: none;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background-color: rgba(163, 230, 53, 0.3);
  transform: translateY(-50%);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-icon-container {
  position: relative;
  z-index: 10;
  margin-bottom: 1.5rem;
}

.process-icon {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background-color: #a3e635;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f172a;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.process-icon-bg {
  position: absolute;
  top: -0.5rem;
  left: -0.5rem;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background-color: rgba(163, 230, 53, 0.1);
  animation: pulse 2s ease-in-out infinite;
}

.process-step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.process-step-description {
  color: #64748b;
  font-size: 0.875rem;
  line-height: 1.6;
  align-items: left;
  justify-content: left;
  text-align: left;
}

/* Solutions Section */
.solutions {
  padding: 6rem 0;
  background-color: white;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.solution-card {
  padding: 2rem;
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}

.solution-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.solution-icon {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background-color: rgba(163, 230, 53, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #16a34a;
  transition: background-color 0.3s ease;
}

.solution-card:hover .solution-icon {
  background-color: rgba(163, 230, 53, 0.2);
}

.solution-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.solution-description {
  color: #64748b;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.solution-features {
  list-style: none;
  margin-bottom: 2rem;
}

.solution-features li {
  display: flex;
  align-items: left;
  justify-content: left;
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 0.75rem;
}

.solution-features li::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background-color: #a3e635;
  border-radius: 50%;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

/* Tech Stack Section */
.tech-stack {
  padding: 6rem 0;
  background-color: #0f172a;
}

.tech-stack .section-title {
  color: white;
}

.tech-stack .section-description {
  color: #cbd5e1;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.tech-card {
  padding: 1.5rem;
  background-color: #1e293b;
  border: 1px solid #475569;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.tech-card:hover {
  border-color: rgba(163, 230, 53, 0.5);
}

.tech-category {
  font-size: 1.25rem;
  font-weight: 700;
  color: #a3e635;
  margin-bottom: 1rem;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tech-tag {
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
  background-color: #475569;
  color: #cbd5e1;
  border-radius: 9999px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.tech-tag:hover {
  background-color: rgba(163, 230, 53, 0.1);
  color: #a3e635;
}

/* Contact Section */
.contact {
  padding: 6rem 0;
  background-color: #f8fafc;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 6xl;
  margin: 0 auto;
}

.contact-form {
  padding: 2rem;
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.contact-form-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #a3e635;
  box-shadow: 0 0 0 3px rgba(163, 230, 53, 0.1);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.contact-info-description {
  color: #64748b;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  padding: 0.75rem;
  border-radius: 0.5rem;
  background-color: rgba(163, 230, 53, 0.1);
  color: #16a34a;
}

.contact-details h4 {
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.25rem;
}

.contact-details p {
  color: #64748b;
}

.contact-cta {
  background-color: rgba(163, 230, 53, 0.1);
  border-radius: 0.5rem;
  padding: 1.5rem;
}

.contact-cta h4 {
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.contact-cta p {
  color: #64748b;
  margin-bottom: 1rem;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Responsive Design */
/* @media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .hero-title {
    font-size: 4rem;
  }

  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
  .stats-grid {
    grid-template-columns: repeat(1, 1fr);
    display: grid;
    flex-direction: column;
  }
  .clients-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-line {
    display: block;
  }

  .process-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .solutions-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-row {
    grid-template-columns: repeat(1, 1fr);
  }

  .section-title {
    font-size: 4rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 5rem;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 320px) {
  .stats-grid {
    grid-template-columns: repeat(1, 1fr);
    display: grid;
    flex-direction: column;
  }

  .section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.5rem;
  }
  .services-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .tech-grid {
    grid-template-columns: repeat(1, 1fr);
  }
} */

@media (max-width: 768px) {
  .nav-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .clients-grid,
  .services-grid,
  .stats-grid,
  .solutions-grid,
  .tech-grid,
  .contact-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 2rem;
  }

  .disclaimer-links {
    flex-direction: column;
    gap: 0.5rem;
  }

  .disclaimer-links .separator {
    display: none;
  }
}
