/* ===================== */
/* RESET */
/* ===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background: #0b0f1a;
  color: #e6e6e6;
}

/* ===================== */
/* NAVBAR */
/* ===================== */
/* NAVBAR BASE */
/* NAVBAR */
.navbar {
  background: rgba(10, 15, 30, 0.8);
  backdrop-filter: blur(12px);
  transition: 0.3s;
}

/* BRAND */
.navbar-brand {
  font-size: 22px;
  color: #ffffff !important;
}

.navbar-brand i {
  color: #6c63ff;
}

/* LINKS */
.nav-link {
  color: #cfcfcf !important;
  margin-left: 15px;
  transition: 0.3s;
}

.nav-link:hover {
  color: #6c63ff !important;
}




/* ========================= */
/* 🔥 TOGGLER FIX (IMPORTANT) */
/* ========================= */

.navbar-toggler {
  border: none;
  outline: none;
  background: rgba(108, 99, 255, 0.2);
  border-radius: 6px;
  padding: 6px 10px;
}

/* WHITE ICON */
.navbar-toggler-icon {
  filter: invert(1);
}

/* ========================= */
/* 📱 MOBILE RESPONSIVE */
/* ========================= */

@media (max-width: 992px) {

  /* NAV MENU BACKGROUND */
  .navbar-collapse {
    background: rgba(10, 15, 30, 0.95);
    padding: 15px;
    border-radius: 10px;
    margin-top: 10px;
  }

  /* LINKS CENTER + SPACING */
  .nav-link {
    margin-left: 0;
    padding: 10px 0;
    text-align: center;
  }

}

/* SMALL MOBILE */
@media (max-width: 576px) {

  .navbar-brand {
    font-size: 18px;
  }

  .nav-link {
    font-size: 14px;
  }

}
/* ===================== */
/* HERO */
/* ===================== */
/* HERO */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* VIDEO BACKGROUND */
.hero-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 0;
}

/* DARK OVERLAY */
.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(10, 15, 30, 0.7);
  top: 0;
  left: 0;
  z-index: 1;
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  padding: 40px 30px;
}

/* TAGLINE */
.hero-tagline {
  font-size: 14px;
  letter-spacing: 2px;
  color: #6c63ff;
  margin-bottom: 10px;
}

/* TITLE */
.hero h1 {
  font-size: 2.8rem;
  font-weight: bold;
  text-shadow: 0 0 25px rgba(108, 99, 255, 0.6);
}

/* SUBTITLE */
.hero-subtitle {
  font-size: 16px;
  color: #d1d5db;
  margin-top: 10px;
  line-height: 1.6;
}

/* FEATURES */
.hero-features {
  margin-top: 15px;
}

.hero-features span {
  display: inline-block;
  margin: 5px;
  padding: 6px 12px;
  background: rgba(255,255,255,0.08);
  border-radius: 20px;
  font-size: 13px;
}

