:root {
  --bg: #060816;
  --card: #0f172a;
  --primary: #7c3aed;
  --secondary: #06b6d4;
  --text: #ffffff;
  --muted: #9ca3af;
  --border: rgba(255, 255, 255, 0.08);
  --glass: rgba(255, 255, 255, 0.04);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
}

section {
  padding: 120px 0;
  position: relative;
}

/* Animated Background */

.bg-blur {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.25;
  z-index: -1;
  animation: float 8s ease-in-out infinite;
}

.bg1 {
  background: #7c3aed;
  top: -100px;
  left: -100px;
}

.bg2 {
  background: #06b6d4;
  bottom: -150px;
  right: -100px;
  animation-delay: 2s;
}

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

/* HEADER */

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(14px);
  background: rgba(6, 8, 22, 0.65);
  border-bottom: 1px solid var(--border);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.logo i {
  font-size: 20px;
  color: #06b6d4;
}

.logo-main {
  font-size: 28px;
  color: white;
}

.logo-accent {
  font-size: 20px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 10px;
  background: linear-gradient(
    to right,
    rgba(124, 58, 237, 0.18),
    rgba(6, 182, 212, 0.18)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #06b6d4;
  font-size: 18px;
  margin-left: 2px;
  position: relative;
  top: -1px;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: #d1d5db;
  transition: 0.3s;
}

.nav-links a:hover {
  color: white;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.lang-btn {
  width: 42px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: transparent;
  color: #9ca3af;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  transition: 0.3s ease;
}

.lang-btn:hover {
  color: white;
  background: rgba(255, 255, 255, 0.05);
}

.lang-btn.active {
  background: linear-gradient(
    to right,
    rgba(124, 58, 237, 0.25),
    rgba(6, 182, 212, 0.25)
  );
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 5px 15px rgba(124, 58, 237, 0.12);
}

/* HERO */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  padding: 12px 18px;
  border-radius: 50px;
  margin-bottom: 30px;
  color: #d1d5db;
}

.hero-text h1 {
  font-size: 72px;
  line-height: 1.05;
  margin-bottom: 30px;
  font-weight: 900;
}

.gradient-text {
  background: linear-gradient(to right, #7c3aed, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text p {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 14px;
  font-weight: 600;
  transition: 0.35s;
}

.btn-primary {
  background: linear-gradient(to right, #7c3aed, #06b6d4);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-4px);
}

.btn-secondary {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.contact-btn {
  width: 100%;
  height: 62px;
  border: none;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: white;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;

  transition: 0.35s ease;
  backdrop-filter: blur(10px);

  position: relative;
  overflow: hidden;
}

.contact-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(124, 58, 237, 0.25),
    rgba(6, 182, 212, 0.25)
  );

  opacity: 0;
  transition: 0.35s;
}

.contact-btn span,
.contact-btn i {
  position: relative;
  z-index: 2;
}

.contact-btn i {
  font-size: 14px;
  transition: 0.35s;
}

.contact-btn:hover {
  transform: translateY(-3px);
  border-color: rgba(124, 58, 237, 0.35);
  box-shadow:
    0 10px 30px rgba(124, 58, 237, 0.18),
    0 5px 15px rgba(6, 182, 212, 0.12);
}

.contact-btn:hover::before {
  opacity: 1;
}

.contact-btn:hover i {
  transform: translate(3px, -3px);
}

.hero-card {
  background: var(--glass);
  border: 1px solid var(--border);
  padding: 40px;
  border-radius: 30px;
  backdrop-filter: blur(18px);
  animation: cardFloat 5s ease-in-out infinite;
}

@keyframes cardFloat {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 35px;
}

.dashboard-header p {
  color: #9ca3af;
  font-size: 14px;
}

.dots {
  display: flex;
  gap: 8px;
}

.dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #7c3aed;
}

.dots span:nth-child(2) {
  background: #06b6d4;
}

.dots span:nth-child(3) {
  background: #ffffff;
}

.dashboard-content {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.dashboard-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.dashboard-item h4 {
  margin-bottom: 5px;
}

.dashboard-item span {
  color: #9ca3af;
  font-size: 14px;
}

.dashboard-icon {
  width: 55px;
  height: 55px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.dashboard-icon.purple {
  background: linear-gradient(to right, #7c3aed, #8b5cf6);
}

.dashboard-icon.cyan {
  background: linear-gradient(to right, #06b6d4, #0891b2);
}

.dashboard-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.stat-box {
  padding: 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  text-align: center;
}

.stat-box h3 {
  font-size: 32px;
  margin-bottom: 8px;
  background: linear-gradient(to right, #7c3aed, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-box p {
  color: #9ca3af;
}

.progress-wrapper {
  margin-top: 10px;
}

.progress-text {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  color: #d1d5db;
}

.progress-bar {
  width: 100%;
  height: 12px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  overflow: hidden;
}

.progress {
  width: 94%;
  height: 100%;
  border-radius: 20px;
  background: linear-gradient(to right, #7c3aed, #06b6d4);
  animation: progressAnimation 2s ease;
}

@keyframes progressAnimation {
  from {
    width: 0;
  }
  to {
    width: 94%;
  }
}

/* SECTION TITLE */

.section-title {
  text-align: center;
  margin-bottom: 70px;
}

.section-title span {
  color: #06b6d4;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
}

.section-title h2 {
  font-size: 54px;
  margin-top: 15px;
}

.section-title p {
  margin-top: 20px;
  color: var(--muted);
  line-height: 1.8;
}

/* GLASS CARD */

.glass-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 28px;
  backdrop-filter: blur(16px);
  transition: 0.4s;
}

.glass-card:hover {
  transform: translateY(-8px);
  border-color: rgba(124, 58, 237, 0.4);
}

/* ABOUT */

.about-grid,
.services-grid,
.team-grid,
.reference-grid,
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.about-box,
.service-card,
.team-card,
.reference-card,
.highlight-card {
  padding: 40px;
}

.icon-box,
.service-icon,
.reference-icon,
.career-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, #7c3aed, #06b6d4);
  font-size: 28px;
  margin-bottom: 25px;
}

.about-box p,
.service-card p,
.reference-card p {
  color: var(--muted);
  line-height: 1.8;
  margin-top: 15px;
}

/* TEAM */

.team-card {
  text-align: center;
}

.team-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 25px;
}

.team-role {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
  margin-bottom: 20px;
  color: #06b6d4;
}

.team-role i {
  font-size: 14px;
}

.team-role p {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  color: #9ca3af;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.social-icons i {
  font-size: 18px;
  color: #d1d5db;
  transition: 0.3s;
  cursor: pointer;
}

.social-icons i:hover {
  color: #06b6d4;
}

/* HIGHLIGHTS */

.highlight-card {
  text-align: center;
}

.highlight-card i {
  font-size: 38px;
  margin-bottom: 20px;
  color: #06b6d4;
}

.highlight-card h3 {
  font-size: 52px;
  margin-bottom: 10px;
  background: linear-gradient(to right, #7c3aed, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.highlight-card p {
  color: var(--muted);
}

/* CAREER */

.career-box {
  padding: 70px;
  text-align: center;
}

.career-box h2 {
  margin-bottom: 20px;
}

.career-box h3 {
  margin-bottom: 20px;
  font-size: 32px;
}

.career-box p {
  color: var(--muted);
  max-width: 700px;
  margin: auto;
  line-height: 1.8;
}

/* CONTACT */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info,
.contact-form {
  padding: 45px;
}

.contact-info h3,
.contact-form h3 {
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 25px;
  color: #d1d5db;
}

.contact-item i {
  color: #06b6d4;
  font-size: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: white;
  margin-bottom: 20px;
  outline: none;
  font-family: "Inter", sans-serif;
}

.contact-form textarea {
  min-height: 160px;
  resize: none;
}

.form-status {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 500;
  display: none;
  border: 1px solid transparent;
  animation: fadeStatus 0.35s ease;
}

.form-status.success {
  display: block;
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.25);
  color: #4ade80;
}

.form-status.error {
  display: block;
  background: rgba(239, 68, 68, 0.12);
  border-color: rgba(239, 68, 68, 0.25);
  color: #f87171;
}

.contact-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;

  transform: none !important;
}

@keyframes fadeStatus {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* FOOTER */

footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 700;
  color: white;
}

.footer-logo i {
  font-size: 18px;
  color: #06b6d4;
}

/* ANIMATION */

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: 1s ease;
}

.fade-up.active {
  opacity: 1;
  transform: translateY(0);
}

/* TO TOP BUTTON */
#scrollTopBtn {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 58px;
  height: 58px;
  border: none;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  color: white;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.9);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    visibility 0.35s;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

#scrollTopBtn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

#scrollTopBtn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.25),
    rgba(6, 182, 212, 0.25)
  );
  opacity: 0;
  transition: 0.35s ease;
}

#scrollTopBtn i {
  position: relative;
  z-index: 2;
  transition: 0.35s ease;
}

#scrollTopBtn:hover {
  transform: translateY(-5px) scale(1.03);
  border-color: rgba(124, 58, 237, 0.35);
  box-shadow:
    0 12px 35px rgba(124, 58, 237, 0.18),
    0 5px 20px rgba(6, 182, 212, 0.12);
}

#scrollTopBtn:hover::before {
  opacity: 1;
}

#scrollTopBtn:hover i {
  transform: translateY(-2px);
}

/* RESPONSIVE */

@media (max-width: 1000px) {
  .hero-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-text h1 {
    font-size: 52px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero-text h1 {
    font-size: 42px;
  }

  .section-title h2 {
    font-size: 38px;
  }

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