@font-face {
  font-family: "Poppins";
  src: url("fonts/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("fonts/Poppins-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("fonts/Poppins-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("fonts/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("fonts/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
* {
  margin: 0;
  line-height: 1.5;
  padding: 0;
  box-sizing: border-box;
}
a {
  line-height: 1;
}

:root {
  --primary: #0071e3;
  --dark: #1a1a1a;
  --light: #f5f5f7;
  --gray: #4d4d4d;
  --border: rgba(0, 0, 0, 0.08);
  --gradient-1: linear-gradient(275deg, #923dff 0%, #0671e4 100%);
  --gradient-2: linear-gradient(135deg, #ff6b6b 0%, #feca57 100%);
  --gradient-3: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

body {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  color: var(--dark);
  background: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-top: 60px;
}

/* Navigation */
.nav-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

nav {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.nav-menu a.active {
  color: #9c71ff; /* A highlight color to indicate active state */
  font-weight: 500;
}

.nav-scrolled {
  background: rgba(255, 255, 255, 0.9);
}

.nav-container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 22px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
  transition: opacity 0.3s;
}

.logo:hover {
  opacity: 0.8;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 20px;
  align-items: center;
}

.nav-menu a {
  color: var(--gray);
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  transition: opacity 0.3s;
  opacity: 0.8;
}

.nav-menu a:hover {
  opacity: 1;
}

.nav-cta {
  background: var(--gradient-1);
  color: white !important;
  padding: 7px 16px;
  border-radius: 20px;
  font-size: 14px !important;
  opacity: 1 !important;
  transform: scale(1);
  transition: all 0.3s;
}

.nav-cta:hover {
  transform: scale(2);
}

/* Hero Section */
.hero {
  padding-top: 90px;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-bottom: 284px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f5f7 100%);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  object-fit: cover;
  object-position: center;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(-20px, -20px) scale(1.05);
  }
  50% {
    transform: translate(20px, -10px) scale(1.1);
  }
  75% {
    transform: translate(-10px, 20px) scale(1.05);
  }
}

.hero-content {
  text-align: center;
  z-index: 1;
  position: relative;
  max-width: 1040px;
  padding: 0 22px;
}

.hero h1 {
  font-size: 64px;
  font-weight: 700;
  text-align: center;
  margin: 0 auto;
  color: var(--dark);
  max-width: 610px;
  animation: fadeInUp 0.8s ease;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 20px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 20px;
  max-width: 762px;
  animation: fadeInUp 0.8s ease 0.1s;
  animation-fill-mode: both;
}

.hero-buttons {
  display: flex;
  gap: 24px;
  justify-content: center;
  animation: fadeInUp 0.8s ease 0.2s;
  animation-fill-mode: both;
}

.btn {
  padding: 15px 24px 12px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gradient-1);
  color: white;
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 113, 227, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.8);
  color: #9c71ff;
  border: 1px solid #9c71ff;
  backdrop-filter: blur(20px);
}

.btn-secondary:hover {
  transform: translateY(-2px);
}

/* Features Section */
.features {
  padding: 90px 22px;
  background: white;
}

.features-container {
  max-width: 1040px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 30px;
}

.section-label {
  padding: 7px 16px;
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
  background: var(--dark);
  border-radius: 40px;
  display: inline-block;
  text-transform: uppercase;
}

.section-title {
  font-size: 48px;
  font-weight: 600;
  margin: 10px 0;
  color: var(--dark);
}

.section-desc {
  font-size: 21px;
  color: var(--dark);
  max-width: 750px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

.feature-card {
  background: var(--light);
  border-radius: 20px;
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.feature-card.large {
  grid-column: span 2;
  background: var(--gradient-1);
  color: white;
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 30px;
  background: white;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.feature-card.large .feature-icon {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.feature-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.2;
}

.feature-desc {
  font-size: 16px;
  line-height: 1.5;
  opacity: 0.8;
}

.feature-card.large .feature-desc {
  opacity: 0.95;
}

/* Services Showcase */
.services-showcase {
  padding: 90px 22px;
  background: var(--light);
}

.showcase-container {
  max-width: 1040px;
  margin: 0 auto;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.showcase-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.showcase-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.showcase-img {
  height: 120px;
  margin-bottom: 10px;
}

.showcase-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
}

.showcase-content {
  padding: 30px;
}

.showcase-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--dark);
}

.showcase-text {
  font-size: 15px;
  color: var(--gray);
  margin-bottom: 12px;
}

.showcase-link {
  color: var(--primary);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.3s;
}

.showcase-link:hover {
  gap: 10px;
}

/* Stats Section */
.stats {
  padding: 60px 22px;
  background: white;
}

.stats-container {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item {
  animation: countUp 1s ease;
}

.stat-numbers {
  font-size: 48px;
  font-weight: 600;
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-number {
  font-size: 48px;
  font-weight: 600;
  color: var(--dark);
}

.stat-numbers .symbol {
  font-size: 40px;
}

.stat-label {
  font-size: 15px;
  color: var(--gray);
}

/* CTA Section */
.cta-section {
  padding: 90px 22px 60px;
  background: url("/assets/images/bg-01.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 48px;
  font-weight: 600;
  color: white;
  margin-bottom: 16px;
  line-height: 1.1;
}

.cta-text {
  font-size: 20px;
  color: rgba(255, 255, 255, 1);
  margin-bottom: 24px;
}

.cta-button {
  background: white;
  color: var(--dark);
  padding: 16px 40px;
  border-radius: 80px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
  transition: all 0.3s;
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Contact Section */
.contact {
  padding: 90px 22px;
  background: white;
}

.contact-container {
  max-width: 1040px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  margin-top: 60px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  gap: 20px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}

.contact-details h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--dark);
}

.contact-details p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.5;
}

.contact-details a {
  background: var(--gradient-1);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: opacity 0.3s;
}

.contact-details a:hover {
  opacity: 0.8;
}

.contact-form {
  background: var(--light);
  padding: 40px;
  border-radius: 20px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s;
  background: white;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #923dff;
  box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  background: var(--gradient-1);
  color: white;
  padding: 11px 32px;
  border: none;
  border-radius: 40px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 113, 227, 0.3);
}

/* Footer */
footer {
  background: var(--light);
  border-top: 1px solid var(--border);
  padding: 40px 22px 80px;
}

.footer-container {
  max-width: 1040px;
  margin: 0 auto;
}

.footer-content {
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
}

.footer-desc {
  max-width: 450px;
  font-size: 14px;
  color: var(--gray);
}

.footer-social {
  display: flex;
  gap: 20px;
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--gray);
}

.footer-bottom-text {
  width: 1040px;
  margin: 0 auto;
  padding: 0 30px;
}

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

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

  .hero h1 {
    font-size: 48px;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    padding: 0 20px;
  }

  .btn {
    width: 100%;
  }

  .section-title {
    font-size: 36px;
  }

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

  .feature-card.large {
    grid-column: span 1;
  }

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

  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .cta-title {
    font-size: 36px;
  }
}

/* Loading Animation */
.fade-in-section {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-section.visible {
  opacity: 1;
  transform: translateY(0);
}
