:root {
  --color-ink: #111a2e;
  --color-text: #2f3a4f;
  --color-muted: #718096;
  --color-blue: #1767f2;
  --color-blue-dark: #0d3f9d;
  --color-cyan: #6fe4ef;
  --color-sky: #eff8ff;
  --color-line: #d8e6f5;
  --color-white: #ffffff;
  --shadow-soft: 0 18px 50px rgba(21, 69, 128, 0.13);
  --shadow-card: 0 14px 32px rgba(24, 67, 115, 0.12);
  --radius-sm: 8px;
  --radius-md: 14px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  background: var(--color-white);
  font-family: "Barlow Semi Condensed", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}
.btn-primary:hover {
    background: #1864ec;
    color: #fff;
}
.service-card.reveal span.icon {
    width: fit-content;
    height: auto;
}
button {
  border: 0;
  font: inherit;
}
.bm-header {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #e9e9e9;
    position: relative;
    z-index: 999999;
    box-shadow: 0 10px 15px rgb(24 67 115 / 7%);
}
a.bm-logo img {
    width: 140px;
}
.bm-navbar a.btn {
    width: 100%;
}
.bm-navbar{
  max-width:1400px;
  margin:auto;
  padding:16px 0;
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:40px;
}
.bm-nav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:38px;
}

.bm-contact-btn{
  height:52px;
  padding:0 28px;
  border-radius:14px;
  background:#b950ff;
  color:#fff;
  text-decoration:none;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:15px;
  font-weight:700;
  transition:.3s;
    background: linear-gradient(180deg, #2779ff, #145ee7) !important;
    box-shadow: 0 10px 22px rgba(23, 103, 242, 0.27);
    
        color: #fff !important;
        position: relative;
    left: 179px;
}

.bm-contact-btn:hover{
  background:#a63dff;
  transform:translateY(-2px);
}

/* LOGO */

.bm-logo{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color:#111;
  font-size:34px;
  font-weight:800;
}

.bm-logo span{
  width:14px;
  height:14px;
  border-radius:50%;
  background:#b950ff;
}

/* NAV */

.bm-nav{
  display:flex;
  align-items:center;
  gap:38px;
}

.bm-nav > a,
.bm-service-btn{
  text-decoration: none;
    color: #222;
    font-size: 18px;
    font-weight: 600;
    border: none;
    background: none;
    cursor: pointer;
    transition: .3s;
    letter-spacing: 0.5px;
}
.footer-brand a.bm-logo {
    margin-bottom: 15px;
}
.bm-nav > a:hover,
.bm-service-btn:hover{
  color:#145ee7;
}

/* SERVICES */

.bm-services-wrapper{
  position:relative;
  padding-bottom:45px;
  margin-bottom:-45px;
}

.bm-service-btn{
  display:flex;
  align-items:center;
  gap:10px;
}

/* MEGA MENU */

.bm-mega-menu{
      position: absolute;
    top: 100%;
    margin-top: 0;
    left: 100px;
    transform: translateX(-50%);
    width: 1024px;
    background: #fff;
    border-radius: 28px;
    border: 1px solid #ececec;
    display: grid;
    grid-template-columns: 340px 375px 320px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: .25s ease;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .08);
}

/* FIXED HOVER */

.bm-services-wrapper:hover .bm-mega-menu{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}

/* LEFT SIDE */

.bm-left-menu{
  padding:24px;
  background:#fafafa;
  border-right:1px solid #eee;
}

.bm-tab{
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding:24px;
  border-radius:20px;
  cursor:pointer;
  transition:.3s;
  margin-bottom:16px;
  border:1px solid transparent;
}

.bm-tab:hover{
  background:#f8efff;
  border-color:#d9b0ff;
}

.bm-tab.active{
    background: linear-gradient(142deg, rgb(217, 251, 255) 4%, rgb(180 210 255) 55%, rgb(111 164 255) 100%);
    border-color: rgb(111 164 255);
}

.bm-tab-content h4{
  font-size:16px;
  color:#111;
  margin-bottom:8px;
  line-height:1.2;
}

