/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: linear-gradient(135deg, #020617 0%, #0f172a 50%, #020617 100%);
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}
a{
  color: white!important;
    text-decoration: none !important;
}
/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes scrollBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

@keyframes scrollDot {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(12px);
  }
}

/* Utility Classes */
.gradient-text {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Buttons */
.btn {
  display: block;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.875rem;
  line-height: 1;
  margin:auto;
}

.btn-primary {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 1px solid #475569;
  color: #cbd5e1;
}

.btn-outline:hover {
  background: #1e293b;
  color: white;
  border-color: #10b981;
}

.btn-ghost {
  background: transparent;
  color: #cbd5e1;
}

.btn-ghost:hover {
  background: #1e293b;
  color: white;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn .arrow-icon {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.3s ease;
}

.btn:hover .arrow-icon {
  transform: translateX(4px);
}

.hero-buttons button{
  width: 350px!important;
}
/* Icons */
svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke-width: 2;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease;
}

.header.scrolled {
  background: rgba(2, 6, 23, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(71, 85, 105, 0.5);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.125rem;
  color: #020617;
}

.logo-text {
  font-weight: bold;
  font-size: 1.25rem;
  color: white;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-desktop a {
  color: #cbd5e1;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.nav-desktop a:hover {
  color: #10b981;
  transform: translateY(-2px);
}

.header-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger {
  display: block;
  width: 1.5rem;
  height: 2px;
  background: white;
  position: relative;
  transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: white;
  transition: all 0.3s ease;
}

.hamburger::before {
  top: -6px;
}

.hamburger::after {
  bottom: -6px;
}

.mobile-menu-btn.active .hamburger {
  background: transparent;
}

.mobile-menu-btn.active .hamburger::before {
  transform: rotate(45deg);
  top: 0;
}

.mobile-menu-btn.active .hamburger::after {
  transform: rotate(-45deg);
  bottom: 0;
}

.mobile-menu {
  display: none;
  border-top: 1px solid #334155;
  padding: 1rem 0;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile-nav a:hover {
  color: #10b981;
}

.mobile-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #020617 0%, #0f172a 50%, #020617 100%);
}

.hero-radial {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 64rem;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(30, 41, 59, 0.5);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(71, 85, 105, 0.5);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  margin-bottom: 2rem;
  animation: fadeInUp 0.6s ease;
}

.sparkles-icon {
  width: 1rem;
  height: 1rem;
  color: #10b981;
}

.hero-badge span {
  color: #cbd5e1;
  font-size: 0.875rem;
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-subtitle {
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  color: #cbd5e1;
  margin-bottom: 3rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 4rem;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-stats {
      display: flex;
      max-width: 50rem;
      margin: 0 auto;
      animation: fadeInUp 0.8s ease 0.8s both;
      gap: 20px;
      justify-content: space-around;
}

.stat-card {
  background: rgba(30, 41, 59, 0.3);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(71, 85, 105, 0.5);
    border-radius: 0.75rem;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    width: 200px;
}

.stat-card:hover {
  transform: scale(1.05);
  border-color: rgba(16, 185, 129, 0.5);
}

.stat-icon {
  width: 2rem;
  height: 2rem;
  color: #10b981;
  margin: 0 auto 0.75rem;
}

.stat-value {
  font-size: 2rem;
  font-weight: bold;
  color: white;
  margin-bottom: 0.25rem;
}

.stat-label {
  color: #94a3b8;
  font-size: 0.875rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: fadeInUp 1s ease 1.5s both;
}

.scroll-mouse {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid #475569;
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  animation: scrollBounce 2s infinite;
}

.scroll-dot {
  width: 0.25rem;
  height: 0.75rem;
  background: #10b981;
  border-radius: 9999px;
  margin-top: 0.5rem;
  animation: scrollDot 2s infinite;
}

/* Section Styles */
.section {
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  animation: fadeInUp 0.8s ease;
}

.section-title {
  font-size: clamp(2.5rem, 6vw, 3rem);
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: white;
}

.section-subtitle {
  font-size: 1.25rem;
  color: #cbd5e1;
  max-width: 32rem;
  margin: 0 auto;
}

.section-cta {
  text-align: center;
  margin-top: 3rem;
  animation: fadeInUp 0.8s ease;
}

/* Projects Section */
.projects-grid {
  display: flex;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.project-card {
    background: rgba(30, 41, 59, 0.3);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(71, 85, 105, 0.5);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease;
    display: flex;
;
    flex-direction: column;
    gap: 50px;
}

.project-card:hover {
  transform: translateY(-10px);
  border-color: rgba(16, 185, 129, 0.5);
}

.project-image {
  position: relative;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.1);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.8) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 1rem;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-link {
  width: 2.5rem;
  height: 2.5rem;
  background: #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.project-link:hover {
  transform: scale(1.1);
}

.project-link svg {
  width: 1.25rem;
  height: 1.25rem;
}

.project-content {
  padding: 1.5rem;
}

.project-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: white;
  margin-bottom: 0.75rem;
}

.project-description {
  color: #cbd5e1;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.tag {
  padding: 0.25rem 0.75rem;
  background: rgba(71, 85, 105, 0.5);
  color: #cbd5e1;
  font-size: 0.875rem;
  border-radius: 9999px;
}

.project-view {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #10b981;
  text-decoration: none;
  transition: color 0.3s ease;
}

.project-view:hover {
  color: #059669;
}

.project-view .arrow-icon {
  width: 1rem;
  height: 1rem;
  transition: transform 0.3s ease;
}

.project-view:hover .arrow-icon {
  transform: translateX(4px);
}

/* Testimonials Section */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.testimonial-card {
  background: rgba(30, 41, 59, 0.3);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(71, 85, 105, 0.5);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
  height: 100%;
  animation: fadeInUp 0.8s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(16, 185, 129, 0.5);
}

.testimonial-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.stars {
  display: flex;
  gap: 0.25rem;
}

.star {
  width: 1.25rem;
  height: 1.25rem;
  color: #fbbf24;
}

.quote-icon {
  width: 2rem;
  height: 2rem;
  color: rgba(16, 185, 129, 0.3);
}

.testimonial-text {
  color: #cbd5e1;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  font-weight: 600;
  color: white;
}

.author-date {
  color: #94a3b8;
  font-size: 0.875rem;
}

.trust-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(30, 41, 59, 0.3);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(71, 85, 105, 0.5);
  border-radius: 9999px;
  padding: 0.75rem 1.5rem;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.trust-indicator .stars {
  gap: 0.125rem;
}

.trust-indicator .star {
  width: 1rem;
  height: 1rem;
}

.trust-indicator span {
  color: #cbd5e1;
  font-size: 0.875rem;
}

/* Process Section */
.process-steps {
  max-width: 64rem;
  margin: 0 auto;
}

.process-step {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 4rem;
  position: relative;
  animation: fadeInLeft 0.8s ease;
}

.process-step.reverse {
  flex-direction: row-reverse;
  animation: fadeInRight 0.8s ease;
}

.step-content {
  flex: 1;
}

.step-content > div {
  background: rgba(30, 41, 59, 0.3);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(71, 85, 105, 0.5);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
}

.step-content > div:hover {
  border-color: rgba(16, 185, 129, 0.5);
}

.step-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.step-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.step-content:hover .step-icon {
  transform: scale(1.1);
}

.step-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
}

.step-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
}

.step-number {
  color: #10b981;
  font-family: "Courier New", monospace;
  font-size: 0.875rem;
}

.step-description {
  color: #cbd5e1;
  line-height: 1.6;
  font-size: 1.125rem;
}

.step-number-circle {
  width: 6rem;
  height: 6rem;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(5, 150, 105, 0.2) 100%);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-number-circle span {
  font-size: 1.875rem;
  font-weight: bold;
  color: #10b981;
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.service-card {
  background: rgba(30, 41, 59, 0.3);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(71, 85, 105, 0.5);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
  height: 100%;
  animation: fadeInUp 0.8s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(16, 185, 129, 0.5);
}

.service-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-icon svg {
  width: 2rem;
  height: 2rem;
  color: white;
}

.service-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  margin-bottom: 1rem;
}

.service-description {
  color: #cbd5e1;
  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;
  color: #cbd5e1;
  margin-bottom: 0.5rem;
}

.service-features li::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background: #10b981;
  border-radius: 50%;
  margin-right: 0.75rem;
}

.service-link {
  background: none;
  border: none;
  color: #10b981;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.service-link:hover {
  color: #059669;
  background: rgba(16, 185, 129, 0.1);
  padding: 0.5rem;
  border-radius: 0.5rem;
}

.service-link .arrow-icon {
  width: 1rem;
  height: 1rem;
  transition: transform 0.3s ease;
}

.service-link:hover .arrow-icon {
  transform: translateX(4px);
}

/* FAQ Section */
.faq-list {
  max-width: 48rem;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1rem;
  animation: fadeInUp 0.5s ease;
}

.faq-question {
  width: 100%;
  background: rgba(30, 41, 59, 0.3);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(71, 85, 105, 0.5);
  border-radius: 1rem;
  padding: 2rem;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.3s ease;
  color: white;
  font-size: 1.125rem;
  font-weight: 600;
}

.faq-question:hover {
  background: rgba(71, 85, 105, 0.2);
  border-color: rgba(16, 185, 129, 0.5);
}

.faq-question span {
  padding-right: 1rem;
}

.faq-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #10b981;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 1.5rem 2rem 1.5rem;
  color: #cbd5e1;
  line-height: 1.6;
}

