*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0a0f1e;
  --blue: #1a6dff;
  --blue-light: #4f9dff;
  --sky: #d6eaff;
  --offwhite: #f4f7fc;
  --muted: #6a7b96;
  --border: rgba(26,109,255,0.13);
  --card-bg: rgba(255,255,255,0.72);
  --shadow-sm: 0 2px 12px rgba(10,15,30,0.07);
  --shadow-md: 0 8px 32px rgba(10,15,30,0.11);
  --shadow-lg: 0 20px 60px rgba(10,15,30,0.14);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
  --brand-gradient: linear-gradient(135deg, #2563EB, #06B6D4);
  /* Chatbot vars */
  --ce-navy:       #0a0f1e;
  --ce-blue:       #1a6dff;
  --ce-blue-mid:   #2563EB;
  --ce-cyan:       #06B6D4;
  --ce-sky:        #d6eaff;
  --ce-offwhite:   #f4f7fc;
  --ce-muted:      #6a7b96;
  --ce-border:     rgba(26, 109, 255, 0.12);
  --ce-gradient:   linear-gradient(135deg, #2563EB 0%, #06B6D4 100%);
  --ce-shadow-sm:  0 2px 12px rgba(10, 15, 30, 0.07);
  --ce-shadow-md:  0 8px 32px rgba(10, 15, 30, 0.13);
  --ce-shadow-lg:  0 24px 64px rgba(10, 15, 30, 0.18);
  --ce-w:          400px;
  --ce-h:          600px;
  --ce-r:          16px;
  --ce-r-sm:       12px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--offwhite);
  color: var(--navy);
  line-height: 1.65;
  overflow-x: hidden;
  letter-spacing: 0.2px;
}

/* ── NAV ── */
#mainNav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  height: 72px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}

#mainNav.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-logo {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.45rem;
  color: #0B1220;
  text-decoration: none;
  letter-spacing: -0.5px;
  align-items: center;
  display: flex;
}
.logo-img {
  height: 40px; /* adjust based on your design */
  width: auto;
  display:block;
  align-items: center;
  opacity: 0;
  transform: translateY(12px);
  animation: velocityIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.25s;
}
@keyframes velocityIn {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }
  70% {
    opacity: 0.7;
    transform: translateY(-2px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-logo:hover .logo-img {
  transform: translateY(1px) scale(1.08);
  transition: transform 0.25s ease;
}
.nav-logo span {
  background: linear-gradient(135deg, #2563EB, #06B6D4);
  background-size: 200% 200%;
  animation: gradientShift 4s ease infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.nav-logo:hover span {
  filter: brightness(1.1);
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links.open {
  height: calc(100vh - 72px);
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--blue);
  transition: width 0.25s ease;
}
.nav-links a:hover { 
  color: var(--blue);
}
.nav-links a:hover::after {
  width: 100%;
}
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); }

/* ── SECTIONS ── */
section { padding: 100px 5vw; }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(37,99,235,0.08);
  color: #2563EB;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 1.2rem;
}
.tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); }

h1, h2, h3 {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700; line-height: 1.2;
  color: var(--navy);
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.05rem; color: var(--muted);
  max-width: 540px; margin-bottom: 3rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-gradient);
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 8px 24px rgba(37,99,235,0.25);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}
.btn-primary:hover::after {
  width: 200%;
  height: 500%;
}
.btn-primary:hover {transform: translateY(-2px) scale(1.02); box-shadow: 0 12px 32px rgba(37,99,255,0.35); }

/* ── HERO ── */
#home {
  min-height: 100vh;
  display: flex; align-items: center;
  padding-top: 120px;
  background:
    radial-gradient(ellipse 70% 60% at 80% 20%, rgba(26,109,255,0.09) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 10% 80%, rgba(26,109,255,0.06) 0%, transparent 70%),
    var(--offwhite);
  position: relative; overflow: hidden;
}

#home::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,var(--intensity,0.2)), transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
  max-width: 1200px; margin: 0 auto; width: 100%;
}

.hero-text h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700; line-height: 1.12;
  color: var(--navy); margin-bottom: 1.4rem;
}
.hero-text h1 em {
  font-style: normal;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text p {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 2.2rem;
  font-weight: 300;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-stats {
  display: flex; gap: 2rem; margin-top: 3rem; flex-wrap: wrap;
}

.hero-stat strong {
  display: block;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 1.7rem; font-weight: 800; color: var(--navy);
}
.hero-stat span { font-size: 0.85rem; color: var(--muted); font-weight: 400; }

/* Hero visual */
.hero-visual {
  position: relative; display: flex; justify-content: center; align-items: center;
}
.hero-card-stack {
  position: relative; width: 420px; height: 420px; perspective: 1000px;
}
.hcard {
  position: absolute;
  overflow: hidden;
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow:
    calc(var(--sx, 0px)) calc(var(--sy, 8px)) 24px rgba(10,15,30,0.18);
  padding: 1.4rem 1.6rem;
  transition: transform 0.15s ease-out;
  will-change: transform;
  transform-style: preserve-3d;
}
.hcard::before {
  content: "";
  position: absolute;
  top: var(--y, 50%);
  left: var(--x, 50%);
  transform: translate(-50%, -50%);
  width: var(--size, 180px);
  height: var(--size, 180px);
  background: radial-gradient(circle, rgba(26,109,255,var(--intensity,0.2)), transparent 70%);
  pointer-events: none;
  transition: opacity 0.15s ease;
  opacity: 0;
}
.hcard:hover::before {
  opacity: 1;
}
.hcard-main {
  width: 280px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform-origin: center;
  animation: floatMain 6s ease-in-out infinite;
  background: linear-gradient(135deg, #fff 60%, #eef4ff);
  box-shadow:
    calc(var(--sx, 0px)) calc(var(--sy, 14px)) 40px rgba(10,15,30,0.25);
  z-index: 2;
}

.hcard-float1 {
  width: 260px;
  top: -10px;
  right: -40px;
  transform: scale(0.95);
  opacity: 0.9;
  z-index: 1;
  animation: float1 4s ease-in-out infinite;
}

.hcard-float2 {
  width: 260px;
  bottom: -10px;
  left: -40px;
  transform: scale(0.95);
  opacity: 0.9;
  z-index: 1;
  animation: float2 5s ease-in-out infinite;
}

@keyframes floatMain { 0%, 100% { transform: translate(-50%, -50%) translateY(0); } 50% { transform: translate(-50%, -50%) translateY(-6px); } }
@keyframes float1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
@keyframes float2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(10px)} }

.hcard-icon { font-size: 1.6rem; margin-bottom: 0.5rem; }
.hcard-icon svg {
  width: 22px;
  height: 22px;
  color: #2563EB;
}
.hcard h4 { font-family: "Segoe UI", Arial, sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 0.2rem; }
.hcard p { font-size: 0.8rem; color: var(--muted); line-height: 1.5; }

.pill-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: #fff; border-radius: 50px;
  padding: 4px 12px; font-size: 0.75rem; font-weight: 600;
  margin-bottom: 0.7rem;
}
.pill-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
}

