body{
font-family:Arial;
margin:0;
background: linear-gradient(
    to right,
    #f5f3ff 50%,   /* light purple */
    #ffffff 50%    /* white */
  );

}

html {
  scroll-behavior: smooth;
}

section {
  padding: 40px 0;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

.header{
position:fixed;
top:0;
width:100%;
background:transparent;
}

.nav-container{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 0;
}

.nav-menu{
display:flex;
list-style:none;
gap:30px;
}

.hero{
position: relative;
  height: 40vh;
  min-height: 320px;
  overflow: hidden;
    margin-top: 0;   /* ✅ ensure no gap */
  padding-top: 0;  /* ✅ remove spacing */
}

.hero-grid{
display:grid;
grid-template-columns:1fr 1fr;
align-items:center;
gap:40px;
}

.hero-image img{
width:100%;
border-radius:10px;
}

.service-grid,
.product-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.service-card,
.product-card{
background:white;
padding:30px;
border-radius:10px;
box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.btn-primary{
background:#6B46C1;
color:white;
padding:12px 25px;
border-radius:6px;
text-decoration:none;
}

.footer{
background:#111;
color:white;
padding:20px;
text-align:center;

}

/* FLOATING BUTTON */
#chat-toggle {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 9999;
}

#chat-toggle video {
  width: 70px;
  height: 70px;
  border-radius: 50%;
}

#chat-toggle:hover {
  transform: translateY(-50%) scale(1.1);
  filter: drop-shadow(0 0 15px rgba(0,255,255,0.6));
}

/* CHAT WIDGET */
#chat-widget {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) scale(0.9);

  width: 340px;
  height: 480px;

  border-radius: 20px;
  backdrop-filter: blur(20px);
  background: rgba(20,20,30,0.6);
  border: 1px solid rgba(255,255,255,0.1);

  box-shadow: 
    0 0 20px rgba(0, 200, 255, 0.3),
    0 0 60px rgba(0, 200, 255, 0.2);

  display: flex;
  flex-direction: column;
  overflow: hidden;

  animation: openChat 0.4s ease forwards;
  z-index: 9999;
}

.hidden {
  display: none !important;
}

@keyframes openChat {
  from {
    opacity: 0;
    transform: translateY(-50%) scale(0.6);
  }
  to {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }
}

/* HEADER */
#chat-header {
  padding: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0,0,0,0.4);
  color: white;
}

.assistant-info {
  display: flex;
  gap: 10px;
  align-items: center;
}

.name {
  font-weight: bold;
}

.status {
  font-size: 12px;
  color: #0f0;
}

/* BODY */
#chat-body {
  flex: 1;
  padding: 12px;
  overflow-y: auto;
}

/* MESSAGES */
.message {
  margin: 10px 0;
  padding: 12px 16px;
  border-radius: 18px;
  max-width: 80%;
  font-size: 14px;
  line-height: 1.4;
  animation: fadeIn 0.3s ease;
}

.user {
  background: linear-gradient(135deg, #0072ff, #00c6ff);
  color: white;
  margin-left: auto;
  border-bottom-right-radius: 4px;
}

.ai {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-bottom-left-radius: 4px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* INPUT */
#chat-input-area {
  display: flex;
  padding: 10px;
  background: rgba(0,0,0,0.3);
}

#chat-input {
  flex: 1;
  padding: 12px;
  border-radius: 12px;
  border: none;
  outline: none;
  background: rgba(255,255,255,0.1);
  color: white;
}

#chat-input::placeholder {
  color: rgba(255,255,255,0.6);
}

button {
  margin-left: 5px;
  padding: 10px 14px;
  border: none;
  background: #0072ff;
  color: white;
  border-radius: 10px;
  cursor: pointer;
}

/* TYPING DOTS */
.typing {
  display: flex;
  gap: 4px;
}

.typing span {
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  animation: blink 1.4s infinite;
}

.typing span:nth-child(2) { animation-delay: 0.2s; }
.typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes blink {
  0%,80%,100% { opacity: 0; }
  40% { opacity: 1; }
}

.navbar {
  position: absolute; /* 🔥 important */
  top: 0;
  width: 100%;
  z-index: 10;
  background: transparent;
}