/* CTA Section */
.cta-card {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.5) 0%, rgba(15, 23, 42, 0.5) 100%);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(71, 85, 105, 0.5);
  border-radius: 1.5rem;
  padding: 3rem;
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
}

.cta-content {
  position: relative;
  z-index: 10;
}

.cta-title {
  font-size: clamp(2.5rem, 6vw, 3rem);
  font-weight: bold;
  color: white;
  margin-bottom: 1.5rem;
}

.cta-subtitle {
  font-size: 1.25rem;
  color: #cbd5e1;
  margin-bottom: 2rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.calendar-icon,
.mail-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.contact-info {
  text-align: center;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.contact-info p {
  color: #cbd5e1;
  margin-bottom: 1rem;
}

.contact-info a {
  color: #10b981;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #059669;
}

.trust-indicators {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
  color: #94a3b8;
  margin-bottom:2rem
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trust-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: #10b981;
  border-radius: 50%;
}

/* Footer */
.footer {
  padding: 4rem 0;
  border-top: 1px solid rgba(71, 85, 105, 0.5);
}

.footer-content {
  text-align: center;
  max-width: 64rem;
  margin: 0 auto;
}

.footer-logo {
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease;
}

.footer-logo .logo {
  justify-content: center;
  margin-bottom: 1rem;
}

.footer-description {
  color: #94a3b8;
  max-width: 24rem;
  margin: 0 auto;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.social-link {
  width: 3rem;
  height: 3rem;
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(71, 85, 105, 0.5);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: rgba(16, 185, 129, 0.2);
  border-color: rgba(16, 185, 129, 0.5);
  color: #10b981;
  transform: translateY(-2px) scale(1.1);
}

.social-link svg {
  width: 1.25rem;
  height: 1.25rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(71, 85, 105, 0.5);
  animation: fadeInUp 0.8s ease 0.4s both;
}

.footer-bottom p {
  color: #94a3b8;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-desktop,
  .header-buttons {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
    margin: auto 0px;
  }

  .mobile-menu.active {
    display: block;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .process-step,
  .process-step.reverse {
    flex-direction: column;
    text-align: center;
  }

  .step-number-circle {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .trust-indicators {
    flex-direction: column;
    gap: 1rem;
  }

  .social-links {
    gap: 1rem;
  }
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
.hero .container{
  padding-bottom: 10%;
}
  .cta-buttons {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 6rem 0;
  }
  .step-number-circle {
    display: flex;
  }
  .hero{
    padding-top: 150px;
  }
}

/* Intersection Observer Animation Classes */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.animate-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}

.animate-left.animated {
  opacity: 1;
  transform: translateX(0);
}

.animate-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease;
}

.animate-right.animated {
  opacity: 1;
  transform: translateX(0);
}

/* Swiper Center Mode Customization */
.projects-swiper {
  width: 100%;
  padding: 2rem 0;
}
.projects-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: stretch;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), box-shadow 0.4s;
  opacity: 0.7;
}
.projects-swiper .swiper-slide-active {
  transform: scale(1.15);
  z-index: 2;
  opacity: 1;
  box-shadow: 0 8px 32px rgba(16,185,129,0.15);
}
.projects-swiper .project-card {
  min-width: 320px;
  max-width: 400px;
  width: 100%;
}
@media (max-width: 900px) {
  .projects-swiper .project-card {
    min-width: 280px;
  }
  .hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin: auto;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.2s both;
    max-width: 500px;
    padding: 40px;
}
.section-title{
  margin:auto;
  margin-bottom: 1.5rem;
  max-width: 11ch;
}
.cta-title{
  font-size:2rem
}
.header{
  background: rgba(2, 6, 23, 0.95)!important;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(71, 85, 105, 0.5);
}
}

