   :root {
      --primary: #0ea5e9;
      --primary-dark: #0284c7;
      --text-dark: #0f172a;
      --text-muted: #64748b;
      --bg-light: #f8fafc;
      --card-border: #e2e8f0;
      --text-muted: #676f7e;
      --bg-color:#f9fafb;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: "Space Grotesk", sans-serif;
      color: var(--text-dark);
      background: white;
      line-height: 1.6;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    /* ---------- HEADER ---------- */
  header {
       min-height: 80px;
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 9;
       
}

    .container {
 max-width: 1400px;
      margin: auto;
        padding-right: 2rem;
    padding-left: 2rem;
          width: 100%;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 700;
      font-size: 30px;
    }

    .logo span {
      color: var(--primary);
    }

    nav {
      display: flex;
      gap: 28px;
      align-items: center;
    }

    nav a {
      color: var(--text-muted);
      font-weight: 500;
    }
nav  .btn-primary {
  
    padding: 8px 12px;
 
}
/* Toggle button hidden on desktop */
.nav-toggle{
  display:none;
  font-size:26px;
  background:none;
  border:none;
  cursor:pointer;
}
.header-row .btn-primary {
       height: fit-content;
    padding: 10px 12px ;
  
}
/* Mobile Nav */
@media (max-width: 991px){

  .nav-toggle{
    display:block;
  }

  nav{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#fff;
    display:none;
    flex-direction:column;
    padding:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.1);
  }

  nav.active{
    display:flex !important;
            gap: 15px;
                    align-items: flex-start;
  }

 

  nav a.btn-primary{
    margin-top:12px;
    text-align:center;
  }

  .header-row{
    position:relative;
  }
}

span.tagline {
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}
    .btn-primary {
      background: var(--primary);
      color: white;
      padding: 10px 30px;
      border-radius: 10px;
      font-weight: 600;
          line-height: normal;
    align-content: center;
        height: fit-content;
    }

    /* ---------- HERO ---------- */
    .hero {
      position: relative;
      overflow: hidden;
      padding-top: 10rem;
    padding-bottom: 6rem;
    background: url('images/hero_bg.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: repeat;
    }

    .hero-container {
      
   
      position: relative;
      z-index: 1;
    }
/*.circle-shape {
    background-color: #0da2e70d;
    border-radius: 9999px;
    width: 16rem;
    height: 16rem;
    left: 25%;
    top: 25%;
    position: absolute;
    filter: blur(64px);
}*/

.circle-shape {
    /* background-color: #0da2e70d; */
    /* border-radius: 9999px; */
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    filter: blur(64px);
    background-size: cover;
        z-index: -1;
}
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #eef6ff;
    color: var( --text-muted);
    font-size: 14px;
    margin-bottom: 24px;
    font-weight: 500;
    background-color: #f3f5f7;
    border-color: #e5e7eb;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: .5rem;
    padding-bottom: .5rem;
}
.hero h1 {
    font-weight: 700;
    font-size: 4.5rem;
    line-height: 1;
 
    margin-bottom: 20px;
}

    .hero h1 span {
      color: var(--primary);
    }

    .hero p {
      max-width: 700px;
      
      color: var(--text-muted);
              font-size: 1.25rem;
        line-height: 1.75rem;
    }

    .hero-buttons {
      margin-top: 32px;
      display: flex;
      justify-content: ;
      gap: 16px;
      flex-wrap: wrap;
    }

    .btn-secondary {
      border: 1px solid var(--card-border);
      padding: 12px 20px;
      border-radius: 10px;
      font-weight: 600;
      background: white;
    }

    /* ---------- STATS ---------- */
    .stats {
        max-width: 672px;
    padding-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
    border-top: 1px solid #cccccc87;
    margin-top: 60px;
    margin-left: auto;
    margin-right: auto;
    }

    .stat h3 {
      font-size: 36px;
      font-weight: 700;
    }

    .stat p {
      color: var(--text-muted);
      font-size: 14px;
    }

    /* ---------- SECTIONS ---------- */
    section {
      padding: 100px 0px;
    }

    .section-header {
      text-align: center;
      max-width: 700px;
      margin: auto;
      margin-bottom: 60px;
    }

    .section-header span {
      color: var(--primary);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 1px;
          margin-bottom: 10px;
    display: block;
    }

     h2 {
      font-size: clamp(28px, 4vw, 48px);
      margin-bottom: 20px;
      line-height: 1;
    }
      .h2 {
      font-size: clamp(28px, 4vw, 48px);
     
    }
    p.text-lg {
    font-size: 18px;
}

    .section-header p {
      color: var(--text-muted);
    }
