/* ================= ROOT ================= */
:root{
  --primary:#673DE6;
  --primary-dark:#4F46E5;
  --bg:#ffffff;
  --bg-soft:#F8FAFF;
  --text:#1F2937;
  --muted:#6B7280;
  --radius:20px;
  --shadow:0 20px 40px rgba(0,0,0,.08);
}

/* ================= RESET ================= */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Inter,system-ui,sans-serif;
}

body{
  background:var(--bg);
  color:var(--text);
  line-height:1.7;
}

a{text-decoration:none;color:inherit}

/* ================= HEADER ================= */
.site-header{
  background:#fff;
  box-shadow:var(--shadow);
  border-bottom:1px solid #eef0f5;
  position:sticky;
  top:0;
  z-index:999;
}

.nav-container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:20px 8%;
}

.logo{
  font-size:24px;
  font-weight:700;
  color:var(--primary);
}

.desktop-nav{
  display:flex;
  gap:30px;
}

.desktop-nav a{
  font-weight:500;
  position:relative;
  font-size:15px;
  color:var(--text);
  transition:.3s;
}
.desktop-nav a::after{
  content:"";
  position:absolute;
  bottom:-6px;
  left:0;
  width:0;
  height:2px;
  background:var(--primary);
  transition:.3s;
}

.desktop-nav a:hover{
  color:var(--primary);
  transform:translateY(-2px);
}

.desktop-nav a:hover::after{
  width:100%;
}

/* ================= MOBILE NAV ================= */
.hamburger{
  display:none;
  font-size:26px;
  background:none;
  border:none;
  cursor:pointer;
}

.mobile-nav{
  display:none;
  flex-direction:column;
  background:#fff;
  padding:20px 8%;
}

.mobile-nav a{
  padding:12px 0;
  border-bottom:1px solid #eee;
}
.mobile-nav.open{
  display:flex;
}


/* ================= FOOTER ================= */
.site-footer{
  background:var(--bg-soft);
  padding:90px 8% 30px;
}

.site-footer h3{
  font-size:26px;
  color:var(--primary);
  margin-bottom:12px;
}

.site-footer h4{
  font-size:16px;
  margin-bottom:16px;
}

.site-footer p{
  color:var(--muted);
  font-size:14px;
}

.footer-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:50px;
}

.footer-links ul{
  list-style:none;
}

.footer-links li{
  margin-bottom:10px;
}

.footer-links a{
  font-size:14px;
  color:var(--text);
  transition:.3s;
}

.footer-links a:hover{
  color:var(--primary);
  padding-left:6px;
}

.footer-contact p{
  margin-bottom:8px;
  transition:.3s;
}
.footer-contact p:hover{
  color:var(--primary);
  padding-left:6px;
}
.footer-cta{
  display:inline-block;
  margin-top:18px;
  background:var(--primary);
  color:#fff;
  padding:12px 22px;
  border-radius:30px;
  font-size:14px;
  transition:.3s;
}

.footer-cta:hover{
  background:var(--primary-dark);
  transform:translateY(-2px);
}

.footer-bottom{
  margin-top:50px;
  padding-top:20px;
  border-top:1px solid #e5e7eb;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:space-between;
  font-size:13px;
  color:var(--muted);
}

.footer-bottom a{
  color:var(--muted);
}

.footer-bottom a:hover{
  color:var(--primary);
}

/* ================= LAZY LOAD SECTIONS ================= */

.lazy-section{
  opacity:0;
  transform:translateY(40px);
  transition:.6s ease;
}

.lazy-section.visible{
  opacity:1;
  transform:none;
}

/* ================= POLICY MODAL ================= */
.policy-modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.6);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:2000;
}

.policy-modal-content{
  background:#fff;
  max-width:700px;
  width:90%;
  max-height:80vh;
  padding:30px;
  border-radius:20px;
  overflow-y:auto;
  position:relative;
}

.modal-close{
  position:absolute;
  top:15px;
  right:20px;
  font-size:24px;
  background:none;
  border:none;
  cursor:pointer;
}

.modal-body{
  font-size:14px;
  line-height:1.7;
}

/* ================= POLICY PAGE ================= */
.policy-page{
  max-width:900px;
  margin:0 auto;
  padding:80px 8% 120px;
}

.policy-page h1{
  font-size:38px;
  margin-bottom:10px;
  color:var(--text);
}

.policy-date{
  font-size:14px;
  color:var(--muted);
  margin-bottom:40px;
}

.policy-page h2{
  font-size:22px;
  margin:50px 0 15px;
  color:var(--text);
}