@media (max-width: 640px) {
  .projects-swiper .swiper-slide-active {
    transform: scale(1.07);
  }
  .projects-swiper .project-card {
    min-width: 90vw;
    max-width: 95vw;
  }
  .hero-subtitle{
    padding: 0px 50px;
  }
}

/* Project carousel custom mockup styles */
.projects-swiper .mockup {
  position: relative;
  width: 800px;
  display: inline-block;
  margin: 0 auto 2rem auto;
}
.projects-swiper .mac-mockup {
  position: relative;
  width: 100%;
  height: 100%;
}
.projects-swiper .mac-mockup img#front {
  position: absolute;
  top: -323px;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 2;
  pointer-events: none;
}
.projects-swiper .mac-mockup img#back {
  position: relative;
  height: auto;
  top: 2%;
  left: 26%;
  width: 50%;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}
.projects-swiper .phone-mockup {
  position: absolute;
  width: 50%;
  display: inline-block;
  z-index: 2;
}
.projects-swiper .phone-mockup img#front {
  position: absolute;
  top: -445px;
  left: 445px;
  width: 100%;
  height: auto;
  z-index: 2;
  pointer-events: none;
}
.projects-swiper .phone-mockup img#back {
  position: relative;
  height: auto;
  top: -393px;
  left: 579px;
  width: 131px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}
