html { scroll-behavior: smooth; }
    :root { --primary:#5a2ec2; --accent:#f5b82d; --dark:#141124; --muted:#6a6a80; --bg:#f8f8ff; --card:#ffffff; }
    * { margin:0; padding:0; box-sizing: border-box; }
    body { font-family:'Poppins',sans-serif; background: var(--bg); color:#1d1d27; line-height:1.6; }

	.logo {
      font-size: 22px;
      font-weight: bold;
      color: #ffb400;
    }
	
    /* NAV */
    nav {
	  position: fixed;   
	  top: 0;            
	  left: 0;
	  width: 100%;
	  z-index: 1000;    
	  display: flex;
	  justify-content: space-between;
	  align-items: center;
	  padding: 15px 20px;
	  background: rgba(63,31,121); 
	  grid-template-columns: auto 1fr auto;
	}
	
	nav a { color:#fff; text-decoration:none; font-weight:500; font-size:.98rem; letter-spacing:.2px; position:relative; padding:6px 2px; }
    nav a::after { content:""; position:absolute; left:0; bottom:-6px; height:2px; width:0; background:var(--accent); transition: width .28s ease; }
    nav a:hover { color:var(--accent); }
    nav a:hover::after { width:100%; }
	
	/* -------- Desktop Nav -------- */
	nav ul {
	  list-style: none;
	  display: flex;              /* inline on desktop */
	  gap: 20px;
	  margin: 0;
		padding: 0;
	}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: var(--accent);
}
	
	/* Hamburger */
	.hamburger-wrapper {
  position: static;  /* reset so it doesn’t affect positioning */
  flex-shrink: 0;
}

    .menu-toggle {
	  width: 40px; 
	  height: 40px;
      display: none;
      flex-direction: column;
      gap: 5px;
	  position: fixed;  /* if you want fixed position */
	  right: 50px;
	  top: 20px;
	  z-index: 999;
	  flex-shrink: 0;
    }
    .menu-toggle span {
      width: 25px;
      height: 3px;
      background: white;
      border-radius: 2px;
      transition: 0.3s;
    }
    .menu-toggle.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }
    .menu-toggle.active span:nth-child(2) {
      opacity: 0;
    }
    .menu-toggle.active span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px);
    }

	/* Responsive */
	
    @media (max-width: 768px) {
	  
	  nav ul {
    flex-direction: column;
    position: absolute;
    top: 60px;  /* below nav bar */
    left: 0;
    width: 100%;
    padding: 20px 0;
    gap: 15px;
    display: none;  /* hidden by default */
  }

  nav ul.show {
    display: flex;   /* show when clicked */
  }
  
  nav ul li {
    text-align: center;
  }

  nav ul li a {
    display: flex;
    padding: 10px;
    color: #f5b82d;
    font-size: 18px;
  } 
	  
    .menu-toggle { display: flex; }  
    }

    /* HERO */
    header { height: 92vh; position:relative; color:#fff; display:grid; place-items:center; overflow:hidden; }
    header .overlay { position:absolute; inset:0; background: radial-gradient(ellipse at center, rgba(0,0,0,.25), rgba(0,0,0,.55)); z-index:1; }
    .hero-inner { position:relative; z-index:2; text-align:center; padding:0 24px; }
    .hero-title { font-size: clamp(2.2rem, 4vw + 1rem, 4rem); font-weight:700; text-shadow: 0 12px 36px rgba(0,0,0,.5); }
    .hero-sub { font-size: clamp(1rem, 1vw + .8rem, 1.25rem); margin-top:12px; opacity:.95; }
    .cta-row { margin-top:22px; display:flex; gap:14px; justify-content:center; }
    .btn { display:inline-block; padding:12px 18px; border-radius:12px; font-weight:600; text-decoration:none; }
    .btn-primary { background: var(--accent); color:#1b1304; }
    .btn-outline { border:1px solid rgba(255,255,255,.5); color:#fff; }
/* Fullscreen Background Video for HERO */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 0;
}
.hero-video-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-video.active {
  opacity: 1;
}
.hero-video-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 1s linear;
  pointer-events: none;
}

.hero-video.active {
  opacity: 1 !important;
}



    /* SECTIONS */
    section { padding: 100px 8%; max-width: 1400px; margin: auto; }
    section h2 { text-align:center; color: var(--primary); font-size: clamp(1.8rem, 1.8vw + 1rem, 2.6rem); margin-bottom: 10px; }
    .section-lead { text-align:center; color: var(--muted); max-width: 900px; margin: 8px auto 44px; }
	.section-lead-about { text-align:justify; color: var(--muted); max-width: 840px; margin: 8px auto 44px; }

    /* GRID & CARDS */
    .grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap:26px; list-style:none; }
    .card { background:var(--card); border-radius:18px; box-shadow:0 10px 28px rgba(10,10,30,.08); padding:26px 22px; transition: transform .28s ease, box-shadow .3s ease; height:100%; }
    .card:hover { transform: translateY(-6px); box-shadow:0 18px 48px rgba(10,10,30,.14); }
    
    /* THIN SVG ICONS */
    .icon-wrap { width:56px; height:56px; display:grid; place-items:center; border-radius:16px; margin:0 auto 14px; background: linear-gradient(135deg, rgba(90,46,194,.12), rgba(245,184,45,.12)); }
    .line-icon { width: 32px; height: 32px; stroke: var(--primary); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

    /* ABOUT / VISION & MISSION */
    .vm { display:grid; grid-template-columns:1fr; gap:32px; align-items:center; justify-items:center; }
    @media (min-width: 960px) { .vm { grid-template-columns:1fr 1fr; } }
    .vm-block { text-align:left; max-width:540px; }
    .vm h3 { color: var(--accent); font-size:1.4rem; margin-bottom:8px; }
    .vm-anim { width:320px; max-width:90vw; }

    /* PROCESS */
    .process { counter-reset: step; }
    .process .card { text-align:left; }
    .process .card h4::before { counter-increment: step; content: counter(step) ". "; color: var(--accent); }

    /* INDUSTRIES */
.tags{
display:flex;
flex-wrap:wrap;        /* allows second row if needed */
gap:14px;
justify-content:center;
max-width:1100px;
margin:0 auto;
}

    .tag { background:#fff; border:1px dashed #ddd; color:#333; padding:8px 12px; border-radius:999px; font-size:.92rem; }

    /* FAQ */
    .faq { max-width: 900px; margin: 0 auto; }
    .faq-item { background:#fff; border-radius:14px; box-shadow:0 8px 24px rgba(10,10,30,.08); margin-bottom:12px; overflow:hidden; }
    .faq-q { width:100%; text-align:left; background:#fff; border:none; padding:16px 18px; font-weight:600; cursor:pointer; display:flex; justify-content:space-between; align-items:center; }
    .faq-a { padding:0 18px 16px; display:none; color:#4b4b62; }

    /* TESTIMONIALS */
    .testimonial { background: var(--card); border-radius: 18px; box-shadow:0 8px 28px rgba(10,10,30,.08); padding:28px; text-align:center; }

    /* CONTACT */
    .contact { display:grid; grid-template-columns:1fr; gap:26px; }
    @media (min-width: 980px) { .contact { grid-template-columns: 1.2fr .8fr; align-items:start; } }
    .contact-form { display:grid; gap:14px; }
    .contact-form input, .contact-form textarea { padding:12px 14px; border-radius:12px; border:1px solid #e1e1ee; font-size:1rem; background:#fff; }
    .contact-form button { padding:12px 16px; border-radius:12px; border:none; background:var(--primary); color:#fff; font-weight:600; }
    .contact-card { background:#fff; border-radius:18px; padding:22px; box-shadow:0 10px 28px rgba(10,10,30,.08); }

    /* FOOTER */
    .footer { background:var(--dark); color:#fff; text-align:center; padding: 26px 12px; font-size:.95rem; margin-top:40px; }

    /* WhatsApp Floating Button */
    .whatsapp-float { position: fixed; width: 55px; height: 55px; bottom: 20px; right: 20px; background-color: #25d366; color: #fff; border-radius: 50%; text-align: center; font-size: 28px; box-shadow: 0 2px 8px rgba(0,0,0,0.3); z-index: 99999; display: flex; justify-content: center; align-items: center; transition: background 0.3s; }
    .whatsapp-float:hover { background-color: #20ba5a; }

    /* Secondary theme vars (overrides) */
    :root{ --bg: #f3f5f7; --card-bg: #ffffff; --text: #111827; --muted: #6b7280; --border: #e5e7eb; --shadow: 0 4px 16px rgba(0,0,0,.06); --radius: 14px; }

    body{ margin: 0; color: var(--text); background: var(--bg); line-height: 1.4; }

    .wrap{ max-width: 1200px; margin: 0 auto; padding: 48px 20px 72px; }

    .section-title{ font-size: clamp(28px, 4vw, 44px); font-weight: 650; text-align: center; margin: 10px 0 28px; }

    /* grid */
    .cards{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
    @media (max-width: 1100px){ .cards{ grid-template-columns: repeat(3, 1fr); } }
    @media (max-width: 820px){ .cards{ grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 560px){ .cards{ grid-template-columns: 1fr; } }

    /* card */
    .card-body{ padding: 20px 18px 10px; display: flex; flex-direction: column; gap: 10px; }
    .card-title{ font-size: 20px; font-weight: 650; margin: 0; }
    .card-excerpt{ margin: 0; color: var(--muted); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
    .card-meta{ margin-top: 4px; font-size: 14px; color: var(--muted); }
    .card-image{ width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; border-top: 1px solid var(--border); }

    /* optional: make entire card clickable */
    .card-link{ text-decoration: none; color: inherit; display:block; height:100%; }
    .card-link:focus-visible .card{ outline: 3px solid #1e90ff; outline-offset: 2px; }
	
	
	/* Modal Background */
/* Overlay */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0,0,0,0.6);
  overflow: hidden;
  justify-content: center;
  align-items: center;
}

/* Panel that expands */
.modal-content {
  background: #fff;
  width: 90%;
  max-width: 1200px;
  height: 80%;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 30px rgba(0,0,0,0.3);
  position: relative;
  opacity: 0;
  transform: translateY(-50px);
  transition: all 0.4s ease;
  overflow-y: auto;    /* 🔹 Scrollbar if content exceeds height */
}

.modal-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1a237e;  /* Deep blue */
  border-left: 4px solid #3949ab;
  padding-left: 10px;
}

.modal-content h2 {
  color: #1a237e;
}

/* Animate in */
.modal.show .modal-content {
  opacity: 1;
  transform: translateY(0);
}

.modal-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.modal-content li {
  display: flex;
  align-items: flex-start;  /* Keep icon and text aligned */
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}

.modal-content li:last-child {
  border-bottom: none;
}

.modal-content li i {
  font-size: 20px;
  color: #16a34a;
  flex-shrink: 0;
  width: 24px;       /* fixed width keeps text aligned */
  text-align: center;
  margin-top: 4px;
}

.modal-content li div {
  flex: 1;
}

/* Close button */
.close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 30px;
  cursor: pointer;
  color: #333;
}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 25px;       /* same rounded corners as top blocks */
  overflow: hidden;
  background: #3f1f79;       /* keep your red background */
  padding:0 20px;             /* match padding inside */
  max-width: 1200px;          /* match width of above cards */
  margin: 20px auto;         /* center it */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* same shadow as above */
    }
	
	.rounded-img {
  width: 100%;
  height: auto;
  border-radius: 15px; /* adjust px as per your design */
  object-fit: cover;   /* keeps it neat inside the container */
}

    .left, .right {
      flex: 1;
    }
	.left img {
  width: 100%;
  height: 100%;
  object-fit: cover;  /* image fills its container */
  display: block;
}
    .right {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #3f1f79;
  color: white;
  text-align: center;
  padding: 40px;
}

.right h1 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  font-family: "Montserrat", sans-serif;  /* clean modern font */
  font-weight: 500;                    /* medium weight */
  font-style: italic;                  /* italic style for emphasis */
  color: #ffffff;                      /* white text */
  text-transform: capitalize;          /* capitalizes each word */
  margin: 0;
  line-height: 1.5;
  letter-spacing: 1px; 
}

@media (max-width: 768px) {
  .section {
    flex-direction: column;
  }
  .right {
    height: auto; /* let text define height on mobile */
    padding: 20px;
  }
}	
	.pagedivider-image{ width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; border-top: 1px solid var(--border); }

#industries-carousel-container { position: relative; text-align:center;}
  #industries-carousel { width:90%; margin:0 auto; }
  .industry-slide { min-width: 100%; transition: transform 0.6s cubic-bezier(.46,.03,.52,.96); }
  .industry-tab.active { background: #5a2ec2; color: #fff; }
  @media (max-width: 820px){ .industry-slide{min-width:100%;} }
  
  #industries-carousel .card-image {
  width: 90%;         /* reduces width */
  height: 550px;      /* fixes height — adjust as needed */
  object-fit: cover;  /* crops image proportionally */
  margin: 0 auto;     /* centers image */
  display: block;     /* required for margin auto to work */
  border-radius: 10px; /* optional for rounded corners */
}
/*this is for video playing */
.hero-video-slider{
position:relative;
width:100%;
max-width:1100px;
margin:40px auto;
text-align:center;
}

.video-wrapper{
position:relative;
display:flex;
justify-content:center;
height:500px;
}

.prev-btn,
.next-btn{
position:absolute;
top:50%;
transform:translateY(-50%);
background:rgba(0,0,0,0.5);
color:white;
border:none;
padding:10px 15px;
cursor:pointer;
border-radius:6px;
}

.prev-btn{ left:10px; }
.next-btn{ right:10px; }

.slider-video{
width:100%;
height:100%;
object-fit:cover;
position:absolute;
top:0;
left:0;
opacity:0;
transition:opacity .6s ease;
}

.slider-video.active{
opacity:1;
}
/* Buttons */
.prev-btn,
.next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  border: none;
  color: #fff;
  font-size: 40px;
  padding: 5px 15px;
  cursor: pointer;
  z-index: 50;
  border-radius: 6px;
}

.prev-btn { left: 20px; }
.next-btn { right: 20px; }

.prev-btn:hover,
.next-btn:hover {
  background: rgba(0,0,0,0.6);
}

/* Bullet Indicators */
.slider-dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 60;
}

.slider-dot {
  width: 12px;
  height: 12px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: all .3s ease;
}

.slider-dot.active {
  background: #fff;
  transform: scale(1.3);
}
.line-icon path,
.line-icon circle{
stroke:#5a2ec2;
stroke-width:3;
fill:none;
stroke-linecap:round;
stroke-linejoin:round;
}
/* Overlay */
.hero-video-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 100;
}
/* Dropdown Container */
#nav-links .dropdown {
  position: relative;
}

#nav-links .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 230px;
  border-radius: 8px;
  padding: 10px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  z-index: 9999;
}
#nav-links .dropdown-menu li a {
  display: block;
  padding: 12px 20px;
  color: #222;
  font-size: 15px;
}
#nav-links .dropdown-menu li a:hover {
  background: #f2f2f2;
}
/* Desktop hover reveal */
#nav-links .dropdown:hover .dropdown-menu {
  display: block;
}
#ai-ml{
text-align:center;
}

#industries{
max-width:1100px;
margin:40px auto;
text-align:center;
}
