/* === HERO BACKGROUND === */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.95)),
  color: #d8ffd8;
  text-align: center;
  padding: 130px 20px;
  border-bottom: 1px solid #1a1a1a;
  box-shadow: inset 0 0 100px rgba(0, 255, 100, 0.05);
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(50,255,150,0.15), transparent 70%);
  z-index: 0;
}

.hero * {
  position: relative;
  z-index: 1;
}

/* === SHOWCASE SECTION === */
.showcase {
  background: #0b0b0b;
  padding: 100px 20px;
  text-align: center;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
}

.showcase h2 {
  font-size: 32px;
  color: #76ff76;
  margin-bottom: 20px;
  text-shadow: 0 0 10px #1b7f3f;
}

.showcase p {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 16px;
  color: #b8ffb8;
  line-height: 1.6;
}

.showcase-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.showcase-item {
  width: 380px;
  background: #101010;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0,255,100,0.05);
  border: 1px solid #1f1f1f;
  transition: 0.3s;
}

.showcase-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(0,255,100,0.15);
}

.showcase-item img {
  width: 100%;
  display: block;
  border-bottom: 1px solid #1c1c1c;
}

.showcase-item h3 {
  color: #6cff6c;
  font-size: 18px;
  margin: 14px 0 6px;
}

.showcase-item p {
  font-size: 14px;
  color: #b8ffb8;
  padding: 0 15px 20px;
}

/* === RESET === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #0b0b0b;
  color: #d0ffd0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* === GLOBAL CONTAINER === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* === HEADER === */
header {
  background-color: #0c0c0c;
  border-bottom: 1px solid #1c1c1c;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-logo {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 0 6px #3f8f3f);
  transition: transform 0.3s ease;
}

.header-logo:hover {
  transform: scale(1.05);
}