@media (max-width: 900px) {
  .projects-swiper .mockup {
    width: 100vw;
    max-width: 95vw;
  }
  .projects-swiper .phone-mockup img#front {
    left: 55vw;
    top: -55vw;
  }
  .projects-swiper .phone-mockup img#back {
    left: 70vw;
    top: -48vw;
    width: 18vw;
  }
}
@media (max-width: 640px) {
  .projects-swiper .mockup {
    width: 98vw;
    max-width: 98vw;
  }
  .projects-swiper .mac-mockup img#front {
    top: -38vw;
  }
  .projects-swiper .phone-mockup {
    width: 60vw;
  }
  .projects-swiper .phone-mockup img#front {
    left: 50vw;
    top: -50vw;
    width: 60vw;
  }
  .projects-swiper .phone-mockup img#back {
    left: 65vw;
    top: -44vw;
    width: 18vw;
  }
}

/* Responsive header and logo */
.header-content {
  flex-wrap: wrap;
  min-width: 0;
}
.logo img {
  max-width: 160px;
  width: 40vw;
  height: auto;
  display: block;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  box-sizing: border-box;
}

/* Responsive mockup for carousel */
.projects-swiper .mockup {
  position: relative;
  width: 100vw;
  max-width: 400px;
  min-width: 0;
  display: block;
  margin: 0 auto 2rem auto;
  overflow: visible;
}
.projects-swiper .mac-mockup {
  position: relative;
  width: 100%;
  height: auto;
}
.projects-swiper .mac-mockup img#front {
  position: absolute;
  top: -38vw;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 2;
  pointer-events: none;
}
.projects-swiper .mac-mockup img#back {
  position: relative;
  height: auto;
  top: 2vw;
  left: 26vw;
  width: 50vw;
  max-width: 200px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}
.projects-swiper .phone-mockup {
  position: absolute;
  width: 50vw;
  max-width: 120px;
  display: inline-block;
  z-index: 2;
}
.projects-swiper .phone-mockup img#front {
  position: absolute;
  top: -50vw;
  left: 50vw;
  width: 100%;
  height: auto;
  z-index: 2;
  pointer-events: none;
}
.projects-swiper .phone-mockup img#back {
  position: relative;
  height: auto;
  top: -44vw;
  left: 65vw;
  width: 18vw;
  max-width: 60px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