.bg-shade {
    background-image: linear-gradient(to right, #e5e7eb4d 1px, transparent 1px), linear-gradient(to bottom, #e5e7eb4d 1px, transparent 1px);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    position: absolute;
    top: 0;
    height: 100vh;
    background-size: 4rem 4rem;
}
    /* ---------- SERVICES ---------- */
  

    .services-grid {
    
      display: grid;
         grid-template-columns: 1fr 1fr 1fr;
      gap: 28px;
    }

    .card {
    background-color: #f9fafb;
      border: 1px solid var(--card-border);
      border-radius: 16px;
      padding: 28px;
      transition: 0.3s ease;
    }

    .card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 40px rgba(2, 132, 199, 0.08);
    }

    .icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: #e0f2fe;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
          padding: 6px;
    }

    .card h3 {
      margin-bottom: 10px;
      font-size: 20px;
          font-weight: 600;
    }

    .card p {
      color: var(--text-muted);
      font-size: 15px;
    }

    /* ---------- CTA ---------- */
    .cta {
      background: linear-gradient(135deg, #0284c7, #0ea5e9);
      color: white;
      text-align: center;
      border-radius: 24px;
      max-width: 1100px;
      margin: auto;
      padding: 80px 20px;
    }

    .cta h2 {
      font-size: clamp(28px, 4vw, 44px);
      margin-bottom: 12px;
    }

    .cta p {
      max-width: 600px;
      margin: auto;
      opacity: 0.9;
    }

    .cta .hero-buttons {
      margin-top: 32px;
    }

    .cta .btn-secondary {
      background: white;
      color: var(--primary-dark);
      border: none;
    }

    /* ---------- FOOTER ---------- */
    footer {
      padding: 60px 20px;
      text-align: center;
      color: var(--text-muted);
      font-size: 14px;
    }


.header-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
}
nav a {
    font-size: 14px;
}

  


    svg.lucide.lucide-sparkles.w-4.h-4.text-primary {
    color: var(--primary);
    width: 18px;
}
.hero-buttons .btn {
    padding: 10px 31px;
        line-height: 1.5;
}
.hero-buttons a.btn.btn-primary {
    box-shadow: rgb(14 165 233 / 29%) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}

.why-section{
  padding:100px 20px;
  background:#fff;
}

.why-container{

  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:60px;
  align-items:center;
}

.why-label{
  color:#0ea5e9;
  font-weight:600;
  letter-spacing:1px;
  font-size:13px;
}



.why-content p{
  color:#64748b;
  max-width:520px;
  margin-bottom:28px;
}

.why-list{
  list-style:none;
  padding:0;
}

.why-list li{
  position:relative;
 
  margin-bottom:14px;
  color:#0f172a;
  font-weight:500;
  display: flex;
    align-items: center;
}

/* IMAGE */
.why-image{
  border-radius:20px;
  overflow:hidden;
  background:linear-gradient(135deg,#e0f2fe,#f8fafc);
  padding:18px;
}

.why-image img{
  width:100%;
  height:420px;
  object-fit:cover;
  border-radius:16px;
  display:block;
}

/* RESPONSIVE */
@media (max-width:900px){
  .why-container{
    grid-template-columns:1fr;
    gap:40px;
  }

  .why-image img{
    height:320px;
  }
}

@media (max-width:480px){
  .why-image img{
    height:260px;
  }
}


.bg-color {

  background-color: var(--bg-color);
}

.process-section {
  padding: 5rem 0;
}

.process-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}