.bm-tab-content p{
  color:#666;
  line-height:1.5;
  font-size: 14px;
  margin-bottom: 0px;
}

.bm-tab i{
  color:#577dbf;
}

/* CENTER */

.bm-center-content{
  padding:35px;
}

.bm-content{
  display:none;
}

.bm-content.active{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.bm-content a{
  text-decoration:none;
  color:#222;
  font-size:16px;
  font-weight:600;
  display:flex;
  align-items:center;
  gap:16px;
  padding:10px;
  border-radius:18px;
  transition:.3s;
}

.bm-content a:hover{
  background:#2171f8;
  color:#fff;
  transform:translateX(5px);
}

.bm-content a i{
     width: 42px;
    height: 42px;
    border-radius: 14px;
    background: #f4f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #155ee5;
    font-size: 16px;
}

/* RIGHT */

.bm-right-box{
  background:#fcfcfc;
  border-left:1px solid #eee;
  padding:40px 32px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.bm-right-box h3{
  font-size:22px;
  line-height:1.2;
  margin-bottom:20px;
  color:#111;
}

.bm-right-box p{
  color:#666;
  line-height:1.8;
  font-size:16px;
}

.bm-cta{
  margin-top:40px;
  text-decoration:none;
  color:#b950ff;
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:700;
  font-size:18px;
}

/* MOBILE */
.bm-mobile-btn{
  display:none;
  border:none;
  background:none;
  font-size:24px;
  cursor:pointer;
  color:#111;
}

/* MOBILE MENU */

.bm-mobile-menu{
  position:absolute;
  top:100%;
  left:0;
  width:100%;
  background:#fff;
  padding:20px;
  display:none;
  flex-direction:column;
  gap:14px;
  border-top:1px solid #eee;
  box-shadow:0 20px 40px rgba(0,0,0,.06);
  z-index:99999;
}

.bm-mobile-menu.active{
  display:flex;
}

.bm-mobile-menu > a{
  text-decoration:none;
  color:#111;
  font-size:16px;
  font-weight:600;
  padding:16px 18px;
  border-radius:16px;
  background:#f8f8f8;
  transition:.3s;
}

.bm-mobile-menu > a:hover{
  background:#2171f8;
  color:#fff;
}

/* SERVICES BOX */

.bm-mobile-services{
  background:#f8f8f8;
  border-radius:18px;
  overflow:hidden;
}

/* BUTTON */

.bm-mobile-services-btn{
  width:100%;
  border:none;
  background:none;
  padding:18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  font-size:16px;
  font-weight:700;
  cursor:pointer;
  color:#111;
}

.bm-mobile-services-btn i{
  color:#1661e9;
  transition:.35s ease;
}

/* SMOOTH OPEN */

.bm-mobile-services-content{
  max-height:0;
  overflow:hidden;
  transition:max-height .45s ease,padding .35s ease;
  display:flex;
  flex-direction:column;
  gap:22px;
  padding:0 18px;
}

.bm-mobile-services.active .bm-mobile-services-content{
  max-height:2500px;
  padding-bottom:20px;
}

.bm-mobile-services.active .bm-mobile-services-btn i{
  transform:rotate(45deg);
}

/* SERVICE GROUP */

.bm-mobile-service-group{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.bm-mobile-service-group h4{
  font-size:15px;
  color:#111;
  margin-bottom:8px;
  padding-left:4px;
}

.bm-mobile-service-group a{
  text-decoration:none;
  color:#444;
  background:#fff;
  border:1px solid #eee;
  border-radius:14px;
  padding:14px 16px;
  font-size:15px;
  font-weight:600;
  transition:.3s;
}

.bm-mobile-service-group a:hover{
  background:#f6ebff;
  border-color:#d9b0ff;
  color:#b950ff;
  transform:translateX(4px);
}
.bm-mobile-sub{
  background:#fff;
  border-radius:14px;
  border:1px solid #ececec;
  overflow:hidden;
}

.bm-mobile-sub-btn{
  width:100%;
  border:none;
  background:#fff;
  padding:16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  cursor:pointer;
  font-size:15px;
  font-weight:700;
  color:#111;
}

.bm-mobile-sub-btn i{
  color:#1661e9;
  transition:.3s ease;
}
.bm-mobile-sub-content a {
    color: #000;
}
.bm-mobile-sub-content{
  max-height:0;
  overflow:hidden;
  transition:max-height .35s ease,padding .35s ease;
  display:flex;
  flex-direction:column;
  gap:10px;
  padding:0 14px;
}

.bm-mobile-sub.active .bm-mobile-sub-content{
  max-height:800px;
  padding:0 14px 14px;
}

.bm-mobile-sub.active .bm-mobile-sub-btn i{
  transform:rotate(180deg);
}

/* RESPONSIVE */

@media(max-width:991px){
  section.woo-hero{
    padding-bottom: 0px !important;
  }
  .tab-btn{
        padding: 5px 28px !important;
  }
  .bm-nav{
    display:none;
  }

  .bm-mobile-btn{
    display:block;
            text-align: right;
  }

  .bm-navbar{
    grid-template-columns:auto auto;
  }

}

@media(min-width:992px){

  .bm-mobile-menu{
    display:none !important;
  }

}
/* RESPONSIVE */

@media(max-width:1300px){

  .bm-mega-menu{
    width:96vw;
    grid-template-columns:320px 1fr 280px;
  }

}

@media(max-width:991px){

  .bm-nav{
    display:none;
  }

  .bm-mobile-btn{
    display:block;
  }

}

@media(max-width:768px){
  .ex-stats-grid {
    margin: 0 15px;
}
.single-post h2 {
    font-size: 24px;
    line-height: 34px;
}
.single-post 0{
  text-align: center;
}
.single-post h1{
      font-size: 32px;
    line-height: 36px;
}
  section.woo-hero {
    padding: 50px 0 120px;
  }
  .case-study-section{
        padding: 90px 0px;
  }
  .case-content {
    padding: 15px;
}
.case-content h3{
  font-size: 24px;
}
  .project-body h3,
  .cta-card h2.heading-md {
    font-size: 24px;
}
  .btn{
        padding: 10px 25px;
  }
a.bm-logo img {
    width: 90px;
}
  .bm-navbar{
    padding:10px 0;
  }

  .bm-logo{
    font-size:28px;
  }

}
@media(max-width:991px){

  .bm-navbar{
    grid-template-columns:auto auto;
  }

  .bm-contact-btn{
    display:none;
  }

}
.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: 80px 0;
}

.heading-xl,
.heading-lg,
.heading-md {
  margin: 0;
  color: var(--color-ink);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.04;
}

.heading-xl {
  font-size: clamp(48px, 7vw, 52px);
}

.heading-lg {
  font-size: clamp(34px, 4vw, 48px);
}

.heading-md {
  font-size: clamp(30px, 3vw, 42px);
}

p {
  margin: 0;
}

.lead {
  max-width: 570px;
  margin-top: 22px;
  color: var(--color-text);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.45;
}

.eyebrow {
  display: block;
  margin: 0 0 8px;
  color: #5b677d;
  font-size: 16px;
  font-weight: 500;
}

.text-gradient {
  color: var(--color-blue);
  background: linear-gradient(90deg, #075de5, #42a7ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn {
    background: #2563eb;
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.25);
    transition: all 0.3s ease;
    border: 1px solid #2563eb;
        justify-content: center;
    min-height: 48px;
        letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 35%, rgba(255,255,255,0.35) 45%, transparent 55% 100%);
  transform: translateX(-120%);
  transition: transform 600ms ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(23, 103, 242, 0.24);
}

.btn:hover::after {
  transform: translateX(120%);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, #2779ff, #145ee7);
  box-shadow: 0 10px 22px rgba(23, 103, 242, 0.27);
}

.btn-outline {
  color: #0d3f76;
  background: rgba(255,255,255,0.72);
  border: 1.5px solid #0d3f76;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.center-row,
.button-center {
  justify-content: center;
}

.button-center {
  display: flex;
  margin-top: 42px;
}

.section-head {
  max-width: 620px;
  margin-bottom: 42px;
}

.section-head.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-head p:not(.eyebrow) {
  margin-top: 10px;
  color: var(--color-text);
  font-size: 18px;
}

.text-link {
  color: #0a3c84;
  font-weight: 700;
}


.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

section.woo-hero {
    padding: 88px 0 120px;
    overflow: hidden;
    background: linear-gradient(180deg, #f9fcff 0%, #ffffff 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
    align-items: center;
    gap: 88px;
}
.hero-stats {
    position: relative;
    min-height: 420px;
}
.split-grid{
  display: grid;
    grid-template-columns: repeat(3, 1fr);  align-items: center;
  gap: 20px;
}
.tech-section .split-grid{
      display: grid;
      grid-template-columns: repeat(2, 1fr);
          align-items: center;
    gap: 76px;
}
.area-grid {
    grid-template-columns: repeat(3, 1fr);
}
.area-card {
    overflow: hidden;
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
    padding-bottom: 25px;
}

.area-card h3,
.area-card p,
.area-card ul {
  padding-right: 20px;
  padding-left: 20px;
}



.area-art {
  height: 128px;
  background: linear-gradient(135deg, #f8fcff, #e4f5ff);
  border-bottom: 1px solid #d9eaf7;
}

.area-art.lines {
  background:
    linear-gradient(#b9dff6 0 8px, transparent 8px 22px),
    linear-gradient(135deg, #f8fcff, #e4f5ff);
  background-size: 90px 22px, auto;
  background-position: 30px 42px, 0;
  background-repeat: no-repeat;
}

.area-card h3 {
  padding-top: 22px;
}

.note-stack {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}
.shape {
    position: absolute;
    border-radius: 36px 86px 56px 92px;
}
.faq-grid{
      display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 76px;
}
.shape-back {
    right: -6px;
    top: 112px;
    width: 300px;
    height: 290px;
    background: linear-gradient(135deg, rgba(93, 226, 235, 0.54), rgba(127, 224, 232, 0.3));
    transform: rotate(12deg);
    animation: aboutFloat 7s ease-in-out infinite;
}
.shape-front {
    right: 80px;
    top: 28px;
    width: 330px;
    height: 340px;
    background: linear-gradient(145deg, #dffaff 0%, #6fa9ff 52%, #1767f2 100%);
    transform: rotate(10deg);
    opacity: 0.93;
    animation: aboutFloat 6s ease-in-out 500ms infinite;
}



.cta-card {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding: 40px 28px;
  overflow: hidden;
  border-radius: 10px;
  background: rgba(255,255,255,0.58);
  text-align: center;
}

.cta-card::before,
.cta-card::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(194, 226, 255, 0.5);
}

.cta-card::before {
  top: -130px;
  left: -80px;
}

.cta-card::after {
  right: -80px;
  bottom: -150px;
}

.cta-card > * {
  position: relative;
  z-index: 1;
}
.cta-card h2.heading-md {
    width: 50%;
    margin: 0 auto;
}
.cta-card p:not(.eyebrow) {
  max-width: 620px;
  margin: 18px auto 0;
}
#related_services{
  --rs-primary:#0d6efd;
  --rs-primary-dark:#084fc7;
  --rs-light:#f4f9ff;
  --rs-border:#d7e9ff;
  --rs-text:#27495e;
  --rs-para:#5f6f89;
  --rs-white:#ffffff;

  font-family:'Inter',sans-serif;
  background:linear-gradient(to bottom,#f8fbff,#ffffff);
  position:relative;
  overflow:hidden;
}

/* TOP */

#related_services .rs-top{
  text-align:center;
  margin-bottom:60px;
}

#related_services .rs-top span{
  display:inline-block;
  padding:8px 18px;
  border-radius:50px;
  background:#e8f2ff;
  color:var(--rs-primary);
  font-size:14px;
  font-weight:700;
  margin-bottom:18px;
}

#related_services .rs-top h2{
  font-size:52px;
  font-weight:800;
  color:var(--rs-text);
  line-height:1.1;
  margin-bottom:18px;
}

#related_services .rs-top p{
  max-width:760px;
  margin:auto;
  color:var(--rs-para);
  font-size:18px;
  line-height:1.8;
}

/* GRID */

#related_services .rs-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

/* CARD */

#related_services .rs-card{
  position:relative;
  overflow:hidden;
  background:var(--rs-white);
  border:1px solid var(--rs-border);
  border-radius:15px;
  padding:38px 34px;
  transition:0.45s ease;
  min-height:340px;
  box-shadow:0 10px 40px rgba(15,23,42,0.04);
}

#related_services .rs-card::before{
  content:'';
  position:absolute;
  width:100%;
  height:0%;
  left:0;
  bottom:0;
  background:linear-gradient(135deg,#0d6efd,#4ea4ff);
  transition:0.45s ease;
  z-index:0;
}

#related_services .rs-card:hover::before{
  height:100%;
}