.policy-page p{
  font-size:15px;
  color:var(--text);
  margin-bottom:18px;
}

.policy-page ul{
  padding-left:20px;
  margin-bottom:20px;
}

.policy-page li{
  font-size:15px;
  margin-bottom:10px;
  color:var(--text);
}

/* subtle divider between sections */
.policy-page h2::before{
  content:"";
  display:block;
  width:50px;
  height:3px;
  background:var(--primary);
  margin-bottom:12px;
  border-radius:10px;
}

@media(max-width:768px){

  .policy-page{
    padding:60px 6% 100px;
  }

  .policy-page h1{
    font-size:28px;
  }

  .policy-page h2{
    font-size:20px;
  }
}

/* ================= HERO ================= */
.hero-section{
  padding:10px 8%;
  background:linear-gradient(135deg,#f8faff,#ffffff);
}

.hero-content{
  max-width:700px;
}

.hero-content h1{
  font-size:35px;
  margin-bottom:20px;
}

.hero-content p{
  font-size:18px;
  color:var(--muted);
  margin-bottom:30px;
}

.primary-btn{
  background:var(--primary);
  color:#fff;
  padding:14px 28px;
  border-radius:30px;
  display:inline-block;
  transition:.3s;
}

.primary-btn:hover{
  background:var(--primary-dark);
}

.hero-stats{
  display:flex;
  gap:40px;
}

.stat h3{
  font-size:28px;
  color:var(--primary);
}

/* ================= SERVICES ================= */
.services-preview{
    padding:30px 8%;
  text-align:center;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:40px;
  margin:60px 0;
}

.service-card{
  background:#fff;
  padding:30px;
  border-radius:20px;
  box-shadow:var(--shadow);
  transition:.3s;
}

.service-card:hover{
  transform:translateY(-6px);
}

.service-card img{
  width:100%;
  border-radius:12px;
  margin-bottom:20px;
}

.secondary-btn{
  color:var(--primary);
  font-weight:600;
}

.section-intro{
  max-width:600px;
  margin:0 auto 50px;
  color:var(--muted);
}

.service-card span{
  display:inline-block;
  margin-top:14px;
  font-size:13px;
  color:var(--primary);
  font-weight:600;
}


/* ================= WHY US ================= */
.why-choose-us{
    padding:30px 8%;
    text-align:center;
  background:var(--bg-soft);
}

.why-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:30px;
  margin-top:50px;
}

.why-box{
  background:#fff;
  padding:30px;
  border-radius:20px;
  box-shadow:var(--shadow);
}


/* ================= TOOLS ================= */
.tools-section{
    padding:30px 8%;
  text-align:center;
}

.tools-list{
  display:flex;
  flex-wrap:wrap;
  gap:15px;
  justify-content:center;
  margin-top:30px;
}

.tools-list span{
  background:var(--bg-soft);
  padding:10px 18px;
  border-radius:20px;
  font-size:14px;
}

/* ================= CTA ================= */
.home-cta{
  background:var(--primary);
  color:#fff;
  text-align:center;
  padding:100px 8%;
}

.home-cta p{
  margin:20px 0 30px;
}

/* ================= HERO CSS (ENHANCED) ================= */

.hero-grid{
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:60px;
  align-items:center;
}

.hero-badge{
  display:inline-block;
  background:var(--bg-soft);
  color:var(--primary);
  padding:6px 14px;
  border-radius:20px;
  font-size:13px;
  margin-bottom:16px;
}

.hero-actions{
  display:flex;
  gap:20px;
  margin-top:30px;
}

.ghost-btn{
  border:1px solid var(--primary);
  padding:14px 26px;
  border-radius:30px;
  color:var(--primary);
  transition:.3s;
}

.ghost-btn:hover{
  background:var(--primary);
  color:#fff;
}

.hero-visual img{
  width:100%;
  height: 450px;
  border-radius:20px;
}

@media(max-width:900px){
    .hero-content h1{
        font-size:27 px;
        margin-bottom:20px;
    }
  .hero-grid{
    grid-template-columns:1fr;
  }
}

/* ================= HOW WE WORK ================= */
.process-section{
    padding:30px 8%;
    text-align:center;
}
.process-grid{
    padding:30px 8%;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:40px;
  margin-top:30px;
}

.process-step span{
    padding:30px 8%;
  font-size:32px;
  font-weight:700;
  color:var(--primary);
}

/* ================= Industries We Serve ================= */

.industries-section{
    padding:30px 8%;
    text-align:center;
}


/* ================= STRONGER FINAL CTA ================= */