/* ── SERVICES ── */
#services { background: #fff; }
.services-header { max-width: 600px; margin: 0 auto 3.5rem; text-align: center; }
.services-header .section-sub { margin: 0 auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem; max-width: 1200px; margin: 0 auto;
}
.service-card {
  background: var(--offwhite);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--brand-gradient);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover::before { 
  transform: scaleX(1); 
}
.service-card:hover { 
  transform: translateY(-6px) scale(1.01); 
  box-shadow: var(--shadow-lg); 
  background: #fff;
}

.service-card:hover .service-icon {
  transform: scale(1.08);
}
.service-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, var(--sky), rgba(26,109,255,0.05));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.2rem;
  transition: transform 0.25s ease;
}
.service-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 2;
  color: #2563EB;
}
.service-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.6rem; }
.service-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }

/* ── ABOUT ── */
#about {
  background:
    radial-gradient(ellipse 60% 80% at 0% 50%, rgba(26,109,255,0.05) 0%, transparent 70%),
    var(--offwhite);
}
.about-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
  max-width: 1200px; margin: 0 auto;
}
.about-visual {
  position: relative;
}
.about-img-wrap {
  border-radius: var(--radius);
  background: linear-gradient(135deg, #e8f0fe 0%, #c7dcff 100%);
  height: 420px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.about-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(26,109,255,0.12) 1px, transparent 1px);
  background-size: 24px 24px;
}
.about-badge {
  position: absolute; bottom: 24px; right: 24px;
  background: #fff; border-radius: var(--radius-sm);
  padding: 1rem 1.2rem; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 10px;
}
.about-badge-icon { font-size: 1.8rem; }
.about-badge strong { display: block; font-family: "Segoe UI", Arial, sans-serif; font-size: 1.2rem; font-weight: 800; color: var(--navy); }
.about-badge span { font-size: 0.78rem; color: var(--muted); }

.about-logo-main {
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 2.8rem; font-weight: 800;
  color: var(--blue); opacity: 0.18;
  position: relative; z-index: 1;
  user-select: none;
}

.about-text .section-title { margin-bottom: 1rem; }
.about-text p { color: var(--muted); margin-bottom: 1.2rem; font-size: 0.97rem; }

.about-pillars { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.8rem; }
.pillar {
  display: flex; gap: 14px; align-items: flex-start;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 1rem 1.2rem;
  transition: box-shadow var(--transition);
}
.pillar:hover { box-shadow: var(--shadow-sm); }
.pillar h4 { font-size: 0.92rem; font-weight: 700; margin-bottom: 2px; }
.pillar p { font-size: 0.83rem; color: var(--muted); line-height: 1.5; }

