* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background: #0b0f1a;
  color: white;
  overflow-x: hidden;
}

/* ================= NAVBAR ================= */

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 8%;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
}

.logo span {
  color: #b4f000;
}

.nav-links a {
  margin-left: 35px;
  text-decoration: none;
  color: white;
  font-weight: 500;
  position: relative;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #7c3aed;
}

/* ================= HERO ================= */

.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 8%;
  position: relative;
}

.hero-content {
  max-width: 650px;
  z-index: 2;
}

.hero-content h1 {
  font-size: 54px;
  line-height: 1.15;
  font-weight: 800;
}

.hero-content h1 span {
  background: linear-gradient(90deg, #7c3aed, #b4f000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  margin: 24px 0;
  color: #9ca3af;
  font-size: 18px;
  line-height: 1.6;
}

.hero-buttons button {
  padding: 14px 32px;
  margin-right: 15px;
  border-radius: 50px;
  border: none;
  font-size: 15px;
  cursor: pointer;
  transition: 0.4s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #7c3aed, #b4f000);
  color: black;
  font-weight: 600;
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.4);
}

.btn-secondary {
  background: transparent;
  border: 1px solid #7c3aed;
  color: #7c3aed;
}

.btn-secondary:hover {
  background: #7c3aed;
  color: white;
}

/* Animated Abstract Shape */

.hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #7c3aed55, transparent 70%);
  top: 20%;
  right: -150px;
  filter: blur(60px);
  animation: float 6s ease-in-out infinite alternate;
}

@keyframes float {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(40px);
  }
}

/* Responsive */

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 38px;
  }

  .nav-links {
    display: none;
  }
}

/* ================= COMPANY SECTION ================= */

.company-section {
  padding: 120px 8%;
  background: #111827;
}

.company-container {
  max-width: 1200px;
  margin: auto;
}

.company-header {
  max-width: 750px;
  margin-bottom: 80px;
}

.section-tag {
  font-size: 14px;
  letter-spacing: 2px;
  color: #b4f000;
  font-weight: 600;
}

.company-header h2 {
  font-size: 42px;
  margin: 20px 0;
  font-weight: 700;
}

.company-header p {
  color: #9ca3af;
  line-height: 1.8;
  font-size: 18px;
}

.company-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.company-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, #1f2937, #0b0f1a);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  font-weight: 700;
  color: #7c3aed;
}

.company-details {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.detail-box h4 {
  font-size: 20px;
  margin-bottom: 12px;
}

.detail-box p {
  color: #9ca3af;
  line-height: 1.7;
  font-size: 15px;
}

@media (max-width: 900px) {
  .company-content {
    grid-template-columns: 1fr;
  }

  .company-header h2 {
    font-size: 32px;
  }
}
/* ================= Animated SVG Logo ================= */

/* ================= Animated Full Logo ================= */

.image-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, #0b0f1a, #111827);
  border-radius: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.dk-logo {
  width: 85%;
  max-width: 1000px;
}

.logo-text {
  font-size: 90px;
  font-weight: 800;
  fill: transparent;
  stroke: #7c3aed;
  stroke-width: 1.8;
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  letter-spacing: 4px;
  animation:
    drawText 3.5s ease forwards,
    fillText 1s ease forwards 3.5s,
    glowPulse 4s ease-in-out infinite 4.5s;
}

/* Draw stroke */
@keyframes drawText {
  to {
    stroke-dashoffset: 0;
  }
}

/* Fill after draw */
@keyframes fillText {
  to {
    fill: #7c3aed;
    stroke-width: 0;
  }
}

/* Subtle professional glow */
@keyframes glowPulse {
  0% {
    fill: #7c3aed;
    filter: drop-shadow(0 0 0px #7c3aed);
  }
  50% {
    fill: #b4f000;
    filter: drop-shadow(0 0 18px #b4f000);
  }
  100% {
    fill: #7c3aed;
    filter: drop-shadow(0 0 0px #7c3aed);
  }
}

/* Responsive */
@media (max-width: 900px) {
  .logo-text {
    font-size: 48px;
  }
}

/* ================= SERVICES SECTION ================= */

.services-section {
  padding: 120px 8%;
  background: #0b0f1a;
}

.services-container {
  max-width: 1200px;
  margin: auto;
}

.services-header {
  max-width: 700px;
  margin-bottom: 80px;
}

.services-header h2 {
  font-size: 42px;
  margin: 20px 0;
}

.services-header p {
  color: #9ca3af;
  font-size: 18px;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 40px;
}

.service-item {
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.service-item h4 {
  font-size: 20px;
  margin-bottom: 15px;
}

.service-item p {
  color: #9ca3af;
  font-size: 15px;
  line-height: 1.7;
}

/* Responsive */

@media (max-width: 1000px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 650px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-header h2 {
    font-size: 32px;
  }
}
/* ================= CONTACT SECTION ================= */

.contact-section {
  padding: 120px 8%;
  background: #111827;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-left h2 {
  font-size: 40px;
  margin: 20px 0;
}

.contact-left p {
  color: #9ca3af;
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item h4 {
  margin-bottom: 8px;
}

.contact-item p {
  color: #9ca3af;
  font-size: 15px;
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: #0b0f1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: white;
  font-size: 14px;
  outline: none;
  transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #7c3aed;
}

.contact-form button {
  width: fit-content;
}

/* Responsive */

@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-left h2 {
    font-size: 32px;
  }
}
/* ================= FOOTER ================= */

.footer {
  background: #0b0f1a;
  padding-top: 80px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 8% 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.footer-col h3 {
  margin-bottom: 20px;
}

.footer-col h4 {
  margin-bottom: 20px;
}

.footer-col p {
  color: #9ca3af;
  font-size: 14px;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #9ca3af;
  font-size: 14px;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #7c3aed;
}

.footer-bottom {
  text-align: center;
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  color: #9ca3af;
}

/* Responsive */

@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}
/* html {
    scroll-behavior: smooth;
} */