.process-tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: #0d6efd;
  margin-bottom: 0.75rem;
}



.process-header p {
  color: #6b7280;
}

/* Steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  position: relative;
}

/* Center line */
.process-steps::before {
  content: "";
  position: absolute;
  top: 1.75rem;
  left: 0;
  right: 0;
  height: 1px;
  background: #e5e7eb;
}

.process-step {
  position: relative;
}

.step-number {
  font-size: 3rem;
  font-weight: 700;
  color: rgba(13, 110, 253, 0.1);
  display: block;
  margin-bottom: 1.25rem;
      width: fit-content;
    max-width: 100px;
    background: #fff;
    height: fit-content;
    line-height: 1;
    margin-left: 5px;
    margin-right: 5px;
}

.process-step h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.process-step p {
  color: #6b7280;
  line-height: 1.6;
}

/* Tablet */
@media (max-width: 992px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps::before {
    display: none;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .process-steps {
    grid-template-columns: 1fr;
  }
}


.cta-section{

  text-align:center;
}

.cta-container{
  max-width:900px;
  margin:auto;
}

.cta-tag{
  font-size:12px;
  letter-spacing:2px;
  font-weight:600;
  color:#0ea5e9;
  display:inline-block;
  margin-bottom:16px;
}


.cta-container p{
  color:#64748b;
  max-width:640px;
  margin:0 auto 36px;
  font-size:16px;
}

.cta-actions{
  display:flex;
  justify-content:center;
  gap:16px;
  flex-wrap:wrap;
}



.btn-primary:hover{
  background:#0284c7;
}

.btn-outline{
  padding:14px 26px;
border-radius: 12px;
    border: 1px solid var(--primary);
    text-decoration: none;
    color: var(--primary);
    font-weight: 500;
        height: fit-content;
    line-height: 1;
}

.btn-outline:hover{
  border-color:#0ea5e9;
  color:#0ea5e9;
}

.cta-divider{
  margin:60px auto 32px;
  height:1px;
  max-width:720px;
  background:#e5e7eb;
}

.cta-trusted span{
  font-size:14px;
  color:#64748b;
}

.trusted-logos{
  margin-top:16px;
  display:flex;
  justify-content:center;
  gap:32px;
  flex-wrap:wrap;
}

.trusted-logos span{
  color:#9ca3af;
  font-weight:600;
  font-size:15px;
}

/* Mobile */
@media(max-width:480px){
  .cta-actions{
    flex-direction:column;
  }
}








.site-footer{
  border-top:1px solid #e5e7eb;
  padding:10px 20px;
  background:#fff;
  font-size:14px;
}

.footer-inner{
  max-width:1200px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}

/* Brand */
.footer-brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:600;
}

.logo-circle{
  width:36px;
  height:36px;
  border-radius:10px;
  background:#0ea5e9;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
}

.brand-text{
  font-size:16px;
}

/* Nav */
.footer-nav{
  display:flex;
  gap:28px;
}

.footer-nav a{
  text-decoration:none;
  color:#475569;
}

.footer-nav a:hover{
  color:#0ea5e9;
}

/* Copyright */
.footer-copy{
  color:#64748b;
  white-space:nowrap;
}

/* Responsive */
@media(max-width:768px){
  .footer-inner{
    flex-direction:column;
    text-align:center;
  }

  .footer-nav{
    order:3;
  }
}


.why-list li svg {
    stroke: var(--primary);
    font-size: 20px;
    width: 18px;
    margin-right: 10px;
}