#related_services .rs-card:hover{
  transform:translateY(-10px);
  border-color:#0d6efd;
  box-shadow:0 25px 50px rgba(13,110,253,0.18);
}

/* CONTENT */

#related_services .rs-content{
  position:relative;
  z-index:2;
}

#related_services .rs-icon{
  width:60px;
  height:60px;
  border-radius:22px;
  background:#eaf3ff;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:10px;
  transition:0.4s ease;
}

#related_services .rs-icon i{
  font-size:22px;
  color:var(--rs-primary);
  transition:0.4s ease;
}

#related_services .rs-card:hover .rs-icon{
  background:rgba(255,255,255,0.15);
  transform:rotate(-6deg) scale(1.08);
}

#related_services .rs-card:hover .rs-icon i{
  color:#fff;
}

#related_services .rs-card h3{
  font-size:24px;
  font-weight:800;
  color:var(--rs-text);
  margin-bottom:18px;
  transition:0.3s ease;
}

#related_services .rs-card p{
    font-size: 16px;
    line-height: 26px;
  color:var(--rs-para);
  transition:0.3s ease;
      font-family: 'Barlow Semi Condensed';
}

#related_services .rs-card:hover h3,
#related_services .rs-card:hover p{
  color:#fff;
}

/* BUTTON */