.home-cta .primary-btn{
  background:#ffffff;
  color:var(--primary);
  border:2px solid var(--primary);
  padding:14px 32px;
  border-radius:30px;
  font-weight:600;
  transition:.3s ease;
}
.home-cta .primary-btn:hover{
  background:var(--primary);
  border-color: var(--bg);
  color:#ffffff;
}


/* ================= RESPONSIVE ================= */
@media(max-width:768px){
  .desktop-nav{display:none}
  .hamburger{display:block}
}




/* ================= ABOUT PAGE ================= */

.about-hero{
  padding:120px 8%;
  background:linear-gradient(135deg,#F8FAFF,#ffffff);
  text-align:center;
}

.about-hero h1{
  font-size:42px;
  margin-bottom:14px;
}

.about-hero p{
  max-width:700px;
  margin:auto;
  color:var(--muted);
}

/* SECTION */
.about-section{
  padding:100px 8%;
}

.about-grid{
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:60px;
}

.about-text h2{
  margin-bottom:14px;
}

.about-text p{
  color:var(--muted);
  margin-bottom:14px;
}

/* INFO BOX */
.about-box{
  background:var(--bg-soft);
  padding:30px;
  border-radius:var(--radius);
}

.about-box h3{
  margin-bottom:14px;
}

.about-box ul{
  list-style:none;
}

.about-box li{
  margin-bottom:10px;
}

/* MISSION */
.about-mission{
  padding:80px 8%;
  background:#fff;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:40px;
}

.mission-card{
  background:var(--bg-soft);
  padding:30px;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

/* WHY CHOOSE US */
.about-why{
  padding:100px 8%;
  text-align:center;
}

.why-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
  margin-top:40px;
}

.why-card{
  padding:18px;
  background:#fff;
  border-radius:14px;
  box-shadow:0 10px 25px rgba(0,0,0,.06);
  font-weight:500;
}

/* CTA */
.about-cta{
  padding:100px 8%;
  background:#ffffff;
  text-align:center;
  border-top:1px solid #eee;
}

.about-cta p{
  color:var(--muted);
  margin:10px 0 30px;
}

/* RESPONSIVE */
@media(max-width:900px){
  .about-grid{
    grid-template-columns:1fr;
  }

  .about-hero h1{
    font-size:32px;
  }
}
/* ===== BADGE ===== */
.badge{
  display:inline-block;
  background:var(--bg-soft);
  color:var(--primary);
  padding:6px 14px;
  border-radius:20px;
  font-size:13px;
  margin-bottom:16px;
}

/* ===== WHO WE HELP ===== */
.about-help{
  padding:80px 8%;
  text-align:center;
}

.help-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
  margin-top:40px;
}

.help-card{
  padding:22px;
  background:#fff;
  border-radius:16px;
  box-shadow:var(--shadow);
  font-weight:500;
}

/* ===== PROCESS ===== */
.about-process{
  padding:100px 8%;
  background:var(--bg-soft);
  text-align:center;
}

.process-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:30px;
  margin-top:50px;
}

.process-card{
  background:#fff;
  padding:30px;
  border-radius:20px;
  box-shadow:var(--shadow);
}

.process-card span{
  font-size:28px;
  font-weight:700;
  color:var(--primary);
}

/* ===== VALUES LIST ===== */
.mission-card ul{
  list-style:none;
  margin-top:14px;
}

.mission-card li{
  margin-bottom:10px;
}

/* ===== CTA ===== */
.about-cta{
  padding:100px 8%;
  text-align:center;
  background:#fff;
  border-top:1px solid #eee;
}


/* ================= SERVICES PAGE ================= */

.services-hero{
  padding:120px 8%;
  text-align:center;
  background:linear-gradient(135deg,#F8FAFF,#ffffff);
}

.services-section{
  padding:100px 8%;
}

/* TOOLS */
.tools-section{
  padding:80px 8%;
  background:var(--bg-soft);
  text-align:center;
}

.tools-grid{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  justify-content:center;
  margin-top:30px;
}

.tools-grid span{
  padding:10px 18px;
  background:#fff;
  border-radius:20px;
  box-shadow:var(--shadow);
  font-size:14px;
}

/* VALUE */
.value-section{
  padding:100px 8%;
  text-align:center;
}

.value-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
  margin-top:40px;
}

.value-card{
  padding:24px;
  background:#fff;
  border-radius:18px;
  box-shadow:var(--shadow);
  font-weight:500;
}

/* CTA */
.services-cta{
  padding:100px 8%;
  text-align:center;
  border-top:1px solid #eee;
}


/* ================= SERVICE DETAIL ================= */

