* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #050816;
  color: white;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.section {
  padding: 100px 0;
}

.glass {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.logo {
  font-size: 28px;
  font-weight: 800;
}

.logo span {
  color: #52d3ff;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #52d3ff;
}

.btn {
  padding: 14px 26px;
  border-radius: 14px;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
}

.primary-btn {
  background: linear-gradient(90deg,#52d3ff,#9b6cff);
  color: white;
}

.secondary-btn {
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
}

.btn:hover {
  transform: translateY(-4px);
}

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.gradient-1,
.gradient-2 {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(100px);
}

.gradient-1 {
  background: #52d3ff;
  top: -120px;
  left: -120px;
  opacity: 0.2;
}

.gradient-2 {
  background: #9b6cff;
  bottom: -120px;
  right: -120px;
  opacity: 0.2;
}

.hero-content {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 50px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 64px;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero h1 span {
  background: linear-gradient(90deg,#52d3ff,#9b6cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  color: #c6c6c6;
  font-size: 18px;
  line-height: 1.8;
}

.hero-buttons {
  margin-top: 40px;
  display: flex;
  gap: 20px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 50px;
}

.hero-stats h3 {
  font-size: 38px;
}

.dashboard-card {
  padding: 30px;
  border-radius: 30px;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.status-dot {
  width: 14px;
  height: 14px;
  background: #00ff84;
  border-radius: 50%;
}

.progress-card {
  margin-bottom: 24px;
}

.progress-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.progress-bar {
  height: 10px;
  border-radius: 50px;
  background: rgba(255,255,255,0.08);
}

.progress-fill {
  width: 92%;
  height: 100%;
  border-radius: 50px;
  background: linear-gradient(90deg,#52d3ff,#9b6cff);
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 16px;
}

.mini-card,
.bottom-card {
  padding: 24px;
  border-radius: 20px;
}

.bottom-card {
  margin-top: 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header span {
  color: #52d3ff;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-header h2 {
  font-size: 48px;
  margin-top: 14px;
}

.services-grid,
.why-grid,
.project-grid,
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 30px;
}

.service-card,
.why-card,
.project-card,
.stat-card,
.testimonial-card {
  padding: 30px;
  border-radius: 26px;
  transition: 0.4s;
}

.service-card:hover,
.why-card:hover,
.project-card:hover,
.stat-card:hover {
  transform: translateY(-10px);
}

.icon {
  font-size: 42px;
  margin-bottom: 20px;
}

.service-card h3,
.why-card h3 {
  margin-bottom: 16px;
}

.service-card p,
.why-card p {
  color: #c6c6c6;
  line-height: 1.7;
}

.service-card a {
  display: inline-block;
  margin-top: 20px;
  color: #52d3ff;
  text-decoration: none;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(#52d3ff,#9b6cff);
}

.timeline-item {
  padding-left: 60px;
  position: relative;
}

.timeline-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #52d3ff;
  position: absolute;
  left: 10px;
  top: 6px;
}

.project-preview {
  height: 220px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 70px;
  background: rgba(255,255,255,0.04);
  margin-bottom: 20px;
}

.testimonial-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
  gap: 30px;
}

.testimonial-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 20px;
}

.testimonial-card span {
  color: #52d3ff;
}

.testimonial-card p {
  margin-top: 16px;
  line-height: 1.8;
  color: #c6c6c6;
}

.stat-card {
  text-align: center;
}

.stat-card h3 {
  font-size: 54px;
  margin-bottom: 12px;
}

.faq-container {
  max-width: 900px;
  margin: auto;
}

.faq-item {
  border-radius: 18px;
  margin-bottom: 20px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: transparent;
  color: white;
  border: none;
  padding: 24px;
  text-align: left;
  font-size: 18px;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s;
  padding: 0 24px;
  color: #c6c6c6;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 24px;
}

.contact-wrapper {
  padding: 60px;
  border-radius: 40px;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 50px;
}

.contact-left span {
  color: #52d3ff;
}

.contact-left h2 {
  font-size: 48px;
  margin: 20px 0;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 30px;
}

.contact-links a {
  color: white;
  text-decoration: none;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 18px;
  color: white;
}

.contact-form textarea {
  min-height: 160px;
}

.footer {
  padding-top: 80px;
}

.footer-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 40px;
  padding-bottom: 40px;
}

.footer h3,
.footer h4 {
  margin-bottom: 20px;
}

.footer a,
.footer p {
  display: block;
  color: #c6c6c6;
  text-decoration: none;
  margin-bottom: 12px;
}

.copyright {
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  padding: 20px;
  color: #c6c6c6;
}

.loader {
  position: fixed;
  inset: 0;
  background: #050816;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}

.loader-circle {
  width: 70px;
  height: 70px;
  border: 6px solid rgba(255,255,255,0.1);
  border-top-color: #52d3ff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: white;
}

@media(max-width:991px) {

  .hero-content,
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 48px;
  }

  .nav-links {
    position: absolute;
    top: 90px;
    left: -100%;
    width: 100%;
    background: #09111f;
    flex-direction: column;
    padding: 30px;
    transition: 0.4s;
  }

  .nav-links.active {
    left: 0;
  }

  .hamburger {
    display: flex;
  }

  .desktop-btn {
    display: none;
  }
}

@media(max-width:768px) {

  .hero h1,
  .section-header h2,
  .contact-left h2 {
    font-size: 38px;
  }

  .hero-stats {
    flex-direction: column;
  }

  .contact-wrapper {
    padding: 40px 24px;
  }
}