:root{
  --accent1: linear-gradient(135deg,#0f62fe,#7f5af0);
  --accent2: linear-gradient(135deg,#4b2ff5,#00c2ff);
  --bg: lab(78.84% -32.68 -15.07);
  --surface: #ffffff;
  --text: #0f1724;
  --muted: #6b7280;
  --glass: rgba(255,255,255,0.6);
}
*{box-sizing:border-box}
html,body{height:100%;margin:0;font-family:Inter,Segoe UI,Arial,Helvetica,sans-serif;background:var(--bg);color:var(--text)}
.container{max-width:1100px;margin:0 auto;padding:0 20px}
.site-header{display:flex;align-items:center;justify-content:space-between;padding:12px 22px;background:rgba(255,255,255,0.5);backdrop-filter: blur(6px);position:sticky;top:0;z-index:40}
.brand{display:flex;align-items:center;gap:12px}
.logo{width:56px;height:56px;border-radius:50%;object-fit:cover;border:2px solid rgba(0,0,0,0.06)}
.brand-text .name{font-weight:700}
.brand-text .tag{font-size:12px;color:var(--muted)}
.main-nav a{margin-left:18px;text-decoration:none;color:var(--text);font-weight:600}
.main-nav a.active{color:#7f5af0}
.header-actions{display:flex;align-items:center;gap:12px}
.cta-link{background:linear-gradient(90deg,#7f5af0,#0f62fe);color:white;padding:8px 14px;border-radius:10px;text-decoration:none}

/* HERO */
.home-hero{position:relative;min-height:60vh;display:flex;align-items:center}
.home-hero .hero-overlay{position:absolute;inset:0;background-image:url('madg1.jpg');background-size:cover;background-position:center;filter:brightness(0.55);}
.home-hero .hero-content{position:relative;display:flex;gap:40px;align-items:center;padding:60px 20px}
.hero-text{flex:1;color:white}
.hero-text h1{font-size:36px;margin:0 0 12px}
.lead{opacity:0.95}
.hero-visual img{width:320px;max-width:40vw}

/* STATS */
.stats{display:flex;gap:20px;justify-content:space-between;margin:26px auto;padding:18px}
.stat{text-align:center;background:var(--surface);padding:18px;border-radius:12px;flex:1;box-shadow:0 8px 24px rgba(15,20,36,0.06)}
.stat .count{font-size:28px;margin:0}

/* FEATURES */
.features{display:flex;justify-content:space-between;gap:20px;margin:10px auto;padding:18px}
.feature-card{background:var(--surface);padding:18px;border-radius:10px;flex:1;box-shadow:0 8px 24px rgba(2,6,23,0.06)}

/* ROADMAP */
.roadmap{display:flex;gap:24px;align-items:center;margin:30px auto}
.roadmap-card{flex:1;background:var(--surface);padding:10px;border-radius:12px;box-shadow:0 8px 20px rgba(2,6,23,0.06)}
.roadmap-cta{min-width:240px;text-align:center}

/* MAIN CONTENT */
.content{padding:40px 0}
.card{background:var(--surface);padding:18px;border-radius:10px;box-shadow:0 8px 20px rgba(2,6,23,0.06)}
.team-grid{display:flex;gap:16px}
.team-person{flex:1;text-align:center}
.team-person img{width:100%;height:160px;object-fit:cover;border-radius:10px}

/* PRODUCTS */
.product-list{display:flex;flex-direction:column;gap:18px}
.product-card{display:flex;gap:16px;align-items:center;background:var(--surface);padding:16px;border-radius:12px;box-shadow:0 8px 20px rgba(2,6,23,0.06)}
.product-card img{width:220px;border-radius:10px}

/* CONTACT */
.contact-grid{display:flex;gap:12px}
.contact-card{flex:1;background:var(--surface);padding:14px;border-radius:10px;box-shadow:0 8px 18px rgba(2,6,23,0.06)}
.form{display:flex;flex-direction:column;gap:12px}
.form input,.form textarea{padding:10px;border-radius:8px;border:1px solid #e6e9ef}

/* FOOTER */
.site-footer{background:transparent;padding:28px 0}
.footer-grid{display:flex;gap:24px;align-items:start}
.footer-left .small{width:44px;height:44px}
.muted{color:var(--muted)}

/* BUTTONS */
.btn{display:inline-block;padding:10px 16px;border-radius:10px;text-decoration:none;font-weight:700}
.primary{background:linear-gradient(90deg,#7f5af0,#0f62fe);color:#fff}
.ghost{background:transparent;border:1px solid rgba(255,255,255,0.12);color:#fff}

/* RESPONSIVE */
@media(max-width:900px){
  .home-hero .hero-content{flex-direction:column}
  .features{flex-direction:column}
  .stats{flex-direction:column}
  .team-grid{flex-direction:column}
  .product-card{flex-direction:column}
  .footer-grid{flex-direction:column}
}

/* Reveal animations */
.reveal{opacity:0;transform:translateY(16px);animation:reveal-anim .8s forwards}
.reveal.delay-1{animation-delay:.18s}
.reveal.delay-2{animation-delay:.28s}
.reveal.delay-3{animation-delay:.38s}
@keyframes reveal-anim{to{opacity:1;transform:none}}

/* small utility */
.container{width:100%;max-width:1100px;margin:0 auto}

/* Dark theme support (toggle) */
.theme-dark{background:#071025;color:#dbeafe}
.theme-dark .home-hero .hero-overlay{filter:brightness(.4)}
.theme-dark .product-card,.theme-dark .card,.theme-dark .feature-card{background:#0b1320}

/* END CSS */
/* Make all product cards equal height */
.product-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--surface);
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(2,6,23,0.06);

  height: 300px;             /* SAME HEIGHT FOR ALL CARDS */
  overflow: hidden;          /* Hide overflow */
}

/* Make product-body scrollable */
.product-card .product-body {
  overflow-y: auto;           /* ENABLE SCROLL INSIDE CARD */
  padding-right: 6px;         /* space for scrollbar */
  height: 100%;
}

/* Product images keep fixed width */
.product-card img {
  width: 220px;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.ppt-section {
  margin-top: 20px;
  padding: 15px;
  background: #f5f7fa;
  border-radius: 8px;
}

.ppt-section h3 {
  margin-bottom: 5px;
}

.btn.secondary {
  display: inline-block;
  margin-top: 10px;
  background: #2c7be5;
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
}
.pdf-viewer {
  margin-top: 25px;
}

.pdf-viewer h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}
















.product-list {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 50px 0;
}

/* CARD */
.product-card {
  width: 800px;
  background: lab(96.88% 0.01 -0.01);
  padding: 1px;
  border-radius: 20px;
  box-shadow: 0 15px 45px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  display: flex;
  border: #000000;
}





.product-card:hover {
  transform: translateY(-8px);
}

/* HEADER */
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-header h2 {
  color: #1e3a8a;
}

/* BUTTON */
.toggle-btn {
  background: #2563eb;
  color: white;
  border: none;
  padding: 7px 14px;
  border-radius: 6px;
  cursor: pointer;
}

.toggle-btn:hover {
  background: #1e40af;
}

/* BODY */
.card-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  margin-top: 10px;
}

/* ACTIVE STATE */
.product-card.active .card-body {
  max-height: 300px;
}

.card-body ul {
  list-style: none;
  padding: 0;
 
}

.card-body li {
  background: hsl(165, 72%, 75%);
  padding: 8px;
  border-radius: 6px;
  margin-bottom: 6px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .product-list {
    flex-direction: column;
    align-items: center;
  }
}






/* contact */

/* HERO */
.contact-hero img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

/* LAYOUT */
.contact-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin: 50px auto;
}

/* LEFT INFO */
.contact-info h2 {
  margin-bottom: 10px;
  color: #1e3a8a;
}

.contact-info p {
  margin-bottom: 20px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.info-grid h4 {
  margin-bottom: 6px;
  color: #1e40af;
}

/* FORM BOX */
.contact-form-box {
  background: #1e73be;
  color: #fff;
  padding: 30px;
  border-radius: 10px;
}

.contact-form-box h3 {
  margin-bottom: 20px;
}

.contact-form-box form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form-box input,
.contact-form-box textarea {
  padding: 10px;
  border: none;
  border-radius: 4px;
}

.contact-form-box button {
  margin-top: 10px;
  background: #8bc34a;
  color: #fff;
  border: none;
  padding: 12px;
  cursor: pointer;
  font-weight: bold;
  border-radius: 4px;
}

.contact-form-box button:hover {
  background: #7cb342;
}

.success-msg {
  margin-top: 10px;
  color: #c8e6c9;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }
}













/* product */















/* CLICKABLE CARD */
.product-card-grid {
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
}

/* VERSION BADGES */
.version-badges {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 8px 0 12px;
}

.badge {
  background: #e0f2fe;
  color: #0369a1;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 999px;
}

/* HOVER EFFECT */
.product-card-grid:hover .badge {
  background: #2563eb;
  color: white;
}






/* HERO */
/* HERO */
.product-hero {
  text-align: center;
  max-width: 900px;
  margin: 60px auto 40px;
  padding: 0 20px;
}

.product-hero h1 {
  font-size: 2rem;
  margin-bottom: 12px;
  color: #0f172a;
}

.product-hero p {
  color: #475569;
}

/* GRID */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto 80px;
  padding: 0 20px;
}

/* CARD */
.product-card-grid {
  background: linear-gradient(145deg, #eef7f9, #ffffff);
  border-radius: 14px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card-grid:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

/* IMAGE */
.product-card-grid img {
  width: 140px;
  margin-bottom: 15px;
}

/* TEXT */
.product-card-grid h3 {
  margin-bottom: 6px;
  color: #0f172a;
}

.product-card-grid .highlight {
  display: block;
  font-weight: 600;
  color: #2563eb;
  margin-bottom: 10px;
}

.product-card-grid p {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.5;
}

















.product-card-grid a {
  text-decoration: none;
  color: inherit;
}

.version-badges {
  display: flex;
  gap: 8px;
  margin: 8px 0;
}

.badge {
  padding: 4px 10px;
  border-radius: 12px;
  background: #0aa2ff;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
}

.badge:hover {
  background: #0679c7;
}