/* ── WHY CHOOSE US ── */
#why { background: var(--navy); color: #fff; }
.why-header { text-align: center; margin-bottom: 3.5rem; }
.why-header .section-title { color: #fff; }
.why-header .section-sub { color: rgba(255,255,255,0.55); margin: 0 auto; }
.why-header .tag { background: rgba(26,109,255,0.2); color: var(--blue-light); }
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem; max-width: 1100px; margin: 0 auto;
}
.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  transition: background var(--transition), transform var(--transition);
  text-align: center;
}
.why-card:hover { background: rgba(255, 255, 255, 0.253); transform: translateY(-4px); }
.why-icon { font-size: 2rem; margin-bottom: 1rem; }
.why-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; color: #fff; }
.why-card p { font-size: 0.87rem; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* ── TESTIMONIALS ── */
#testimonials {
  background: var(--offwhite);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-card {
  background: #fff;
  padding: 1.8rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.testimonial-card p {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.testimonial-card strong {
  font-size: 0.85rem;
  color: var(--navy);
}

/* ── PROCESS ── */
#process { background: #fff; }
.process-header { text-align: center; margin-bottom: 4rem; }
.process-header .section-sub { margin: 0 auto; }

.process-steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0; max-width: 1100px; margin: 0 auto;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute; top: 38px; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  z-index: 0;
}
.process-step {
  text-align: center; padding: 0 1rem; position: relative; z-index: 1;
}
.step-num {
  width: 76px; height: 76px; border-radius: 50%;
  background: var(--brand-gradient);
  color: #fff; font-family: "Segoe UI", Arial, sans-serif;
  font-size: 1.4rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 24px rgba(26,109,255,0.28);
  transition: transform var(--transition);
}
.process-step:hover .step-num { 
  transform: scale(1.1); 
}
.process-step h3 { 
  font-size: 1rem; 
  font-weight: 700; 
  margin-bottom: 0.5rem; 
}
.process-step p { 
  font-size: 0.85rem; 
  color: var(--muted); 
  line-height: 1.6; 
}

/* ── INDUSTRIES ── */
#industries {
  background: var(--offwhite);
}
.industries-header { 
  text-align: center; 
  margin-bottom: 3rem; 
}
.industries-header .section-sub { 
  margin: 0 auto; 
}

.industries-grid {
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px; 
  max-width: 1200px; 
  margin: 0 auto;
}
.industry-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem 1.4rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.ind-icon svg {
  width: 28px;
  height: 28px;
  color: #2563EB;
}
.industry-card:hover { 
  transform: translateY(-6px)scale(1.01); 
  box-shadow: var(--shadow-md); 
  border-color: var(--blue-light); 
}
.industry-card .ind-icon { 
  font-size: 2.2rem; 
  margin-bottom: 0.8rem; 
}
.industry-card h3 { 
  font-size: 0.95rem; 
  font-weight: 700; 
}


/* ── CONTACT ── */
#contact {
  background:
    radial-gradient(ellipse 70% 80% at 100% 100%, rgba(26,109,255,0.07) 0%, transparent 70%),
    #fff;
}
.contact-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: start;
  max-width: 1100px; margin: 0 auto;
}
.contact-info h2 { font-size: clamp(1.7rem,3vw,2.4rem); font-weight: 800; margin-bottom: 1rem; }
.contact-info p { color: var(--muted); font-size: 0.97rem; margin-bottom: 2rem; }
.contact-detail {
  display: flex; gap: 12px; align-items: center;
  margin-bottom: 1rem; font-size: 0.93rem;
}
.contact-detail-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--sky); display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-detail-icon svg {
  width: 18px;
  height: 18px;
  color: #2563EB;
}
.contact-detail span { color: var(--muted); }
.contact-detail strong { display: block; color: var(--navy); font-size: 0.9rem; }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--navy); }
.form-group input,
.form-group textarea {
  padding: 0.85rem 1.1rem;
  border: 1.5px solid rgba(10,15,30,0.12);
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--navy);
  background: var(--offwhite);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 0.85rem 2.5rem 0.85rem 1.1rem;
  border: 1.5px solid rgba(10,15,30,0.12);
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--navy);
  background: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 7L10 12L15 7' stroke='%232563EB' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  background-size: 16px;
}
.form-group select:focus {
  border-color: #2563EB;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
  outline: none;
}
.form-group select:hover {
  border-color: rgba(37,99,235,0.4);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,109,255,0.12);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 130px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-submit {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: #fff; border: none; border-radius: 50px;
  padding: 1rem 2.4rem; font-family: "Segoe UI", Arial, sans-serif;
  font-size: 1rem; font-weight: 700; cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 6px 24px rgba(26,109,255,0.28);
  align-self: flex-start;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(26,109,255,0.38); }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.65);
  padding: 60px 5vw 30px;
}
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem; max-width: 1200px; margin: 0 auto;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-top: 1rem; max-width: 280px; }
.footer-logo {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif; font-weight: 800;
  font-size: 1.4rem; color: #fff;
}
.footer-logo span { color: var(--blue-light); }

.footer-social { display: flex; gap: 10px; margin-top: 1.5rem; }
.social-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; text-decoration: none; color: rgba(255,255,255,0.6);
  transition: background var(--transition), color var(--transition);
}
.social-btn:hover { background: var(--blue); color: #fff; }

.footer-col h4 {
  font-family: "Segoe UI", Arial, sans-serif; font-weight: 700;
  color: #fff; font-size: 0.95rem; margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a {
  text-decoration: none; color: rgba(255,255,255,0.55);
  font-size: 0.87rem; transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--blue-light); }

.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 0.8rem; font-size: 0.87rem; }
.footer-contact-item .fc-icon svg {
  width: 16px;
  height: 16px;
  color: var(--blue-light);
}

.footer-bottom {
  max-width: 1200px; margin: 1.8rem auto 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.82rem; flex-wrap: wrap; gap: 0.5rem;
}

/* ── ANIMATIONS ── */
.cta-block {
  text-align: center;
  margin: 5rem 0;
}
.reveal {
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.05s; }
.reveal-delay-2 { transition-delay: 0.1s; }
.reveal-delay-3 { transition-delay: 0.15s; }
.reveal-delay-4 { transition-delay: 0.2s; }

.testimonial {
  background: #fff;
  border: 1px solid var(--border);
  padding: 1.5rem;
  border-radius: var(--radius);
  margin-top: 2rem;
  font-size: 0.9rem;
}

.scroll-bar {
  position: fixed;
  top: 0; left: 0;
  height: 4px;
  background: var(--blue);
  width: 0%;
  z-index: 2000;
}

section {
  position: relative;
}

section::after {
  border-bottom: 1px solid rgba(0,0,0,0.04);
  content: '';
  position: absolute;
  bottom: 0;
  left: 5vw;
  right: 5vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.05), transparent);
}

.text-sm { font-size: 0.75rem; }
.mt-2 { margin-top: 2rem; }
.max-w-400 { max-width: 400px; }