/* on scroll */
.navbar.scrolled {
  position: fixed;
  background: rgba(15,23,42,0.95);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 8%;
}


.logo img {
  height: 66px;
  display: block;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

/* MENU */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-menu li {
  list-style: none;
}

.nav-menu a {
  color: #b2d528;
  text-decoration: none;
  font-weight: bold;
}

/* HAMBURGER */
.hamburger {
  display: none;
  font-size: 26px;
  color: #b2d528;
  cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {

  .nav-menu {
    position: absolute;
    top: 70px;
    right: 20px;
    background: #1e293b;
    flex-direction: column;
    width: 220px;
    padding: 15px;
    border-radius: 10px;
    display: none;
  }

  .nav-menu.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }

}

.hero {
  position: relative;
  height: 100vh; /* 🔥 40% screen */
  min-height: 300px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-text h1 {
  font-size: 40px;
  margin-bottom: 20px;
}

.hero-text p {
  color: #94a3b8;
  margin-bottom: 20px;
}

.hero-image img {
  width: 100%;
  border-radius: 10px;
}

.btn-primary {
  background: linear-gradient(135deg, #ffbc00, #ff9007);
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  color: white;
}

.service-grid,
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

@media (max-width: 768px) {

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 28px;
  }

}

.glass {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: 0.3s;
}

.glass:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

.floating {
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.btn-secondary {
  border: 1px solid white;
  padding: 12px 25px;
  border-radius: 8px;
  margin-left: 10px;
  color: white;
  text-decoration: none;
}

.btn-secondary:hover {
  background: white;
  color: black;
}

.client-logos {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.client-logos img {
  height: 80px;
  opacity: 0.7;
  transition: 0.3s;
}

.client-logos img:hover {
  filter: none;
  opacity: 1;
}

.cta {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #90559d, #a865b4);
}

.slider {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;

  opacity: 0;
  transform: scale(1); /* start normal */

  transition: opacity 1.5s ease, transform 6s ease;
  border-radius: 10px;
}

/* ACTIVE IMAGE */
.slide.active {
  opacity: 1;
  transform: scale(1.1); /* 🔥 zoom effect */
  z-index: 2;
}

.slider-bg {
  position: absolute;
  width: 100%;
  height: 80%;
  z-index: 1;
  overflow: hidden;
}

.slider-bg .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;

  opacity: 0;
  transform: scale(1);

  transition: opacity 1.5s ease, transform 6s ease;
}

.slider-bg .slide.active {
  opacity: 1;
  transform: scale(1.1);
}

.slider-bg::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  top: 0;
  left: 0;
  z-index: 2;
}

.hero-overlay {
  position: relative;
  z-index: 3;
  height: 100%;

  display: flex;
  align-items: center;
}

.hero-text {
    margin-top: 90px;
  max-width: 600px;
  color: white;
}

.hero-text h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.hero-text p {
  color: #e2e8f0;

  margin-bottom: 30px;
}

.scroll-indicator {
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999; /* 🔥 VERY IMPORTANT (above overlay) */
  cursor: pointer;
}

.scroll-indicator span {
  display: block;
  width: 30px;
  height: 30px;

  border-bottom: 3px solid #ffffff;
  border-right: 3px solid #ffffff;

  transform: rotate(45deg);
  margin: -10px;

  animation: scrollDown 1.5s infinite;

  opacity: 0.9;
}

@keyframes scrollDown {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(-10px, -10px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: rotate(45deg) translate(15px, 15px);
  }
}

.section-title {
  font-size: 32px;
  text-align: center;
  margin-bottom: 40px;
  background: linear-gradient(90deg, #a865b4, #90549f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  margin: 12px auto 0;

  background: linear-gradient(90deg, #90a400, #aac21b);
  border-radius: 2px;
}

.section-title {
  transition: all 0.4s ease;
}

.section-title:hover {
  letter-spacing: 1px;
}

.section-subtitle {
  text-align: center;
  color: #94a3b8;
  max-width: 600px;
  margin: -20px auto 40px;
}

/* H3 FIX (STRONG SELECTOR) */
.service-card h3,
.product-card h3 {
  font-size: 20px !important;
  font-weight: 600;
  color: #fe8e0e !important;
}

/* PARAGRAPH FIX */
.service-card p,
.product-card p {
  font-size: 15px !important;
  color: #94a3b8 !important;
}

:root {
  --primary: #00c6ff;
  --secondary: #0072ff;

  --text-main: #e2e8f0;
  --text-muted: #94a3b8;

  --heading: #ffffff;
}

.h3 {
  font-size: 20px;
  font-weight: 600;
color: red !important;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}

/* subtle hover effect */
.service-card:hover h3,
.product-card:hover h3 {
  color: var(--primary);
}

p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 16px;
  max-width: 600px;
  margin: -20px auto 40px;
}

.hero-text h1 {
  font-size: 42px;
  font-weight: 700;
  color: white;
}

.hero-text p {
  font-size: 17px;
  color: #cbd5f5;
}

.about-slider {
  position: relative;
  height: 120px;   /* 🔥 reduced from 180 → 120 */
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.about-slide {
  position: absolute;
  width: 100%;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.about-slide.active {
  opacity: 1;
}

.about-slide h3 {
  margin-bottom: 8px;
}

.about-slide p {
  font-size: 14px;
}

.value-section {
  margin-top: 40px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 25px;
  margin-top: 40px;
}

.value-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  padding: 25px;
  border-radius: 15px;
  text-align: center;

  transition: 0.3s;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.experience-box {
  margin-top: 20px;
}

.year {
  font-size: 60px;
  color: #00c6ff;
}

section {
  margin-bottom: 20px;
}

.trust-bar {
  padding: 60px 0;
  background: linear-gradient(135deg, #0f172a, #020617);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px,1fr));
  gap: 30px;
  text-align: center;
}

.counter-box h2 {
  font-size: 36px;
  color: #00c6ff;
}

.counter-box p {
  color: #94a3b8;
}

.about-section {
  margin-top: 60px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 25px;
}

.leadership-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: center;
}

.leader-img {
  width: 100%;
  border-radius: 15px;
}

.career-cta {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #0072ff, #00c6ff);
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

.services-hero {
  position: relative;
  height: 70vh;
}

.service-detail {
  margin-top: 80px;
}

.service-img {
  width: 80%;
    height: 80%;
  border-radius: 12px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.value-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

@media (max-width: 768px) {
  .value-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   GLOBAL LIST STYLE
========================= */

.custom-list {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
}

.custom-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  line-height: 1.6;
  color: #444;
  font-size: 15px;
}

/* Custom bullet (modern SaaS style) */
.custom-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 2px;
  color: #6c63ff; /* match your theme */
  font-size: 14px;
  font-weight: bold;
}

/* Optional hover effect (premium feel) */
.custom-list li:hover {
  color: #000;
  transform: translateX(3px);
  transition: all 0.2s ease;
}

/* FORCE GRID LAYOUT */
.job-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 25px;
  margin-top: 30px;
}

/* CARD */
.job-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  height: 100%;
}

/* HOVER */
.job-card:hover {
  transform: translateY(-5px);
}

/* HIGHLIGHT */
.highlight-job {
  border: 2px solid #6c63ff;
  background: #f8f9ff;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .job-grid {
    grid-template-columns: 1fr !important;
  }
}

/* CONTACT GRID */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

/* INFO BOX */
.info-box {
  margin-top: 20px;
}

/* FORM STYLE */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

/* BUTTON */
.contact-form button {
  width: 100%;
}

/* MOBILE */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* MODAL BACKGROUND */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
}

/* MODAL BOX */
.modal-content {
  background: #fff;
  margin: 10% auto;
  padding: 30px;
  width: 90%;
  max-width: 500px;
  border-radius: 12px;
  position: relative;
}

/* CLOSE BUTTON */
.close-btn {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 22px;
  cursor: pointer;
}

/* FORM */
.modal input {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.alert-message {
  margin: 20px 0;
  padding: 15px;
  border-radius: 8px;
  background: #f0f4ff;
  border: 1px solid #6c63ff;
  color: #333;
  text-align: center;
}

#scroll-controls {
  position: fixed;
  right: 20px;
  bottom: 100px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}

#scroll-controls button {
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  background: #b2d528;
  color: white;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}