/*.services .card svg path {
fill: var(--primary);
}*/
.services .card  g#SVGRepo_iconCarrier path {
    fill: transparent;
    stroke: var(--primary);
}

  /* ---------- RESPONSIVE ---------- */
    @media (max-width: 991px) {
      nav {
        display: none !important;
      }

      .stats {
        grid-template-columns: 1fr;
        gap: 24px;
      }

.hero h1 {
  
    font-size: 2.5rem !important;
 
}
.container {

    padding-right: 1rem;
    padding-left: 1rem;
 
}
.hero-container {
   padding-right: 1rem;
    padding-left: 1rem;
}
.hero {
 height: 100%;
    padding-top: 8rem !IMPORTANT;
    padding-bottom: 5rem !IMPORTANT;
}


    }


@media (max-width: 767px) {
   
.contact-info {
    padding: 0 !important;
}
.services-grid {
    
    grid-template-columns: 1fr 1fr !IMPORTANT;
    gap: 20px !important;
}
section {
    padding: 60px 0px !IMPORTANT;
}
.bg-color {
    background-color: var(--bg-color);
}
.contact-page {
    padding-top: 8rem !IMPORTANT;
}
.logo {

    font-size: 22px !important;
}



}


@media (max-width: 576px) {
   

.services-grid {
    
    grid-template-columns: 1fr !IMPORTANT;
    gap: 20px !important;
}
.hero p {

    font-size: 1rem !IMPORTANT;
    line-height: 1.5rem !IMPORTANT;
}




}

.contact-page{
  padding:8rem 0px;
 
}

/* Header */
.contact-header{
  text-align:center;
  max-width:600px;
  margin:0 auto 60px;
}

.eyebrow{
  font-size:12px;
  letter-spacing:2px;
  color:#0ea5e9;
  font-weight:600;
}

.contact-header h1{
  font-size:40px;
  margin:12px 0;
}

.contact-header p{
  color:#64748b;
  font-size:16px;
}

/* Layout */
.contact-wrapper{
  display:grid;
  grid-template-columns:1.2fr 0.8fr;
  gap:40px;
  max-width:1000px;
  margin:auto;
}

/* Form */
.contact-form{
  background:#fff;
  padding:40px;
  border-radius:16px;
  box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.form-group{
  margin-bottom:20px;
}

.form-group label{
  display:block;
  margin-bottom:6px;
  font-weight:500;
}

.form-group input,
.form-group textarea{
  width:100%;
  padding:14px 16px;
  border-radius:10px;
  border:1px solid #e5e7eb;
  font-size:14px;
}

.form-group input:focus,
.form-group textarea:focus{
  outline:none;
  border-color:#0ea5e9;
}

/* Button */
.btn-primary{
  background:#0ea5e9;
  color:#fff;
  padding:14px 28px;
  border:none;
  border-radius:10px;
  font-size:15px;
  cursor:pointer;
}

.btn-primary:hover{
  background:#0284c7;
}

/* Info */
.contact-info{
  padding:40px;
}

.contact-info h3{
  font-size:22px;
  margin-bottom:12px;
}

.contact-info p{
  color:#64748b;
  margin-bottom:20px;
}

.contact-info ul{
  list-style:none;
  padding:0;
}

.contact-info li{
  margin-bottom:12px;
  font-size:15px;
}

/* Responsive */
@media(max-width:900px){
  .contact-wrapper{
    grid-template-columns:1fr;
  }

  .contact-header h1{
    font-size:32px;
  }
}


.contact-meta{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.icon-box{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:15px;
  color:#334155;
}

.icon-box .icon{
  width:36px;
  height:36px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#e6f4ff;
  color:#0ea5e9;
  flex-shrink:0;
      margin-bottom: 0;
}

.icon-box .text{
  line-height:1.4;
}

/* Optional horizontal layout on desktop */
@media (min-width: 768px){
  .contact-meta{
   
    gap:30px;
  }

.banner-row {
    display: grid;
    grid-template-columns: 1fr 1fr !important;
    gap: 20px;
    justify-content: space-between;
}


}
.banner-content.img {
    text-align: center;
}
.banner-content img {
    width: 100%;
    max-width: 500px;
    margin-left: 0;
}

.banner-row {
    display: grid;
    grid-template-columns: 1fr ;
    gap: 20px;
    
}
.footer-brand a {
    color: #000;
}