* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
    overflow-x: hidden;
}



/* Landing Showcase Section */
.landing-showcase {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}

.showcase-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.showcase-content {
  color: #fff;
}

.main-headline {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.2;
  color: #d4af37;
  margin: 40px 0;
  padding: 10px 0px;
}

.headline-segment {
  display: block;
  margin-bottom: 10px;
}

.headline-segment.highlight {
  color: #d4af37;
}

/* 📱 Responsive for small screens */
@media (max-width: 768px) {
  .main-headline {
    font-size: 1.8rem;
    line-height: 1.3;
    padding: 0px 0px;
    text-align: justify;
    font-size: 30px !important;
  }

  .headline-segment {
    margin-bottom: 8px;
  }
  .landing-showcase {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.showcase-description {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
  text-align: justify;
}

.action-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background: #d4af37;
  color: #000;
}

.btn-primary:hover {
  background: #b8941f;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: #d4af37;
  border: 2px solid #d4af37;
}

.btn-secondary:hover {
  background: #d4af37;
  color: #000;
}

.showcase-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.typing-animation {
  width: 300px;
  height: 200px;
  background: #1a1a1a;
  border-radius: 10px;
  padding: 20px;
  border: 2px solid #d4af37;
  position: relative;
  overflow: hidden;
}

.typing-line {
  height: 20px;
  background: #d4af37;
  margin: 10px 0;
  border-radius: 2px;
  opacity: 0;
  animation: codeTyping 3s infinite;
}

.typing-line:nth-child(1) {
  width: 80%;
  animation-delay: 0s;
}
.typing-line:nth-child(2) {
  width: 60%;
  animation-delay: 0.5s;
}
.typing-line:nth-child(3) {
  width: 90%;
  animation-delay: 1s;
}
.typing-line:nth-child(4) {
  width: 70%;
  animation-delay: 1.5s;
}
.typing-line:nth-child(5) {
  width: 85%;
  animation-delay: 2s;
}

@keyframes codeTyping {
  0%,
  20% {
    opacity: 0;
    width: 0;
  }
  50%,
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Offerings Section */
.offerings-section {
  padding: 80px 0;
  background: #fff;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #000;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.offering-card {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  text-align: center;
}

.offering-card:hover {
  border-color: #d4af37;
  transform: translateY(-5px);
}

.offering-icon {
  width: 80px;
  height: 80px;
  background: #d4af37;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.offering-icon i {
  font-size: 2rem;
  color: #000;
}

.offering-card h3 {
  font-size: 1.5rem;
  color: #000;
  margin-bottom: 1rem;
}

.offering-card p {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.offering-features {
  list-style: none;
  text-align: left;
}

.offering-features li {
  padding: 5px 0;
  color: #666;
  position: relative;
  padding-left: 20px;
}

.offering-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #d4af37;
  font-weight: bold;
}

/* Metrics Section */
.metrics-section {
  padding: 80px 0;
  background: #000;
  color: #fff;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.metric-item {
  padding: 2rem;
}

.metric-value {
  font-size: 3rem;
  font-weight: bold;
  color: #d4af37;
  display: block;
  margin-bottom: 0.5rem;
}

.metric-title {
  font-size: 1.1rem;
  color: #fff;
}

/* Tech Stack Section */
.tech-stack {
  padding: 80px 0;
  background: #f8f8f8;
}

.stack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stack-item {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.stack-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.stack-item i {
  font-size: 3rem;
  color: #d4af37;
  margin-bottom: 1rem;
}

.stack-item span {
  font-weight: bold;
  color: #000;
}

/* Contact Banner Section */
.contact-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
  color: #000;
  text-align: center;
}

.banner-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.banner-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.contact-banner .btn-primary {
  background: #000;
  color: #d4af37;
}

.contact-banner .btn-primary:hover {
  background: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .showcase-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .main-headline {
    font-size: 2.5rem;
  }

  .action-buttons {
    justify-content: center;
  }

  .offerings-grid {
    grid-template-columns: 1fr;
  }

  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stack-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .main-headline {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .banner-content h2 {
    font-size: 2rem;
  }

  .metrics-grid {
    grid-template-columns: 1fr;
  }
}