/* Prevent horizontal scroll on mobile */
body, html {
  overflow-x: hidden;
  max-width: 100vw;
}

/* Swiper slide fix for mobile */
.projects-swiper .swiper-slide {
  min-width: 0;
  max-width: 100vw;
  box-sizing: border-box;
}

@media (max-width: 900px) {
  section{
    padding-top: 2rem!important;
  }
  .projects-swiper .mockup {
    max-width: 95vw;
  }
  .stat-icon {
    margin-bottom: 0.1rem!important;;
  }
    .scroll-indicator{
    position:relative!important;
    display:flex;
    margin:auto;
    margin-top:50px!important;
    align-items: center;
    justify-content: center;
    left: 0!important;;
  }
  .btn .arrow-icon{
    margin: auto;
    padding-left: 0px;
    display: inline-block;
    padding-bottom: 2px;
}
.btn a{
  display: flex!important;
      padding-top: 2px!important;
      justify-content: center!important;
      margin: auto!important;
}
.step-info{
   text-align: left!important;
    display: flex!important;
    flex-direction: column!important;
    width:75%!important;
}
.trust-indicator{
  margin: 2rem auto!important
}
.testimonials-grid{
  margin-bottom:1rem!important;
}
}
@media (max-width: 640px) {
  .projects-swiper .mockup {
    width: 98vw;
    max-width: 98vw;
  }
  .projects-swiper .mac-mockup img#front {
    top: -38vw;
  }
  .projects-swiper .phone-mockup {
    width: 60vw;
    max-width: 80px;
  }
  .projects-swiper .phone-mockup img#front {
    left: 50vw;
    top: -50vw;
    width: 60vw;
  }
  .projects-swiper .phone-mockup img#back {
    left: 65vw;
    top: -44vw;
    width: 18vw;
    max-width: 60px;
  }
}

/* Fix for .header and .nav-desktop on small screens */
@media (max-width: 500px) {
  .header-content {
    align-items: flex-start;
    gap: 0.5rem
  }
  .hero-content{
    padding-top:4rem;
  }
  .nav-desktop {
    gap: 1rem;
    font-size: 0.95rem;
  }
  .header-buttons {
    gap: 0.5rem;
  }
}

/* Responsive hero stats */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  max-width: 100vw;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease 0.8s both;
}
.stat-card {
  flex: 1 1 30%;
  min-width: 90px;
  max-width: 180px;
  margin: 0 0.25rem;
  padding: 1rem;
  box-sizing: border-box;
}
.stat-icon {
  width: 1.5rem;
  height: 1.5rem;
}
.stat-value {
  font-size: 1.5rem;
}
@media (max-width: 640px) {
  .hero-stats {
    gap: 0.25rem;
    padding: 0 0.5rem;
  }
  .stat-card {
    min-width: 80px;
    max-width: 110px;
    padding: 0.5rem;
  }
  .stat-icon {
    width: 1.1rem;
    height: 1.1rem;
  }
  .stat-value {
    font-size: 1.1rem;
  }
  .stat-label {
    font-size: 0.7rem;
  }
  .about-sub{
    display: blok;
  }
}

/* About Us Section Styles */
.about-us {
  margin: 0 auto;
  max-width: 1200px;
  padding: 4rem 0 2rem 0;
}
.about-desktop {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}
.about-left {
  flex: 1 1 40%;
  min-width: 220px;
}
.about-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: #fff;
}
.about-sub {
  font-size: 1.1rem;
  font-weight: 600;
  color: #10b981;
}
.about-summary {
  color: #cbd5e1;
  font-size: 1.8rem;
  margin-bottom: 2rem;
}
.about-right {
  display: flex;
  gap: 2rem;
  flex: 1 1 60%;
  justify-content: flex-end;
}
.about-card {
  background: rgba(30,41,59,0.15);
  border-radius: 1.2rem;
  box-shadow: 0 2px 12px rgba(16,185,129,0.07);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  min-width: 220px;
  max-width: 260px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.3s;
}
.about-card:hover {
  box-shadow: 0 4px 24px rgba(16,185,129,0.18);
}
.about-photo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid #10b981;
}
.about-name {
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 0.2rem;
}
.about-role {
  color: #10b981;
  font-size: 0.95rem;
  margin-bottom: 0.7rem;
}
.about-bio {
  color: #cbd5e1;
  font-size: 0.97rem;
}