/* ── MOBILE ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { display: none; }
  .about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 640px) {
  section { padding: 70px 5vw; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 72px; left: 0; right: 0; background: #fff; padding: 1.5rem 5vw; box-shadow: var(--shadow-md); gap: 1rem; }
  .hamburger { display: flex; }
  .process-steps::before { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.8rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
/* CUSTOM SELECT */
.custom-select {
  position: relative;
  cursor: pointer;
}

.select-selected {
  padding: 0.85rem 1.1rem;
  border: 1.5px solid rgba(10,15,30,0.12);
  border-radius: 12px;
  background: #fff;
  transition: all 0.25s ease;
}

.select-selected:hover {
  border-color: rgba(37,99,235,0.4);
}

.custom-select.active .select-selected {
  border-color: #2563EB;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
}

.select-options {
  position: absolute;
  top: 110%;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  display: none;
  overflow: hidden;
  z-index: 100;
}

.custom-select.active .select-options {
  display: block;
}

.select-options div {
  padding: 0.85rem 1.1rem;
  transition: background 0.2s ease;
}

.select-options div:hover {
  background: rgba(37,99,235,0.08);
}

/* Logo-Section */
.logo img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display:block;
}
.logo-section {
  padding: 80px 40px;
  text-align: center;
}

.logo-section h2 {
  margin-bottom: 12px;
}

.carousel {
  margin-top: 65px;
  overflow: hidden;
  width: 100%;
  position: relative;
}
.carousel::before,
.carousel::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.carousel::before {
  left: 0;
  background: linear-gradient(to right, #f4f7fc, transparent);
}

.carousel::after {
  right: 0;
  background: linear-gradient(to left, #f4f7fc, transparent);
}

.track {
  display: flex;
  gap: 40px;
  width: max-content;
  will-change: transform;
}
/* Logo styling */
.logo {
  width: auto;
  height: 90px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  padding: 0;
  border-radius: 16px;
  border: none;
  object-fit: contain;
  image-rendering: auto;
  transition: filter 0.3s ease, transform 0.3s ease;
  box-shadow: none;
  transform: scale(1.05) translateY(0);
  filter: grayscale(20%) opacity(0.8);
  cursor: default;
}

.logo:hover {
  transform: scale(1.05) translateY(0);
  filter: grayscale(0%) opacity(1);
}
.submenu {
  margin-top: 6px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--brand-gradient);
  color: white;
  padding: 12px 18px;
  border-radius: 50px;
  box-shadow: var(--shadow-lg);
  z-index: 999;
}
.industry-desc {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 6px;
}
/* ── DROPDOWN ── */
.has-dropdown {
  position: relative;
}
/* ARROW */
.arrow {
  font-size: 12px;
  margin-left: 5px;
  transition: 0.3s;
}

/* ROTATE ARROW */
.has-dropdown:hover .arrow {
  transform: rotate(180deg);
}

/* MEGA MENU */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 700px;
  background: #f1f3f5;
  padding: 20px;
  border-radius: 10px;
  display: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: 0.3s ease;
}

/* SHOW USING JS CLASS */
.has-dropdown.open .mega-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
/* SHOW ON HOVER */
.has-dropdown:hover .mega-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* GRID */
.mega-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

/* ITEM */
.mega-item {
  display: flex;
  gap: 10px;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.2s;
}

.mega-item:hover {
  background: #dde2e6;
}

