.nav-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.nav-links a svg {
  width: 18px;
  height: 18px;
  stroke: #555;
}

.nav-links a:hover {
  color: #000;
}

.nav-links a:hover svg {
  stroke: #000;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    :root {
      --primary: #0ea5e9; --secondary: #14b8a6; --background: #ffffff;
      --background-alt: #f8fafc; --foreground: #0f172a; --foreground-muted: #64748b;
      --card: #ffffff; --card-border: #e2e8f0;
      --gradient: linear-gradient(135deg, #0ea5e9 0%, #14b8a6 100%);
    }
    .dark {
      --primary: #38bdf8; --secondary: #2dd4bf; --background: #0f172a;
      --background-alt: #1e293b; --foreground: #f1f5f9; --foreground-muted: #94a3b8;
      --card: #1e293b; --card-border: #334155;
    }
    html { scroll-behavior: smooth; }
    body2 { font-family: 'Inter', sans-serif; background: var(--background); color: var(--foreground); line-height: 1.6; transition: all 0.3s ease; }
    a { text-decoration: none; color: inherit; }
    .container2 { max-width: 900px; margin: 0 auto; padding: 0 20px; }
    .header2 { position: fixed; top: 0; left: 0; right: 0; background: var(--background); border-bottom: 1px solid var(--card-border); z-index: 1000; }
    .header-content2 { display: flex; align-items: center; justify-content: space-between; padding: 15px 20px; max-width: 1200px; margin: 0 auto; }
    .page-header2 { padding: 150px 0 60px; background: var(--background-alt); text-align: center; }
    .page-header2 h1 { font-size: 2.5rem; font-weight: 800; margin-bottom: 10px; }
    .page-header2 p { color: var(--foreground-muted); }
    .content2 { padding: 60px 0; }
    .content2 h2 { font-size: 1.5rem; font-weight: 700; margin: 40px 0 15px; color: var(--primary); }
    .content2 h2:first-of-type { margin-top: 0; }
    .content2 p, .content li { color: var(--foreground-muted); margin-bottom: 15px; line-height: 1.8; }
    .content2 ul { margin-left: 25px; margin-bottom: 20px; }
    .content2 li { margin-bottom: 10px; }
    .content2 a { color: var(--primary); }
    .content2 a:hover { text-decoration: underline; }
    .cookie-table2 { width: 100%; border-collapse: collapse; margin: 20px 0; }
    .cookie-table2 th, .cookie-table td { border: 1px solid var(--card-border); padding: 12px 15px; text-align: left; }
    .cookie-table2 th { background: var(--background-alt); font-weight: 600; }
    .cookie-table2 td { color: var(--foreground-muted); }
    @media (max-width: 768px) {
      .cookie-table2 { font-size: 0.9rem; }
      .cookie-table2 th, .cookie-table td { padding: 8px 10px; }
    }
	    *, *::before, *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --primary: #0ea5e9;
      --primary-dark: #0284c7;
      --secondary: #14b8a6;
      --background: #ffffff;
      --background-alt: #f8fafc;
      --foreground: #0f172a;
      --foreground-muted: #64748b;
      --card: #ffffff;
      --card-border: #e2e8f0;
      --gradient: linear-gradient(135deg, #0ea5e9 0%, #14b8a6 100%);
    }

    .dark {
      --primary: #38bdf8;
      --primary-dark: #0ea5e9;
      --secondary: #2dd4bf;
      --background: #0f172a;
      --background-alt: #1e293b;
      --foreground: #f1f5f9;
      --foreground-muted: #94a3b8;
      --card: #1e293b;
      --card-border: #334155;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', sans-serif;
      background-color: var(--background);
      color: var(--foreground);
      line-height: 1.6;
      transition: background-color 0.3s ease, color 0.3s ease;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      background: var(--background);
      border-bottom: 1px solid var(--card-border);
      z-index: 1000;
      transition: all 0.3s ease;
    }

    .header.scrolled {
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .header-content {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 15px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .logo img {
      width: 80px;
      height: auto;
      border-radius: 0;
      object-fit: contain;
    }

    .logo-text {
      font-size: 1.25rem;
      font-weight: 700;
      background: var(--gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 30px;
    }

    .nav-links {
      display: flex;
      gap: 30px;
      list-style: none;
    }

    .nav-links a {
      font-weight: 500;
      color: var(--foreground-muted);
      transition: color 0.3s ease;
      position: relative;
    }

    .nav-links a:hover {
      color: var(--primary);
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--gradient);
      transition: width 0.3s ease;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .dark-toggle {
      background: var(--background-alt);
      border: 1px solid var(--card-border);
      border-radius: 50%;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
      color: var(--foreground);
    }

    .dark-toggle:hover {
      background: var(--primary);
      color: white;
    }

    .dark-toggle svg {
      width: 20px;
      height: 20px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px 24px;
      border-radius: 8px;
      font-weight: 600;
      font-size: 0.95rem;
      cursor: pointer;
      transition: all 0.3s ease;
      border: none;
    }

    .btn-primary {
      background: var(--gradient);
      color: white;
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3);
    }

    .btn-outline {
      background: transparent;
      border: 2px solid var(--primary);
      color: var(--primary);
    }

    .btn-outline:hover {
      background: var(--primary);
      color: white;
    }

    .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 5px;
    }

    .mobile-menu-btn span {
      display: block;
      width: 25px;
      height: 3px;
      background: var(--foreground);
      margin: 5px 0;
      transition: all 0.3s ease;
      border-radius: 2px;
    }

    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding-top: 80px;
      background: var(--background);
      position: relative;
      overflow: hidden;
      z-index: 1;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 800px;
      height: 800px;
      background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
      animation: float 20s ease-in-out infinite;
    }

    .hero::after {
      content: '';
      position: absolute;
      bottom: -30%;
      left: -10%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(20, 184, 166, 0.1) 0%, transparent 70%);
      animation: float 15s ease-in-out infinite reverse;
    }

    @keyframes float {
      0%, 100% { transform: translate(0, 0) rotate(0deg); }
      33% { transform: translate(30px, -30px) rotate(5deg); }
      66% { transform: translate(-20px, 20px) rotate(-5deg); }
    }

    .hero-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .hero-text h1 {
      font-size: 3.5rem;
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: 20px;
    }

    .hero-text h1 span {
      background: var(--gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-text p {
      font-size: 1.2rem;
      color: var(--foreground-muted);
      margin-bottom: 30px;
      max-width: 500px;
    }

    .hero-buttons {
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
    }

    .hero-visual {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .hero-shapes {
      position: relative;
      width: 400px;
      height: 400px;
    }

    .shape {
      position: absolute;
      border-radius: 20px;
      animation: morph 8s ease-in-out infinite;
    }

    .shape-1 {
      width: 200px;
      height: 200px;
      background: var(--gradient);
      top: 20%;
      left: 20%;
      animation-delay: 0s;
    }

    .shape-2 {
      width: 150px;
      height: 150px;
      background: rgba(14, 165, 233, 0.3);
      top: 10%;
      right: 15%;
      animation-delay: -2s;
    }

    .shape-3 {
      width: 100px;
      height: 100px;
      background: rgba(20, 184, 166, 0.4);
      bottom: 20%;
      left: 10%;
      animation-delay: -4s;
    }

    @keyframes morph {
      0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; transform: rotate(0deg); }
      50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; transform: rotate(180deg); }
    }

    .stats {
      display: flex;
      gap: 40px;
      margin-top: 50px;
    }

    .stat {
      text-align: center;
    }

    .stat-number {
      font-size: 2.5rem;
      font-weight: 800;
      background: var(--gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .stat-label {
      font-size: 0.9rem;
      color: var(--foreground-muted);
    }
    
    .services {
      padding: 100px 0;
      background: var(--background-alt);
    }

    .section-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .section-tag {
      display: inline-block;
      background: var(--gradient);
      color: white;
      padding: 8px 20px;
      border-radius: 50px;
      font-size: 0.85rem;
      font-weight: 600;
      margin-bottom: 15px;
    }

    .section-title {
      font-size: 2.5rem;
      font-weight: 800;
      margin-bottom: 15px;
    }

    .section-subtitle {
      color: var(--foreground-muted);
      font-size: 1.1rem;
      max-width: 600px;
      margin: 0 auto;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }

    .service-card {
      background: var(--card);
      border: 1px solid var(--card-border);
      border-radius: 20px;
      padding: 40px 30px;
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: var(--gradient);
      transform: scaleX(0);
      transition: transform 0.4s ease;
    }

    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

    .service-card:hover::before {
      transform: scaleX(1);
    }

    .service-icon {
      width: 70px;
      height: 70px;
      background: var(--gradient);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 25px;
    }

    .service-icon svg {
      width: 35px;
      height: 35px;
      color: white;
    }

    .service-card h3 {
      font-size: 1.3rem;
      font-weight: 700;
      margin-bottom: 15px;
    }

    .service-card p {
      color: var(--foreground-muted);
      line-height: 1.7;
    }

    .about {
      padding: 100px 0;
      background: var(--background);
    }

    .about-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .about-image {
      position: relative;
    }

    .about-image-main {
      width: 100%;
      height: 400px;
      background: url("about.png") center/cover no-repeat;
      border-radius: 20px;
      position: relative;
      overflow: hidden;
    }

    .about-image-main::before {
      content: '';
      position: absolute;
      inset: 20px;
      border: 2px solid rgba(255,255,255,0.3);
      border-radius: 15px;
    }

    .about-floating-card {
      position: absolute;
      bottom: -30px;
      right: -30px;
      background: var(--card);
      border: 1px solid var(--card-border);
      border-radius: 16px;
      padding: 25px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
      animation: bounce 3s ease-in-out infinite;
    }

    @keyframes bounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }

    .about-floating-card .number {
      font-size: 2.5rem;
      font-weight: 800;
      background: var(--gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .about-floating-card .label {
      color: var(--foreground-muted);
      font-size: 0.9rem;
    }

    .about-text h2 {
      font-size: 2.5rem;
      font-weight: 800;
      margin-bottom: 20px;
    }

    .about-text h2 span {
      background: var(--gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .about-text p {
      color: var(--foreground-muted);
      margin-bottom: 20px;
      line-height: 1.8;
    }

    .about-features {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-top: 30px;
    }

    .about-feature {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .about-feature-icon {
      width: 40px;
      height: 40px;
      background: rgba(14, 165, 233, 0.1);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
    }

    .about-feature span {
      font-weight: 600;
    }

    .contact {
      padding: 100px 0;
      background: var(--background-alt);
    }

    .contact-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
    }

    .contact-info h2 {
      font-size: 2.5rem;
      font-weight: 800;
      margin-bottom: 20px;
    }

    .contact-info h2 span {
      background: var(--gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .contact-info > p {
      color: var(--foreground-muted);
      margin-bottom: 40px;
      line-height: 1.8;
    }

    .contact-cards {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .contact-card {
      display: flex;
      align-items: center;
      gap: 20px;
      background: var(--card);
      border: 1px solid var(--card-border);
      border-radius: 16px;
      padding: 25px;
      transition: all 0.3s ease;
    }

    .contact-card:hover {
      transform: translateX(10px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .contact-card-icon {
      width: 55px;
      height: 55px;
      background: var(--gradient);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .contact-card-icon svg {
      width: 25px;
      height: 25px;
      color: white;
    }

    .contact-card h4 {
      font-weight: 700;
      margin-bottom: 5px;
    }

    .contact-card p {
      color: var(--foreground-muted);
      font-size: 0.95rem;
    }

    .contact-form-wrapper {
      background: var(--card);
      border: 1px solid var(--card-border);
      border-radius: 20px;
      padding: 40px;
    }

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .form-group label {
      font-weight: 600;
      font-size: 0.95rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
      padding: 14px 18px;
      border: 1px solid var(--card-border);
      border-radius: 10px;
      font-family: inherit;
      font-size: 1rem;
      background: var(--background);
      color: var(--foreground);
      transition: all 0.3s ease;
    }

    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
    }

    .form-group textarea {
      resize: vertical;
      min-height: 120px;
    }

    .footer {
      background: var(--background);
      border-top: 1px solid var(--card-border);
      padding: 60px 0 30px;
    }

    .footer-content {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 40px;
    }

    .footer-brand p {
      color: var(--foreground-muted);
      margin: 20px 0;
      line-height: 1.8;
    }

    .footer-social {
      display: flex;
      gap: 12px;
    }

    .footer-social a {
      width: 40px;
      height: 40px;
      background: var(--background-alt);
      border: 1px solid var(--card-border);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }

    .footer-social a:hover {
      background: var(--gradient);
      color: white;
      border-color: transparent;
    }

    .footer-links h4 {
      font-weight: 700;
      margin-bottom: 20px;
    }

    .footer-links ul {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 12px;
    }

    .footer-links a {
      color: var(--foreground-muted);
      transition: color 0.3s ease;
    }

    .footer-links a:hover {
      color: var(--primary);
    }

    .footer-bottom {
      border-top: 1px solid var(--card-border);
      padding-top: 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
    }

    .footer-bottom p {
      color: var(--foreground-muted);
      font-size: 0.9rem;
    }

    .footer-bottom-links {
      display: flex;
      gap: 30px;
    }

    .footer-bottom-links a {
      color: var(--foreground-muted);
      font-size: 0.9rem;
      transition: color 0.3s ease;
    }

    .footer-bottom-links a:hover {
      color: var(--primary);
    }

.mobile-menu {
  position: fixed;
  top: 100px;
  left: 0;
  width: 100%;
  background: var(--background);
  border-bottom: 1px solid var(--card-border);
  padding: 20px;
  z-index: 999999;
  display: none;
}

.mobile-menu.active {
  display: block;
}

     .mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

    .mobile-menu ul {
      list-style: none;
    }

    .mobile-menu li {
      padding: 15px 0;
      border-bottom: 1px solid var(--card-border);
    }

    .mobile-menu a {
      font-weight: 500;
      font-size: 1.1rem;
    }

    .fade-in {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.6s ease;
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 1024px) {
      .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .hero-text p {
        margin: 0 auto 30px;
      }

      .hero-buttons {
        justify-content: center;
      }

      .hero-visual {
        display: none;
      }

      .services-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .about-content {
        grid-template-columns: 1fr;
      }

      .about-image {
        order: -1;
      }

      .contact-content {
        grid-template-columns: 1fr;
      }

      .footer-content {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .nav-links {
        display: none;
      }

      .nav-actions .btn {
        display: none;
      }

      .mobile-menu-btn {
        display: block;
      }

      .hero-text h1 {
        font-size: 2.5rem;
      }

      .stats {
        justify-content: center;
      }

      .services-grid {
        grid-template-columns: 1fr;
      }

      .form-row {
        grid-template-columns: 1fr;
      }

      .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .footer-social {
        justify-content: center;
      }

      .footer-bottom {
        flex-direction: column;
        text-align: center;
      }
    }
	#backToTop2 {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  color: var(--primary);
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 999;
}

#backToTop2 svg {
  width: 20px;
  height: 20px;
  transition: 0.3s;
}

#backToTop2:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-4px) scale(1.05);
}

#backToTop2:hover svg {
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .footer-brand {
    text-align: center;
  }

  .footer-brand .logo {
    display: inline-block;
  }
}

#sideTab {
  position: fixed;
  bottom: 140px;
  left: 0;
  background: linear-gradient(135deg, #0ea5e9, #6366f1);
  color: white;
  padding: 14px 20px;
  border-radius: 0 14px 14px 0;
  font-weight: 600;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

#sideTab span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 13px;
  letter-spacing: 0.5px;
}

#sideTab:hover {
  padding-left: 24px;
}

#sidePopup {
  position: fixed;
  bottom: 120px;
  left: -320px;
  width: 300px;
  background: linear-gradient(145deg, rgba(15,23,42,0.95), rgba(30,41,59,0.95));
  backdrop-filter: blur(14px);
  color: white;
  border-radius: 0 18px 18px 0;
  padding: 22px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.35);
  transition: all 0.4s ease;
  z-index: 9999;
}

#sidePopup.active {
  left: 0;
}

#sidePopup h3 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 700;
}

#sidePopup p {
  font-size: 14px;
  color: #cbd5f5;
  margin-bottom: 18px;
  line-height: 1.6;
}

.popup-btn {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, #0ea5e9, #6366f1);
  padding: 12px;
  border-radius: 12px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.popup-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(14,165,233,0.4);
}

#closePopup {
  position: absolute;
  top: 10px;
  right: 12px;
  background: rgba(255,255,255,0.9);
  color: black;
  border: none;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  cursor: pointer;
}

@media (max-width: 768px) {
  #sideTab,
  #sidePopup {
    display: none !important;
  }
}

img {
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  pointer-events: none;
}

img:not(a img) {
  pointer-events: none;
}

a img {
  pointer-events: auto;
}