#related_services .rs-btn{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 0;
    text-decoration: none;
    color: var(--rs-primary);
    font-weight: 700;
    font-size: 16px;
    transition: 0.3s ease;
    font-family: 'Barlow Semi Condensed';
}

#related_services .rs-btn i{
  transition:0.3s ease;
}

#related_services .rs-card:hover .rs-btn{
  color:#fff;
}

#related_services .rs-card:hover .rs-btn i{
  transform:translateX(6px);
}

/* GLOW */

#related_services .rs-glow{
  position:absolute;
  width:180px;
  height:180px;
  background:rgba(255,255,255,0.12);
  border-radius:50%;
  top:-60px;
  right:-60px;
  filter:blur(10px);
  z-index:1;
}

/* RESPONSIVE */

@media(max-width:1100px){

  #related_services .rs-grid{
    grid-template-columns:repeat(2,1fr);
  }

}

@media(max-width:768px){
  #related_services .rs-icon {
    width: 40px;
    height: 40px;
  }
  #related_services .rs-icon i {
    font-size: 14px;
  }

  #related_services{
    padding:70px 0px;
  }

  #related_services .rs-top h2{
    font-size:38px;
  }

  #related_services .rs-grid{
    grid-template-columns:1fr;
  }

  #related_services .rs-card{
    min-height:auto;
    padding:30px;
  }

  #related_services .rs-card h3{
    font-size:22px;
  }

}


@media (max-width: 900px) {
  .container {
    width: min(100% - 34px, var(--container));
  }

  .section {
    padding: 82px 0;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--container));
  }
  .tech-section .split-grid,
  .note-stack{
            grid-template-columns: 1fr;
  }

  .section {
    padding: 66px 0;
  }

  .heading-xl {
    font-size: 32px;
  }

  .button-row,
  .btn {
    width: 100%;
  }
}