/* BUTTON */
.btn-main {
  background: linear-gradient(135deg, #6c63ff, #8b5cf6);
  color: white;
  border-radius: 30px;
  padding: 10px 25px;
  margin-top: 15px;
  border: none;
  transition: 0.3s;
}

.btn-main:hover {
  transform: scale(1.05);
}

/* ================= */
/* 📱 RESPONSIVE */
/* ================= */

@media (max-width: 768px) {

  .hero h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .hero-content {
    padding: 20px;
  }

}
/* ===================== */
/* SECTIONS */
/* ===================== */
.section {
  padding: 80px 20px;
}

.section h2 {
  font-weight: bold;
  margin-bottom: 20px;
  color: #ffffff;
}

/* ===================== */
/* DARK SECTION */
/* ===================== */
.dark {
  background: #111827;
}





/* INTRO TEXT */
.intro-text {
  max-width: 750px;
  margin-bottom: 15px;
  color: #cbd5e1;
  line-height: 1.7;
}

/* FEATURE BOX */
.intro-box {
  background: #1f2937;
  padding: 18px;
  border-radius: 12px;
  text-align: center;
  transition: 0.3s;
  border: 1px solid rgba(255,255,255,0.05);
  font-size: 20px;
}

.intro-box h6 {
  margin-top: 8px;
  font-size: 14px;
  color: #e5e7eb;
}

.intro-box:hover {
  transform: translateY(-6px);
  border-color: #6c63ff;
}

/* ===================== */
/* CARDS */
/* ===================== */
.card {
  border-radius: 15px;
  padding: 20px;
  transition: 0.3s;
  border: 1px solid rgba(255,255,255,0.05);
  background: #1f2937;
  color: #e5e7eb;
  height: 100%;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* PROBLEM SUBTITLE */
.problem-subtitle {
  max-width: 700px;
  color: #9ca3af;
  font-size: 15px;
}

/* PROBLEM CARD */
.problem-card {
  background: #1f2937;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  transition: 0.3s;
  border: 1px solid rgba(255,255,255,0.05);
  height: 100%;
}

.problem-card h5 {
  margin-top: 10px;
  font-weight: bold;
  color: #ffffff;
}

.problem-card p {
  font-size: 14px;
  color: #9ca3af;
  margin-top: 8px;
}

.problem-card:hover {
  transform: translateY(-8px);
  border-color: #6c63ff;
}

.card:hover {
  transform: translateY(-10px);
  border-color: #6c63ff;
}

/* ===================== */
/* FEATURES */
/* ===================== */
.feature {
  background: #1f2937;
  padding: 25px;
  border-radius: 15px;
  font-size: 22px;
  text-align: center;
  height: 100%;
  color: #e5e7eb;
  border: 1px solid rgba(255,255,255,0.05);
}

.feature p {
  margin-top: 10px;
  font-size: 16px;
}

/* ===================== */
/* TEXT COLORS */
/* ===================== */
p {
  color: #cbd5e1;
}

/* ===================== */
/* FOOTER */
/* ===================== */
/* FOOTER */
.footer {
  
  color: #cbd5e1;
  padding: 60px 20px 20px;
}

/* HEADINGS */
.footer h4,
.footer h5 {
  color: #ffffff;
  margin-bottom: 15px;
}

/* BRAND ICON */
.footer h4 i {
  color: #6c63ff;
}

/* TEXT */
.footer p {
  font-size: 14px;
  line-height: 1.6;
}

/* LINKS */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #6c63ff;
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 30px;
  padding-top: 15px;
  font-size: 13px;
}

/* ================= */
/* 📱 RESPONSIVE */
/* ================= */

@media (max-width: 768px) {

  .footer {
    text-align: center;
  }

  .footer-links {
    padding: 0;
  }

}

/* ===================== */
/* RESPONSIVE */
/* ===================== */

/* TABLET */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .nav-link {
    margin-left: 0;
    padding: 10px 0;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .hero {
    height: auto;
    padding: 100px 20px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .section {
    padding: 50px 15px;
  }

  .card {
    padding: 15px;
  }

  .feature {
    font-size: 18px;
    padding: 20px;
  }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.5rem;
  }

  .hero p {
    font-size: 0.85rem;
  }

  .btn-main {
    padding: 8px 18px;
    font-size: 14px;
  }

  .section h2 {
    font-size: 1.4rem;
  }
}




/* SUBTITLE */
.vision-subtitle {
  max-width: 700px;
  color: #9ca3af;
  font-size: 15px;
}

/* VISION CARD */
.vision-card {
  background: #1f2937;
  padding: 30px;
  border-radius: 15px;
  transition: 0.3s;
  border: 1px solid rgba(255,255,255,0.05);
  height: 100%;
}

.vision-card h4 {
  margin-top: 10px;
  color: #ffffff;
  font-weight: bold;
}

.vision-card p {
  font-size: 14px;
  color: #cbd5e1;
  margin-top: 10px;
}

.vision-card:hover {
  transform: translateY(-10px);
  border-color: #6c63ff;
}

/* CORE VALUES */
.value-box {
  background: #111827;
  padding: 20px;
  border-radius: 12px;
  transition: 0.3s;
  border: 1px solid rgba(255,255,255,0.05);
}

.value-box h6 {
  margin-top: 8px;
  color: #ffffff;
}

.value-box p {
  font-size: 13px;
  color: #9ca3af;
}

.value-box:hover {
  transform: translateY(-6px);
  border-color: #6c63ff;
}

/* SUBTITLE */
/* SUBTITLE */
.usecase-subtitle {
  max-width: 650px;
  color: #9ca3af;
}

/* TIMELINE */
/* ========================= */
/* TIMELINE BASE */
/* ========================= */

.timeline {
  position: relative;
  margin-top: 50px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

/* CENTER LINE */
.timeline::after {
  content: '';
  position: absolute;
  width: 3px;
  background: #6c63ff;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.6;
}

/* ========================= */
/* ITEM */
/* ========================= */

.timeline-item {
  width: 50%;
  padding: 20px 40px;
  position: relative;
}

/* LEFT SIDE */
.timeline-item.left {
  left: 0;
  text-align: left; /* 🔥 FIXED */
}

/* RIGHT SIDE */
.timeline-item.right {
  left: 50%;
  text-align: left;
}

/* ========================= */
/* CONTENT BOX */
/* ========================= */

.timeline-item .content {
  background: #1f2937;
  padding: 22px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: 0.3s;
}

/* HOVER EFFECT */
.timeline-item .content:hover {
  transform: translateY(-5px);
  border-color: rgba(108,99,255,0.4);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* TEXT */
.timeline-item h4 {
  color: #ffffff;
  margin-bottom: 8px;
}

.timeline-item p {
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.5;
}

.timeline-item ul {
  margin-top: 10px;
  padding-left: 18px;
}

.timeline-item ul li {
  font-size: 13px;
  color: #9ca3af;
  margin-bottom: 5px;
}

/* ========================= */
/* DOT */
/* ========================= */

.timeline-item::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  background: #6c63ff;
  border-radius: 50%;
  top: 28px;
  right: -7px;
  box-shadow: 0 0 10px #6c63ff;
}

.timeline-item.right::after {
  left: -7px;
}

/* ========================= */
/* 📱 RESPONSIVE */
/* ========================= */

@media (max-width: 768px) {

  .timeline::after {
    left: 20px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 55px;
    padding-right: 20px;
  }

  .timeline-item.left,
  .timeline-item.right {
    left: 0;
  }

  .timeline-item::after {
    left: 13px;
  }

}
/* SUBTITLE */
/* SUBTITLE */
.why-subtitle {
  max-width: 650px;
  color: #9ca3af;
  font-size: 15px;
}

/* TOP BOX */
.why-box {
  background: #1f2937;
  padding: 25px;
  border-radius: 15px;
  transition: 0.3s;
  border: 1px solid rgba(255,255,255,0.05);
}

.why-box h5 {
  color: #ffffff;
  margin-bottom: 10px;
}

.why-box p {
  color: #cbd5e1;
  font-size: 14px;
}

.why-box:hover {
  transform: translateY(-8px);
  border-color: #6c63ff;
}

/* FEATURES SMALL */
.why-feature {
  background: #111827;
  padding: 12px;
  border-radius: 10px;
  font-size: 14px;
  color: #e5e7eb;
  transition: 0.3s;
}

.why-feature:hover {
  background: #6c63ff;
}



/* SUBTITLE */
.revenue-subtitle {
  max-width: 650px;
  color: #9ca3af;
  font-size: 15px;
}

/* BOX */
.revenue-box {
  padding: 20px;
  border-radius: 12px;
  background: #1f2937;
  border: 1px solid rgba(255,255,255,0.05);
  transition: 0.3s;
}

.revenue-box h5 {
  font-size: 22px;
  color: #6c63ff;
  margin-bottom: 5px;
}

.revenue-box p {
  font-size: 14px;
  color: #cbd5e1;
}

.revenue-box:hover {
  transform: translateY(-6px);
  border-color: #6c63ff;
}

/* NOTE */
.revenue-note {
  max-width: 600px;
  font-size: 14px;
  color: #9ca3af;
}




/* SUBTITLE */
.market-subtitle {
  max-width: 700px;
  color: #9ca3af;
  font-size: 15px;
}

/* BLOCK */
.market-block {
  text-align: left;
  padding: 20px;
}

.market-block h5 {
  color: #ffffff;
  margin-bottom: 10px;
}

/* LIST */
.market-block ul {
  padding-left: 18px;
}

.market-block ul li {
  color: #cbd5e1;
  font-size: 14px;
  margin-bottom: 6px;
}

/* HIGHLIGHT (OUR SIDE) */
.market-block.highlight {
  border-left: 3px solid #6c63ff;
  padding-left: 15px;
}

/* NOTE */
.market-note {
  max-width: 650px;
  color: #9ca3af;
  font-size: 14px;
}


/* TAGLINE */
.hero-tagline {
  font-size: 14px;
  letter-spacing: 2px;
  color: #6c63ff;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* SUBTITLE */
.hero-subtitle {
  max-width: 600px;
  margin: 15px auto;
  color: #d1d5db;
  font-size: 16px;
}

/* FEATURES */
.hero-features {
  margin-top: 15px;
}

.hero-features span {
  display: inline-block;
  margin: 5px 10px;
  font-size: 14px;
  color: #cbd5e1;
}

/* BUTTON OUTLINE */
.btn-outline-light {
  border-radius: 30px;
  padding: 10px 25px;
  transition: 0.3s;
}

.btn-outline-light:hover {
  background: white;
  color: black;
}





/* CONTACT SECTION */
.contact-page {
  background: #0f172a;
  color: #cbd5e1;
  padding: 80px 20px;
}

/* HEADING */
.contact-heading {
  color: #ffffff;
  margin-bottom: 10px;
}

.contact-intro {
  max-width: 700px;
  margin: auto;
  font-size: 14px;
}

/* LAYOUT */
.contact-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}

/* LEFT */
.contact-details {
  flex: 1;
}

.contact-details h3 {
  color: #ffffff;
  margin-bottom: 10px;
}

.contact-info p {
  margin-top: 10px;
  font-size: 14px;
}

.contact-info i {
  color: #6c63ff;
  margin-right: 8px;
}

/* FORM */
/* FORM */
.contact-form {
  flex: 0.9; /* 🔥 size thoda chhota */
  max-width: 400px; /* 🔥 width control */
  background: #1f2937;
  padding: 20px;
  border-radius: 10px;
  margin-left: auto; 
  /* right side align */
}

/* HEADING */
.contact-form h3 {
  color: #ffffff;
  margin-bottom: 12px;
  font-size: 18px;
}

/* INPUTS */
.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 10px;
  padding: 8px 10px; /* 🔥 smaller padding */
  border-radius: 6px;
  border: none; 
  background: #0f172a;
  color:white;
  font-size: 13px;
}


.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border: 1px solid #6c63ff; /* blue border on focus */
   /* blue glow highlight */
}

/* TEXTAREA */
.contact-form textarea {
  height: 90px;
   /* 🔥 chhota */
}

/* BUTTON */
.contact-form button {
  width: 100%;
  padding: 8px;
  background: #6c63ff;
  border: none;
  border-radius: 20px;
  color: white;
  font-size: 14px;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #5a54d1;
}
/* ================= */
/* 📱 RESPONSIVE */
/* ================= */

@media (max-width: 768px) {

  .contact-layout {
    flex-direction: column;
  }

}

.product-subtitle {
  max-width: 650px;
  opacity: 0.8;
}




.main-product {
  width: 450px;   /* 👈 yaha size badhao */
  max-width: 100%;
}

/* FEATURES */
.product-features {
  list-style: none;
  padding: 0;
}

.product-features li {
  margin-bottom: 10px;
}

/* GRID */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

/* ITEM */
.product-item {
  text-align: center;

}

.product-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  transition: 0.4s;
}

.product-item:hover img {
  transform: scale(1.1);
}

/* TEXT */
.product-item p {
  margin-top: 8px;
  font-size: 14px;
  opacity: 0.8;
}

/* HIGHLIGHT */
.product-highlight {
  max-width: 700px;
  margin: auto;
}