/* Mobile Styles */
.about-mobile {
  display: none;
}
@media (max-width: 900px) {
  .about-desktop {
    display: none;
  }
  .about-mobile {
    display: block;
    padding: 2rem 0 1rem 0;
    max-width: 98vw;
  }
  .about-title {
    text-align: center;
  }
  .about-summary {
    font-size: 1.12rem;
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1rem 2rem;
  }
  #coFoundersContainer{
    display: block;
    width: 100%;
    margin-top: -70px;
  }
  .about-branch {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 2.5rem 0 1.5rem 0;
    min-height: 60px;
  }
  .about-dot {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 8px rgba(16,185,129,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 1.5rem;
    cursor: pointer;
    border: 3px solid #10b981;
    transition: box-shadow 0.3s, border-color 0.3s;
    z-index: 2;
    position: relative;
  }
  .about-branch-line-horizontal {
    height: 4px;
    width: 60px;
    background: #10b981;
    border-radius: 2px;
    z-index: 1;
  }
  .about-tabs-horizontal {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 1rem;
    width: 100%;
    margin-top: 1.5rem;
  }
  .about-tabs-horizontal .about-tab {
    background: rgba(30,41,59,0.15);
    border-radius: 1.2rem;
    box-shadow: 0 2px 12px rgba(16,185,129,0.07);
    padding: 1.2rem 1rem 1rem 1rem;
    width: 44vw;
    max-width: 350px;
    text-align: center;
    opacity: 0;
    max-height: 0;
    pointer-events: none;
    transform: translateY(20px) scale(0.98);
    transition: all 0.45s cubic-bezier(0.4,0,0.2,1);
    position: relative;
    z-index: 3;
    margin-bottom: 0;
  }
  .about-tabs-horizontal .about-tab.open {
    opacity: 1;
    max-height: 400px;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }
  .about-bio{
    font-size: 1.12rem!important;
  }
  /* Hide old vertical styles */
  .about-branch-line, .about-tabs { display: none !important; }
}

@media (max-width: 900px) {
  .about-tab-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1.5rem;
    min-height: 0;
    position: relative;
  }
  .about-tab-content .about-tab {
    background: rgba(30,41,59,0.15);
    border-radius: 1.2rem;
    box-shadow: 0 2px 12px rgba(16,185,129,0.07);
    padding: 1.2rem 1rem 1rem 1rem;
    width: 90vw;
    max-width: 350px;
    text-align: center;
    opacity: 0;
    max-height: 0;
    pointer-events: none;
    transform: translateY(20px) scale(0.98);
    transition: all 0.45s cubic-bezier(0.4,0,0.2,1);
    position: relative;
    z-index: 3;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
  }
  .about-tab-content .about-tab.open {
    opacity: 1;
    max-height: 400px;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }
  /* Timeline stroke */
  .about-timeline {
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, #10b981 0%, #059669 100%);
    margin: 0 auto;
    border-radius: 2px;
    transition: height 0.7s cubic-bezier(0.4,0,0.2,1);
    position: relative;
    z-index: 1;
  }
  .about-us.in-view .about-timeline {
    height: 48px;
  }
  /* Hide old horizontal tabs */
  .about-tabs-horizontal { 
    display: none !important; 
  }
  .about-dot img {
    width: 100px;
    border-radius: 8px;
  }
}

@media (max-width: 900px) {
  .about-dot img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #10b981;
    background: linear-gradient(135deg, #0f172a 0%, #10b981 100%);
    box-shadow: 0 4px 16px rgba(16,185,129,0.12), 0 1.5px 8px rgba(2,6,23,0.12);
    transition: box-shadow 0.3s, border-color 0.3s, filter 0.3s;
    display: block;
    margin: 0 auto;
  }
  .about-dot.active img, .about-dot:focus img {
    border-color: #059669;
    box-shadow: 0 8px 32px rgba(16,185,129,0.22), 0 2px 12px rgba(2,6,23,0.18);
    filter: brightness(1.08) saturate(1.1);
  }
  .about-dot img:hover {
    filter: brightness(1.1) saturate(1.2);
    box-shadow: 0 8px 32px rgba(16,185,129,0.18), 0 2px 12px rgba(2,6,23,0.18);
  }
}

