/* ================= GLOBAL RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  background: #0b1220;
  color: #e5e7eb;
  line-height: 1.7;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
}

.hero-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}


/* ================= CONTAINER ================= */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Default = mobile */
body {
  font-size: 14px;
}

/* Tablet */
@media (min-width: 768px) {
  body {
    font-size: 15px;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  body {
    font-size: 16px;
  }
}
button {
  min-height: 44px;
  padding: 10px 16px;
  font-size: 16px;
}
button {
  margin-bottom: 10px;
}

/* ================= HEADER ================= */
header {
  background: linear-gradient(180deg, #020617, #020617e6);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(56,189,248,0.15);
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.logo span {
  color: #38bdf8;
}

nav a {
  margin-left: 22px;
  color: #e5e7eb;
  text-decoration: none;
  font-weight: 500;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: #38bdf8;
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

.btn {
  padding: 9px 16px;
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);
  color: #020617;
  border-radius: 8px;
  font-weight: 600;
}

/* ================= LOGO ================= */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-wrap img {
  height: 42px;        /* perfect for header */
  width: auto;
  object-fit: contain;
}

.logo-text {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.logo-text span {
  color: #38bdf8; /* if you already use accent color */
}

/* ================= BRAND LOGO ================= */
.brand {
  display: flex;
  align-items: center;
  gap: 0; /* NO SPACE between logo and text */
}

.brand img {
  height: 60px;        /* BIG logo */
  width: auto;
  margin-right: 0;     /* ensure no gap */
}

.brand h1 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.brand h1 span {
  color: #38bdf8;
}





/* ================= HERO ================= */
.hero {
  padding: 110px 0;
  text-align: center;
  background: radial-gradient(circle at top, #0f172a, #020617);
}

.hero h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 16px;
}

.hero p {
  font-size: 18px;
  max-width: 780px;
  margin: 0 auto 28px;
  color: #cbd5e1;
}

.btn-primary {
  padding: 14px 28px;
  background: linear-gradient(135deg, #38bdf8, #22d3ee);
  border: none;
  color: #020617;
  font-weight: 700;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(56,189,248,0.35);
}

/* ================= SECTIONS ================= */
.section {
  padding: 90px 0;
}

.light {
  background: #00051b;
}

.section-title {
  text-align: center;
  font-size: 34px;
  margin-bottom: 42px;
  font-weight: 800;
}

.center-text {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 30px;
  color: #cbd5e1;
}

.cta-center {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.ai-flow {
  background: #03011b; /* enterprise purple-blue */
  color: #fff;
}

.flow-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.flow-visual img {
  width: 100%;
  max-width: 500px;
}

.flow-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.flow-text p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.flow-text ul {
  list-style: none;
  padding: 0;
}

.flow-text li {
  margin-bottom: 10px;
  font-size: 16px;
}

/* ================= TRUST STATS ================= */
.trust-section {
  background: #090321;
  padding: 80px 0;
  text-align: center;
}

.trust-title {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.trust-subtitle {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 50px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.trust-card {
  background: #070e2a;
  border-radius: 18px;
  padding: 40px 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.trust-card:hover {
  transform: translateY(-8px);
}

.trust-card h3 {
  font-size: 42px;
  color: #ffffff;
  margin-bottom: 12px;
}

.trust-card p {
  font-size: 16px;
  color: #ffffff;
  font-weight: 500;
}



/* ================= Technology ================= */

.technology-section {
  padding: 80px 10%;
  background: #01011b;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
}

.technology-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.tech-card {
  background: #0e2339;
  border-radius: 16px;
  padding: 30px 24px;
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

.tech-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.tech-icon {
  font-size: 36px;
  display: inline-block;
  margin-bottom: 14px;
}

.tech-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.tech-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}


/* ================= GRID & CARDS ================= */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.card {
  background: linear-gradient(180deg, #020617, #020617cc);
  padding: 28px;
  border-radius: 14px;
  border: 1px solid rgba(92, 109, 241, 0.12);
  transition: all 0.35s ease;
}

.card:hover {
  transform: translateY(-8px);
  border-color: #38bdf8;
  box-shadow: 0 18px 40px rgba(15,23,42,0.9);
}

.card h3 {
  margin-bottom: 10px;
  font-size: 20px;
  color: #f8fafc;
}

/* ================= FORMS ================= */
form {
  max-width: 520px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

input,
textarea {
  padding: 14px;
  border-radius: 8px;
  border: 1px solid rgba(148,163,184,0.25);
  background: #020617;
  color: #fff;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #38bdf8;
}

textarea {
  resize: none;
  height: 130px;
}

/* ================= INDUSTRIES (NEW – ENTERPRISE STYLE) ================= */

#industries {
  background: linear-gradient(180deg, #000003, #1e1b4b);
}

.industries-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.18);
}

.industry-item {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.3px;
  cursor: pointer;
  padding-bottom: 6px;
  position: relative;
  transition: color 0.3s ease;
}

.industry-item:hover {
  color: #38bdf8;
}

.industry-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 3px;
  background: #38bdf8;
  transition: width 0.3s ease;
}

.industry-item.active {
  color: #ffffff;
  font-weight: 600;
}

.industry-item.active::after {
  width: 100%;
}


/* ================= CHATBOT ================= */
#chatbot-toggle {
  position: fixed;
  bottom: 22px;
  right: 22px;
  background: linear-gradient(135deg, #38bdf8, #22d3ee);
  color: #020617;
  font-size: 26px;
  padding: 14px 18px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 999;
}

#chatbot {
  position: fixed;
  bottom: 95px;
  right: 22px;
  width: 320px;
  background: #020617;
  border-radius: 14px;
  display: none;
  flex-direction: column;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
  z-index: 999;
}

.chat-header {
  background: linear-gradient(135deg, #38bdf8, #22d3ee);
  color: #020617;
  padding: 14px;
  font-weight: 700;
  border-radius: 14px 14px 0 0;
}

.chat-body {
  padding: 14px;
  height: 280px;
  overflow-y: auto;
}

.bot-msg {
  background: #1e293b;
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 10px;
}

.user-msg {
  background: #38bdf8;
  color: #020617;
  padding: 10px;
  border-radius: 10px;
  margin-left: auto;
  margin-bottom: 10px;
}

.chat-footer {
  display: flex;
  border-top: 1px solid #1e293b;
}

.chat-footer input {
  flex: 1;
  padding: 12px;
  background: #021756;
  color: #fff;
  border: none;
}

.chat-footer button {
  padding: 12px 16px;
  background: #38bdf8;
  border: none;
  cursor: pointer;
}
/*star */

/* STAR DISPLAY */
.stars {
  color: #38bdf8;
  font-size: 20px;
  margin-bottom: 10px;
}

/* REVIEW FORM CENTERING */
.review-form-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.review-form {
  max-width: 520px;
  width: 100%;
  text-align: center;
}

.review-form h3 {
  margin-bottom: 12px;
}


/* STAR INPUT */
.rating-input {
  margin: 12px 0;
}

.rating-input span {
  font-size: 28px;
  cursor: pointer;
  color: #cbd5e1;
  transition: color 0.2s;
}

.rating-input span.active,
.rating-input span:hover {
  color: #38bdf8;
}

/* TEXTAREA */
.review-form textarea {
  width: 100%;
  min-height: 110px;
  margin-top: 12px;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  resize: none;
  font-family: inherit;
}

/* BUTTON */
.btn-primary {
  margin-top: 16px;
  padding: 10px 22px;
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.btn-primary:hover {
  background: #1e40af;
}



/* ================= FOOTER ================= */
.footer {
  background: #0b1526;
  padding: 60px 8%;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.footer h4 {
  color: #fff;
  margin-bottom: 12px;
}

.footer a {
  display: block;
  color: #cbd5e1;
  text-decoration: none;
  margin-bottom: 6px;
}

.footer a:hover {
  color: #38bdf8;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 30px;
  padding-top: 16px;
  text-align: center;
  font-size: 13px;
  color: #94a3b8;
}

/* ================= WHATSAPP ================= */
.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 8px 22px rgba(0,0,0,.4);
  transition: transform .25s ease;
}

.whatsapp-float:hover {
  transform: scale(1.12);
}

/* ================= MOBILE OPTIMIZATION (SAFE) ================= */
@media (max-width: 768px) {

  /* HEADER */
  .header {
    flex-wrap: wrap;
    gap: 10px;
  }

  nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    margin-top: 8px;
  }

  nav a {
    margin: 6px 10px;
    font-size: 14px;
    white-space: nowrap;
  }

  /* Global spacing */
  .container {
    width: 92%;
  }

  /* HERO */
  .hero {
    padding: 70px 0;
  }

  .hero h2 {
    font-size: 28px;
  }

  .hero p {
    font-size: 15px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* TRUST */
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* BUTTONS */
  .btn,
  .btn-primary,
  button {
    width: auto; /* IMPORTANT: not full width for nav */
  }
}



/* ================= MOBILE OPTIMIZATION (SAFE) ================= */
@media (max-width: 768px) {

  /* Global spacing */
  .container {
    width: 92%;
  }

  /* HERO */
  .hero {
    padding: 70px 0;
  }

  .hero h2 {
    font-size: 28px;
  }

  .hero p {
    font-size: 15px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-image img {
    border-radius: 14px;
  }

  /* BRAND / LOGO */
  .brand img {
    height: 44px;
  }

  .brand h1 {
    font-size: 22px;
  }

  /* SECTIONS */
  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 26px;
    margin-bottom: 28px;
  }

  /* FLOW SECTION */
  .flow-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .flow-text h2 {
    font-size: 24px;
  }

  .flow-text p {
    font-size: 15px;
  }

  /* TRUST STATS */
  .trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .trust-title {
    font-size: 26px;
  }

  .trust-card h3 {
    font-size: 32px;
  }

  /* CARDS */
  .card {
    padding: 22px;
  }

  /* BUTTONS */
  .btn,
  .btn-primary,
  button {
    width: 100%;
    text-align: center;
  }

  /* FORMS */
  form {
    width: 100%;
  }

  /* FOOTER */
  .footer {
    padding: 50px 6%;
  }

  .footer-bottom {
    font-size: 12px;
  }

  /* CHATBOT + WHATSAPP FIX */
  #chatbot {
    right: 16px;
    width: 92%;
    bottom: 90px;
  }

  #chatbot-toggle {
    right: 16px;
    bottom: 16px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 90px;
  }
}

/* ================= SMALL PHONES ================= */
@media (max-width: 480px) {

  .hero h2 {
    font-size: 24px;
  }

  .section-title {
    font-size: 22px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .logo-text {
    font-size: 18px;
  }
}