/* === HERO SECTION === */
.hero {
  background: radial-gradient(circle at top, #111 0%, #060606 100%);
  color: #d8ffd8;
  text-align: center;
  padding: 100px 20px;
  border-bottom: 1px solid #1a1a1a;
}

.hero h1 {
  font-size: 42px;
  color: #76ff76;
  text-shadow: 0 0 12px #1b7f3f;
  margin-bottom: 15px;
}

.hero p {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 17px;
  color: #b5ffb5;
  line-height: 1.6;
}

.btn-primary {
  display: inline-block;
  background: #1b7f3f;
  border: 1px solid #38a838;
  color: #fff;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 8px;
  text-decoration: none;
  margin: 8px;
  transition: 0.25s;
}
.btn-primary:hover {
  background: #38a838;
  box-shadow: 0 0 10px #38a838;
}

/* === FEATURES SECTION === */
.features {
  background-color: #0c0f0c;
  padding: 80px 20px;
  border-top: 1px solid #1a1a1a;
  flex: 1;
  text-align: center;
}

.features h2 {
  font-size: 32px;
  color: #76ff76;
  margin-bottom: 40px;
  text-shadow: 0 0 10px #1b7f3f;
}

.feature-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature {
  background: #101010;
  border: 1px solid #1c1c1c;
  border-radius: 10px;
  width: 280px;
  padding: 25px;
  color: #b8ffb8;
  text-align: center;
  transition: 0.3s;
  box-shadow: 0 0 10px rgba(0,255,100,0.05);
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 20px rgba(0,255,100,0.2);
}
.feature h3 {
  color: #6cff6c;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 10px;
}
.feature i {
  font-size: 20px;
  margin-right: 6px;
  color: #3fff3f;
}

/* === FOOTER === */
footer {
  background: #0c0c0c;
  border-top: 1px solid #1c1c1c;
  color: #7aff7a;
  text-align: center;
  padding: 20px 0;
  font-size: 13px;
}
footer a {
  color: #3fff3f;
  text-decoration: none;
}
footer a:hover {
  color: #76ff76;
}

/* === LIVE PREVIEW SECTION === */
.preview {
  background: radial-gradient(circle at top, #0c0c0c 0%, #060606 100%);
  color: #b8ffb8;
  text-align: center;
  padding: 80px 20px;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
}

.preview h2 {
  color: #76ff76;
  font-size: 28px;
  margin-bottom: 10px;
  text-shadow: 0 0 8px #3f8f3f;
}

.preview p {
  font-size: 15px;
  max-width: 700px;
  margin: 0 auto 30px;
  color: #b8ffb8;
  line-height: 1.6;
}

.preview-box iframe {
  width: 90%;
  max-width: 1000px;
  height: 550px;
  border-radius: 12px;
  border: 1px solid #1e4e1e;
  background: #0a0a0a;
  box-shadow: 0 0 20px rgba(0, 255, 100, 0.1);
  transition: all 0.3s ease;
}
.preview-box iframe:hover {
  box-shadow: 0 0 25px rgba(0, 255, 100, 0.3);
  transform: scale(1.01);
}

/* === PARTNERS SECTION === */
.partners {
  background: #0b0b0b;
  text-align: center;
  padding: 80px 20px;
  border-top: 1px solid #1a1a1a;
}

.partners h2 {
  font-size: 32px;
  color: #76ff76;
  text-shadow: 0 0 10px #1b7f3f;
  margin-bottom: 10px;
}

.partners-subtext {
  color: #b8ffb8;
  font-size: 15px;
  margin-bottom: 40px;
  font-style: italic;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.partner-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.partner-logos img {
  height: 100px;
  opacity: 0.7;
  filter: drop-shadow(0 0 6px rgba(0, 255, 100, 0.2));
  transition: 0.3s;
}

.partner-logos img:hover {
  transform: scale(1.1);
  opacity: 1;
  filter: drop-shadow(0 0 10px rgba(0, 255, 100, 0.5));
}

.partners-contact a {
  color: #76ff76;
  text-decoration: none;
  font-weight: 600;
  transition: 0.25s ease;
  text-shadow: 0 0 6px rgba(0, 255, 100, 0.4);
}

.partners-contact a:hover {
  color: #9fff9f;
  text-shadow: 0 0 10px rgba(0, 255, 100, 0.8);
  transform: scale(1.03);
}


/* === INTEGRATIONS SECTION === */
.integrations {
  background: #0b0b0b;
  text-align: center;
  padding: 60px 20px;
  border-top: 1px solid #1a1a1a;
}

.integrations h3 {
  font-size: 24px;
  color: #d8ffd8;
  font-weight: 600;
  margin-bottom: 20px;
  text-shadow: 0 0 8px rgba(0,255,100,0.3);
}


.integration-logos {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 10px;
}

.integration-logos img {
  height: 55px; /* same as partner logos */
  opacity: 0.8;
  filter: drop-shadow(0 0 6px rgba(0,255,100,0.2));
  transition: transform 0.3s ease, opacity 0.3s ease, filter 0.3s ease;
}

.integration-logos img:hover {
  transform: scale(1.1);
  opacity: 1;
  filter: drop-shadow(0 0 10px rgba(0, 255, 100, 0.5));
}




/* === TERMINAL SIMULATION === */
.terminal-window {
  background: #0a0a0a;
  border: 1px solid #1e4e1e;
  border-radius: 10px;
  max-width: 900px;
  margin: 40px auto;
  box-shadow: 0 0 20px rgba(0,255,100,0.1);
  overflow: hidden;
  text-align: left;
  font-family: 'Courier New', monospace;
}

.terminal-header {
  background: #111;
  padding: 8px 14px;
  border-bottom: 1px solid #1e4e1e;
  display: flex;
  align-items: center;
  gap: 8px;
}

.terminal-header .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.terminal-title {
  color: #76ff76;
  font-size: 13px;
  margin-left: auto;
  opacity: 0.8;
}

.terminal-body {
  padding: 20px;
  color: #b8ffb8;
  font-size: 14px;
  line-height: 1.5;
  background: #0d0d0d;
  min-height: 160px;
}

.hidden {
  display: none;
}

.preview-box video {
  width: 90%;
  max-width: 900px;
  border-radius: 10px;
  margin-top: 30px;
  border: 1px solid #1e4e1e;
  box-shadow: 0 0 25px rgba(0,255,100,0.1);
}




/* === BLOG SECTION === */
.blog {
  background: #0b0b0b;
  text-align: center;
  padding: 90px 20px;
  border-top: 1px solid #1a1a1a;
}

.blog h2 {
  font-size: 32px;
  color: #76ff76;
  text-shadow: 0 0 10px #1b7f3f;
  margin-bottom: 10px;
}

.blog-subtext {
  color: #b8ffb8;
  font-size: 16px;
  margin-bottom: 50px;
  font-style: italic;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Grid layout for blog cards */
.blog-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  margin-top: 30px;
}

/* Blog Card */
.blog-card {
  background: #101010;
  border: 1px solid #1c1c1c;
  border-radius: 12px;
  overflow: hidden;
  width: 350px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 0 15px rgba(0,255,100,0.05);
  height: 480px; /* uniform height */
  opacity: 1;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(0,255,100,0.15);
}

.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 1px solid #1a1a1a;
}

.blog-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  padding: 20px;
  color: #b8ffb8;
  text-align: left;
}

.blog-content h3 {
  color: #6cff6c;
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}

.blog-content p {
  font-size: 14px;
  line-height: 1.6;
  color: #b5ffb5;
  flex-grow: 1;
}

.btn-blog {
  display: inline-block;
  background: #1b7f3f;
  color: white;
  text-decoration: none;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 6px;
  align-self: flex-start;
  transition: background 0.3s, box-shadow 0.3s;
  margin-top: 15px;
}

.btn-blog:hover {
  background: #38a838;
  box-shadow: 0 0 10px #38a838;
}

/* Fade-in scroll effect */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .blog-grid {
    flex-direction: column;
    align-items: center;
  }
  .blog-card {
    width: 90%;
    height: auto;
  }
}




/* Center Image */
.core-image {
  flex: 1 1 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.core-image img {
  width: 90%;
  max-width: 800px;
  border-radius: 18px;
  box-shadow: 0 0 45px rgba(80, 255, 120, 0.2);
  transform: perspective(800px) rotateY(-10deg) rotateX(3deg);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.core-image img:hover {
  transform: perspective(800px) rotateY(0deg) rotateX(0deg) scale(1.03);
  box-shadow: 0 0 60px rgba(80, 255, 120, 0.4);
}

/* Responsive */
@media (max-width: 1024px) {
  .core-wrapper {
    flex-direction: column;
    gap: 60px;
  }
  .core-info {
    align-items: center;
    text-align: center;
  }
  .core-info .info-block::after {
    display: none;
  }
}







/* === RESPONSIVE === */
@media (max-width: 768px) {
  .feature-grid {
    flex-direction: column;
    align-items: center;
  }
  .hero h1 {
    font-size: 32px;
  }
  .hero p {
    font-size: 15px;
  }
}