.service-detail-hero{
  padding:120px 8%;
  text-align:center;
  background:linear-gradient(135deg,#F8FAFF,#ffffff);
}

.service-detail-section{
  padding:100px 8%;
}

.service-detail-grid{
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:40px;
}

.service-detail-box{
  background:#fff;
  padding:30px;
  border-radius:20px;
  box-shadow:var(--shadow);
}

.service-detail-box ul{
  margin-top:15px;
  padding-left:0;
  list-style:none;
}

.service-detail-box li{
  margin-bottom:10px;
}

/* PROCESS */
.service-process{
  padding:100px 8%;
  background:var(--bg-soft);
  text-align:center;
}

.process-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:30px;
  margin-top:40px;
}

.process-card{
  background:#fff;
  padding:30px;
  border-radius:20px;
  box-shadow:var(--shadow);
}

.process-card span{
  font-size:32px;
  font-weight:700;
  color:var(--primary);
}

/* BENEFITS */
.service-benefits{
  padding:100px 8%;
  text-align:center;
}

.benefits-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:20px;
  margin-top:40px;
}

.benefit-card{
  padding:24px;
  background:#fff;
  border-radius:18px;
  box-shadow:var(--shadow);
  font-weight:500;
}

/* PRICING */
.service-pricing{
  padding:80px 8%;
  background:var(--bg-soft);
  display:flex;
  justify-content:center;
}

.pricing-box{
  background:#fff;
  padding:40px;
  border-radius:24px;
  box-shadow:var(--shadow);
  text-align:center;
  max-width:420px;
}

.price{
  font-size:36px;
  font-weight:700;
  margin:20px 0;
}

.price span{
  font-size:14px;
  font-weight:400;
  color:var(--muted);
}

/* CTA */
.service-detail-cta{
  padding:100px 8%;
  text-align:center;
  border-top:1px solid #eee;
}

/* RESPONSIVE */
@media(max-width:900px){
  .service-detail-grid{
    grid-template-columns:1fr;
  }
}

<!-- ================= FOR POWER BI DASHBOARD ================= -->

/* TOOLS */
.service-tools{
  padding:100px 8%;
  text-align:center;
  background:#fff;
}

.tools-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:20px;
  margin-top:40px;
}

.tool-card{
  padding:20px;
  border-radius:16px;
  background:var(--bg-soft);
  font-weight:500;
}

/* USE CASES */
.service-usecases{
  padding:100px 8%;
  background:var(--bg-soft);
  text-align:center;
}

.usecase-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:24px;
  margin-top:40px;
}

.usecase-card{
  background:#fff;
  padding:26px;
  border-radius:20px;
  box-shadow:var(--shadow);
  font-weight:500;
}

/* ================= WHATSAPP FLOAT ================= */

.whatsapp-float{
  position:fixed;
  right:24px;
  bottom:24px;
  width:58px;
  height:58px;
  background:#25D366;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 10px 30px rgba(0,0,0,.2);
  z-index:999;
  transition:transform .3s ease, box-shadow .3s ease;
}

.whatsapp-float:hover{
  transform:translateY(-4px);
  box-shadow:0 15px 40px rgba(0,0,0,.3);
}

/* Mobile safe area */
@media(max-width:600px){
  .whatsapp-float{
    right:16px;
    bottom:16px;
  }
}

/* ================= SERVICES PAGE USING JSON ================= */


.service-detail-section {
  padding: 80px 20px;
  background: var(--bg-soft);
}

.service-detail-card {
  max-width: 900px;
  margin: auto;
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.service-header {
  display: flex;
  align-items: center;
  gap: 20px;
}

.service-header img {
  width: 64px;
}

.service-header h1 {
  margin: 0;
  font-size: 32px;
}

.badge {
  display: inline-block;
  margin-top: 6px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
}

.badge.premium {
  background: #ede9fe;
  color: #4f46e5;
}

.badge.professional {
  background: #e0f2fe;
  color: #0369a1;
}

.service-description {
  margin: 30px 0;
  font-size: 18px;
  color: #555;
}

.feature-list {
  padding-left: 20px;
}

.feature-list li {
  margin-bottom: 10px;
}

.tool-tags span {
  display: inline-block;
  background: #f1f5f9;
  padding: 8px 14px;
  border-radius: 20px;
  margin: 6px 6px 0 0;
  font-size: 14px;
}

.cta-box {
  margin-top: 40px;
  padding: 30px;
  background: var(--primary);
  color: #fff;
  border-radius: 16px;
  text-align: center;
}

.btn-primary {
  display: inline-block;
  margin-top: 16px;
  padding: 12px 30px;
  background: #fff;
  color: var(--primary);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