/* ICON */
.mega-item i {
  width: 42px;
  height: 42px;
  background: #d0e7f5;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* TEXT */
.mega-item h4 {
  margin: 0;
  font-size: 14px;
}

.mega-item p {
  margin: 0;
  font-size: 12px;
  color:#6c757d;
}
.arrow-icon {
  width: 16px;
  height: 16px;
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.has-dropdown.open .arrow-icon {
  transform: rotate(180deg);
}

/* caret arrow */
.caret {
  display: inline-block;
  margin-left: 6px;
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.25s ease;
}
/* ═══════════════════════════════════════════════
   ContentEdge – Floating Chat Widget  v2
   Brand: #2563EB → #06B6D4  |  navy #0a0f1e
════════════════════════════════════════════════ */


/* ═══ LAUNCHER ═══════════════════════════════ */
.ce-launcher {
  position: fixed; bottom: 28px; right: 28px; z-index: 9999;
  display: flex; align-items: center; gap: 10px;
}
.ce-launcher-pill {
  background: #fff; color: var(--ce-navy); font-size: 0.875rem; font-weight: 600;
  padding: 10px 18px; border-radius: 50px; box-shadow: var(--ce-shadow-md);
  white-space: nowrap; cursor: pointer; border: 1px solid var(--ce-border);
  opacity: 1; transform: translateX(0);
  transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.2s;
}
.ce-launcher-pill:hover { box-shadow: 0 8px 28px rgba(37,99,235,0.16); }
.ce-launcher.open .ce-launcher-pill { opacity: 0; transform: translateX(12px); pointer-events: none; }

.ce-launcher-icon-btn {
  color: #f4f7fc;
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--ce-gradient); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(37,99,235,0.4); position: relative; flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ce-launcher-icon-btn:hover { transform: scale(1.08); box-shadow: 0 10px 30px rgba(37,99,235,0.5); }
.ce-launcher-icon-btn::before {
  content: ''; position: absolute; inset: -4px; border-radius: 50%;
  background: var(--ce-gradient); opacity: 0.25;
  animation: ce-pulse 2.2s ease-in-out infinite;
}
@keyframes ce-pulse {
  0%,100% { transform: scale(1);   opacity: 0.25; }
  50%      { transform: scale(1.5); opacity: 0;    }
}
.ce-icon-chat, .ce-icon-close {
  position: absolute; display: flex; align-items: center; justify-content: center;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.ce-icon-chat i, .ce-icon-close i { color: #fff; width: 22px; height: 22px; }
.ce-icon-chat  { opacity: 1; transform: scale(1);   }
.ce-icon-close { opacity: 0; transform: scale(0.7) rotate(-45deg); }
.ce-launcher.open .ce-icon-chat  { opacity: 0; transform: scale(0.7) rotate(45deg); }
.ce-launcher.open .ce-icon-close { opacity: 1; transform: scale(1) rotate(0deg); }

/* ═══ WIDGET PANEL ═══════════════════════════ */
.ce-widget {
  position: fixed; bottom: 45px; right: 28px;
  width: min(380px, 95vw);
  aspect-ratio: 2 / 3; /* 🔥 KEY LINE */
  max-height: 90vh;
  background: #fff; border-radius: var(--ce-r);
  box-shadow: var(--ce-shadow-lg); z-index: 9998;
  overflow: hidden; display: flex; flex-direction: column;
  opacity: 0; transform: translateY(30px) scale(0.96);
  transform-origin: bottom right; pointer-events: none;
  transition: opacity 0.23s ease,
              transform 0.23s cubic-bezier(0.4,0,0.2,1);
}
.ce-widget.open { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }



/* ═══ VIEW SYSTEM ════════════════════════════ */
.ce-view { display: none; flex-direction: column; flex: 1; overflow: hidden; min-height: 0; }
.ce-view.active { display: flex; }

@media (max-width: 1200px) {
  :root {
    --ce-w: 320px;
    --ce-h: 520px;
  }
}

@media (max-width: 768px) {
  .ce-widget {
    width: 95vw;
    height: 85vh;
    aspect-ratio: auto; /* allow free scaling */
    right: 2.5%;
    bottom: 10px;
  }
}

@media (max-width: 480px) {
  .ce-widget {
    width: 100vw;
    height: 100vh;
    right: 0;
    bottom: 0;
    border-radius: 0;
  }
}

/* ═══ HEADER (HOME) ══════════════════════════ */
.ce-header {
  position: relative; height: 200px; flex-shrink: 0;z-index: 1;
  display: flex; flex-direction: column;
  justify-content: space-between; padding: 18px 18px 22px;
}
.ce-header-bg {
  position: absolute; inset: 0;
  background: url('../assets/chatbot/background.jpg') center / cover no-repeat;
  transition: transform 0.6s ease;overflow: hidden;
}
.ce-widget:hover .ce-header-bg { transform: scale(1.03); }
.ce-header-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(155deg, rgba(10,15,30,0.78) 0%, rgba(37,99,235,0.55) 55%, rgba(6,182,212,0.45) 100%);
}
.ce-header-top {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
}
.ce-brand-avatar {color:#fff;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(0,0,0,0); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 10px rgba(37,99,235,0.4);
}

.ce-brand-avatar img {color:#fff;
  width: 38px; height: 38px; border-radius: 24px;
  background: rgba(0,0,0,0.25); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 10px rgba(37,99,235,0.4);
}
.ce-brand-avatar i { color: #fff; width: 17px; height: 17px; }
.ce-icon-btn {
  background: rgba(0,0,0,0); border: none; cursor: pointer;
  color: rgba(255,255,255,0.9); padding: 6px; border-radius: 8px;
  display: flex; align-items: center; backdrop-filter: blur(0px); transition: background 0.2s;
}
.ce-icon-btn:hover { background: rgba(0,0,0,0); }
.ce-icon-btn i { width: 16px; height: 16px; }
.ce-header-body { position: relative; z-index: 1; color: #fff; }
.ce-header-body h2 {
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 1.45rem; font-weight: 700; letter-spacing: -0.3px; margin-bottom: 6px;
}
.ce-wave {
  display: inline-block;
  animation: ce-wave 2.4s ease infinite;
  transform-origin: 70% 80%;
}
@keyframes ce-wave {
  0%,60%,100% { transform: rotate(0deg);  }
  10%          { transform: rotate(14deg); }
  20%          { transform: rotate(-8deg); }
  30%          { transform: rotate(14deg); }
  40%          { transform: rotate(-4deg); }
}
.ce-header-body p { font-size: 0.84rem; opacity: 0.88; line-height: 1.5; }

/* ═══ HOME CONTENT ═══════════════════════════ */
.ce-home-content {
  flex: 1; overflow-y: auto; overflow-x: hidden; padding: 0 14px 14px;
  scrollbar-width: thin; scrollbar-color: var(--ce-sky) transparent;
}

/* Chat-with-us card */
.ce-home-card {
  display: flex; align-items: center; justify-content: space-between;
  background: #fff; border-radius: 14px; padding: 14px 16px;
  margin-top: -10px; box-shadow: var(--ce-shadow-md); cursor: pointer;
  border: 1px solid var(--ce-border); position: relative; z-index: 10;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.ce-home-card:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(37,99,235,0.16); }
.ce-home-card-left { display: flex; align-items: center; gap: 12px; }
.ce-status-dot {
  width: 9px; height: 9px; border-radius: 50%; background: #10b981; flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(16,185,129,0.18); animation: ce-statusPulse 2s ease infinite;
}
@keyframes ce-statusPulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(16,185,129,0.18); }
  50%      { box-shadow: 0 0 0 6px rgba(16,185,129,0.06); }
}
.ce-home-card-left strong { display: block; font-size: 0.9rem; color: var(--ce-navy); font-weight: 600; }
.ce-home-card-left span  { font-size: 0.76rem; color: #10b981; font-weight: 500; }
.ce-cta-arrow {
  width: 34px; height: 34px; border-radius: 50%; background: var(--ce-gradient);
  border: none; cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: #fff; box-shadow: 0 4px 12px rgba(37,99,235,0.35);
  transition: transform 0.2s ease; flex-shrink: 0;
}
.ce-cta-arrow:hover { transform: scale(1.12); }
.ce-cta-arrow i { width: 14px; height: 14px; }

/* ─── TOPIC MENU (home view) ─── */
.ce-topic-label {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--ce-muted);
  padding: 14px 2px 8px;
}
.ce-topic-menu { display: flex; flex-direction: column; gap: 8px; }

.ce-topic-btn {
  width: 100%; display: flex; align-items: center; gap: 12px;
  background: var(--ce-offwhite); border: 1px solid var(--ce-border);
  border-radius: var(--ce-r-sm); padding: 12px 13px; cursor: pointer;
  text-align: left; font-family: inherit;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.ce-topic-btn:hover {
  background: #eef4ff; transform: translateX(2px);
  box-shadow: 0 3px 12px rgba(37,99,235,0.1);
}

.ce-topic-icon {
  width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; color: #fff;
}
.ce-topic-icon.pricing {
  background: linear-gradient(135deg, #2563EB 0%, #06B6D4 100%);
}

.ce-topic-icon.languages {
  background: linear-gradient(135deg, #2563EB 0%, #06B6D4 100%);
}

.ce-topic-icon.contact {
  background: linear-gradient(135deg, #2563EB 0%, #06B6D4 100%);
}

.ce-topic-icon i { width: 17px; height: 17px; color: #fff; }

.ce-topic-text { flex: 1; }
.ce-topic-text strong { display: block; font-size: 0.84rem; font-weight: 600; color: var(--ce-navy); }
.ce-topic-text span   { font-size: 0.73rem; color: var(--ce-muted); }

.ce-topic-arrow { width: 15px; height: 15px; color: var(--ce-muted); flex-shrink: 0; }

/* ═══ CHAT HEADER ════════════════════════════ */
.ce-chat-header {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px; border-bottom: 1px solid #eef2ff;
  background: #fff; flex-shrink: 0; box-shadow: 0 2px 8px rgba(10,15,30,0.04);
}
.ce-back-btn {
  background: none; border: none; cursor: pointer; color: var(--ce-muted);
  padding: 4px; border-radius: 7px; display: flex; align-items: center;
  transition: color 0.2s, background 0.2s;
}
.ce-back-btn:hover { color: var(--ce-blue-mid); background: rgba(37,99,235,0.06); }
.ce-back-btn i { width: 20px; height: 20px; }
.ce-chat-header-info { flex: 1; display: flex; align-items: center; gap: 10px; }
.ce-avatar-sm {color: #fff;
  width: 34px; height: 34px; border-radius: 50%; background: var(--ce-gradient);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ce-avatar-sm i { color: #fff; width: 15px; height: 15px; }
.ce-avatar-sm img {
    background: #ffff ;
    width: 100%;
    height: 100%;
    object-fit: contain; /* This prevents the logo from stretching */
    display: block;
}
.ce-chat-header-info strong { display: block; font-size: 0.88rem; font-weight: 600; color: var(--ce-navy); }
.ce-status-text { font-size: 0.72rem; color: #10b981; font-weight: 500; }
.ce-icon-btn-dark { background: rgba(10,15,30,0.05); color: var(--ce-muted); }
.ce-icon-btn-dark:hover { background: rgba(10,15,30,0.1); color: var(--ce-navy); }

/* ═══ MESSAGES ═══════════════════════════════ */
.ce-messages {
  flex: 1; overflow-y: auto; padding: 14px 13px;
  display: flex; flex-direction: column; gap: 12px;
  background: var(--ce-offwhite); min-height: 0;
  scrollbar-width: thin; scrollbar-color: var(--ce-sky) transparent;
}
.ce-msg-date {
  text-align: center; font-size: 0.68rem; font-weight: 600; color: var(--ce-muted);
  text-transform: uppercase; letter-spacing: 0.06em; margin: 2px 0;
}
.ce-msg {
  display: flex; align-items: flex-end; gap: 8px; max-width: 88%;
  animation: ce-msgIn 0.28s cubic-bezier(0.4,0,0.2,1) both;
}
@keyframes ce-msgIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.ce-msg.ce-msg-bot  { align-self: flex-start; }
.ce-msg.ce-msg-user { align-self: flex-end; flex-direction: row-reverse; }
.ce-msg-avatar {color: #fff;
  width: 26px; height: 26px; border-radius: 50%; background: var(--ce-gradient);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ce-msg-avatar img {
  width: 26px; height: 26px; border-radius: 0%; border-color: #f4f7fc ;background: #f4f7fc;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ce-msg-avatar i { color: #fff; width: 12px; height: 12px; }
.ce-msg-content { display: flex; flex-direction: column; gap: 3px; }
.ce-msg-user .ce-msg-content { align-items: flex-end; }
.ce-msg-bubble {
  padding: 10px 13px; border-radius: 16px; font-size: 0.855rem; line-height: 1.55;
  max-width: 260px; word-break: break-word;
}
.ce-msg-bot  .ce-msg-bubble { background: #fff; color: var(--ce-navy); border-bottom-left-radius: 4px; box-shadow: 0 2px 10px rgba(10,15,30,0.07); }
.ce-msg-user .ce-msg-bubble { background: var(--ce-gradient); color: #fff; border-bottom-right-radius: 4px; box-shadow: 0 4px 14px rgba(37,99,235,0.28); }
.ce-msg-time { font-size: 0.67rem; color: var(--ce-muted); padding: 0 2px; }

/* Typing indicator */
.ce-typing .ce-msg-bubble { display: flex; align-items: center; gap: 4px; padding: 12px 15px; }
.ce-typing-dot {
  width: 3.5px; height: 3.5px; border-radius: 50%; background: var(--ce-gradient);
  animation: ce-typingBounce 1.2s infinite ease-in-out;
  opacity: 0.8;
}
.ce-typing-dot:nth-child(2) { animation-delay: 0.2s; }
.ce-typing-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes ce-typingBounce  {
  0%,60%,100% { transform: translateY(0);    opacity: 0.4; }
  30%         { transform: translateY(-5px); opacity: 1;   }
}

/* ═══ INLINE WELCOME MENU ════════════════════ */
.ce-inline-menu {
  background: #fff; border-radius: 14px;
  padding: 13px 13px 11px; box-shadow: 0 2px 10px rgba(10,15,30,0.07);
  display: flex; flex-direction: column; gap: 7px;
  align-self: flex-start; max-width: 92%;
  animation: ce-msgIn 0.3s cubic-bezier(0.4,0,0.2,1) 0.15s both;
}
.ce-inline-menu.hidden { display: none; }

.ce-inline-menu-label {
  font-size: 0.72rem; font-weight: 700; color: var(--ce-muted);
  text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 2px;
}

.ce-inline-btn {
  display: flex; align-items: center; gap: 8px;
  background: var(--ce-gradient); border: 1px solid var(--ce-border);
  border-radius: 8px; padding: 9px 12px; cursor: pointer;
  font-size: 0.82rem; font-weight: 600; color: var(--ce-navy);
  font-family: inherit; text-align: left;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.ce-inline-btn:hover {
  background: var(--brand-gradient); color:#fff;
  transform: translateX(2px); box-shadow: 0 2px 8px rgba(37,99,235,0.1);
}
.ce-inline-btn i { width: 14px; height: 14px; color: #fff; flex-shrink: 0; }

/* ═══ FOLLOW-UP CHIP TRAY ════════════════════ */
.ce-chips-tray {
  display: flex; flex-wrap: wrap; gap: 7px;
  align-self: flex-start; max-width: 96%;
  padding: 2px 0 4px;
  animation: ce-msgIn 0.28s cubic-bezier(0.4,0,0.2,1) 0.1s both;
}

.ce-chip {
  display: inline-flex; align-items: center; gap: 5px;
  background: #fff; border: 1.5px solid var(--ce-border);
  border-radius: 50px; padding: 6px 13px;
  font-size: 0.78rem; font-weight: 600; color: var(--ce-blue-mid);
  font-family: inherit; cursor: pointer; white-space: nowrap;
  box-shadow: 0 1px 6px rgba(37,99,235,0.08);
  transition: background 0.18s, border-color 0.18s, transform 0.15s, box-shadow 0.18s;
}
.ce-chip:hover {
  background: var(--ce-gradient); color: #fff; border-color: transparent;
  transform: translateY(-1px); box-shadow: 0 4px 14px rgba(37,99,235,0.28);
}
.ce-chip i { width: 12px; height: 12px; }
.ce-chip.used { opacity: 0.45; pointer-events: none; }

/* ═══ INPUT AREA ═════════════════════════════ */
.ce-input-area {
  display: flex; align-items: center; gap: 8px; padding: 10px 13px;
  background: #fff; border-top: 1px solid #eef2ff; flex-shrink: 0;
}
.ce-emoji-btn {
  background: none; border: none; cursor: pointer; color: var(--ce-muted);
  display: flex; align-items: center; padding: 5px; border-radius: 7px;
  transition: color 0.2s, background 0.2s; flex-shrink: 0;
}
.ce-emoji-btn:hover { color: var(--ce-blue-mid); background: rgba(37,99,235,0.06); }
.ce-emoji-btn i { width: 18px; height: 18px; }

/* ── Emoji Picker Fix ── */
/* 🎯 CONTENTEDGE EMOJI PICKER THEME */

    /* ═══════════════════════════════════════
      EMOJI PICKER — BASE + TOKENS
    ═══════════════════════════════════════ */
    emoji-picker {
      position: fixed;
      z-index: 99999;

      height: 290px;
      max-height: 320px;

      overflow: hidden;
      box-shadow: none;

      /* ── Design Tokens ── */
      --background: #ffffff;
      --border-color: #e2e8f0;
      --border-radius: 18px;

      --font-family: 'Satoshi', system-ui, sans-serif;

      --input-border-color: #e2e8f0;
      --input-border-radius: 10px;
      --input-font-color: #0f172a;
      --input-placeholder-color: #94a3b8;
      --input-padding: 4px 8px;

      --category-icon-color: #64748b;
      --category-icon-active-color: #2563eb;

      --indicator-color: #2563eb;

      --emoji-size: 20px;
      --emoji-padding: 6px;
      --emoji-hover-background: rgba(37, 99, 235, 0.12);

      scrollbar-width: thin;
    }


    /* ═══════════════════════════════════════
      INTERNAL PARTS
    ═══════════════════════════════════════ */

    /* Search */
    emoji-picker::part(search) {
      border-radius: 10px;
      font-size: 4px;
    }

    /* Category bar */
    emoji-picker::part(category-bar) {
      padding: 6px 8px;
      border-bottom: 1px solid #f1f5f9;
    }

    /* Emoji */
    emoji-picker::part(emoji) {
      border-radius: 8px;
      transition: background 0.15s ease;
    }

    emoji-picker::part(emoji):hover {
      background: rgba(37, 99, 235, 0.12);
    }

    /* Scroll behavior */
    emoji-picker::part(emoji-list) {
      scroll-behavior: smooth;
    }

    /* Container padding */
    emoji-picker::part(container) {
      padding: 8px;
    }


    /* ═══════════════════════════════════════
      SCROLLBAR
    ═══════════════════════════════════════ */
    emoji-picker::-webkit-scrollbar {
      width: 6px;
    }

    emoji-picker::-webkit-scrollbar-thumb {
      background: #cbd5f5;
      border-radius: 10px;
    }
.ce-input {
  flex: 1; border: none; outline: none; font-size: 0.875rem;
  color: var(--ce-navy); font-family: inherit; background: transparent;
  caret-color: var(--ce-blue-mid);
}
.ce-input::placeholder { color: #b0bcce; }
.ce-send-btn {
  width: 33px; height: 33px; border-radius: 50%; background: var(--ce-gradient);
  border: none; cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: #fff; flex-shrink: 0; box-shadow: 0 3px 10px rgba(37,99,235,0.3);
  opacity: 0.55; transition: transform 0.2s, opacity 0.2s, box-shadow 0.2s;
}
.ce-send-btn.active, .ce-send-btn:hover { opacity: 1; transform: scale(1.08); }
.ce-send-btn i { width: 5px; height: 5px; }

/* ═══ BOTTOM TABS ════════════════════════════ */
.ce-tabs { display: flex; background: #fff; border-top: 1px solid #eef2ff; flex-shrink: 0; }
.ce-tab {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 9px 8px; background: none; border: none; border-top: 2.5px solid transparent;
  margin-top: -1px; cursor: pointer; color: var(--ce-muted);
  font-size: 0.7rem; font-weight: 600; font-family: inherit; letter-spacing: 0.01em;
  transition: color 0.2s, border-color 0.2s;
}
.ce-tab i { width: 16px; height: 16px; }
.ce-tab.active { color: var(--ce-blue-mid); border-top-color: var(--ce-blue-mid); }
.ce-tab:hover:not(.active) { color: var(--ce-blue); }

/* ═══ POWERED BY ═════════════════════════════ */
.ce-powered {
  text-align: center; font-size: 0.62rem; color: #b0bcce;
  padding: 5px 8px 6px; background: #fff; letter-spacing: 0.05em; flex-shrink: 0;
}
.ce-powered mark {
  background: #000;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  font-weight: 700;
}
.ce-powered strong {
  background: var(--ce-gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  font-weight: 700;
}

/* ═══ SCROLLBARS ═════════════════════════════ */
.ce-messages::-webkit-scrollbar,
.ce-home-content::-webkit-scrollbar { width: 4px; }
.ce-messages::-webkit-scrollbar-track,
.ce-home-content::-webkit-scrollbar-track { background: transparent; }
.ce-messages::-webkit-scrollbar-thumb,
.ce-home-content::-webkit-scrollbar-thumb { background: var(--ce-sky); border-radius: 4px; }











/* ===== PAGES ======================= */

/* ═══ Industries ═════════════════════════════════ */
#industries { padding-top:120px; }
/* ── PREMIUM INDUSTRY CARDS ── */

.industry-card.premium {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 420px;
  cursor: pointer;
  padding: 0%;
  background: none;
  box-shadow: 0 20px 50px rgba(10,15,30,0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.industry-card.premium:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 30px 70px rgba(10,15,30,0.18);
}
.industry-card.premium:nth-child(1) {
  grid-column: span 2;
  height: 420px;
}

.industry-card.premium:nth-child(2) {
  height: 420px;
}

/* IMAGE */

.industry-card.premium img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}
.industry-card img[src*="government"] {
  object-position: 70% center;
  filter: brightness(0.95) 
  contrast(1.05);
}

/* DARK OVERLAY */
.industry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,15,30,0.9) 15%,
    rgba(10,15,30,0.55) 50%,
    transparent 100%
  );
  transition: all 0.4s ease;
}

/* CONTENT */
.industry-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px;
  color: #fff;
  transform: translateY(16px);
  transition: all 0.4s ease;
}

/* TAG */
.industry-tag {
  display: inline-block;
  font-size: 0.7rem;
  background: rgba(255,255,255,0.15);
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 8px;
  backdrop-filter: blur(6px);
}

/* TITLE */
.industry-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

/* DESCRIPTION (hidden initially) */
.industry-desc {
  font-size: 0.8rem;
  opacity: 0;
  max-height: 0;
  transition: all 0.35s ease;
}

/* READ MORE */
.read-more {
  font-size: 0.8rem;
  opacity: 0;
  display: inline-block;
  margin-top: 6px;
  transform: translateY(6px);
  transition: all 0.35s ease;
}

/* ── HOVER EFFECT ── */
.industry-card.premium:hover img {
  transform: scale(1.06);
  transition: transform 0.4s ease;
}

.industry-card.premium:hover .industry-overlay {
  background: linear-gradient(
    to top,
    rgba(10,15,30,0.95) 20%,
    rgba(10,15,30,0.6) 60%,
    transparent 100%
  );
}

.industry-card.premium:hover .industry-content {
  transform: translateY(0);
}

.industry-card.premium:hover .industry-desc {
  opacity: 1;
  max-height: 80px;
}

.industry-card.premium:hover .read-more {
  opacity: 1;
  transform: translateY(0);
}
#industries::before,
#industries::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 80px;
  pointer-events: none;
}

#industries::before {
  top: 0;
  background: linear-gradient(to bottom, #fff, transparent);
}

#industries::after {
  bottom: 0;
  background: linear-gradient(to top, #fff, transparent);
}
.read-more {
  color: var(--brand-gradient)
}