:root {
  --navy: #0e2233;
  --teal: #0e7a8c;
  --teal-dark: #0a5c6a;
  --green: #3ec97c;
  --mint-bg: #eafcf3;
  --ink: #16233a;
  --muted: #6b7a8d;
  --line: #e7ecef;
  --error: #d64545;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  overflow-x: hidden;
  transition: filter .4s ease;
}

h1,
h2,
h3,
h4,
.brand-font {
  font-family: 'Sora', sans-serif;
}

a {
  text-decoration: none;
}

.btn-teal {
  background: var(--teal);
  color: #fff;
  border: none;
  padding: .7rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: .95rem;
  transition: all .25s ease;
  display:inline-flex;
  align-items: center;
  gap: .4rem;
  text-align: center;
}

.btn-teal:hover {
  background: var(--teal-dark);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-navy {
  border: 1.5px solid var(--line);
  color: var(--ink);
  padding: .7rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: .95rem;
  transition: all .25s ease;
  background: #fff;
}

.btn-outline-navy:hover {
  border-color: var(--teal);
  color: var(--teal);
}


/* ============ BLUR OVERLAY FOR DROPDOWN ============ */
#blurOverlay {
  position: fixed;
  inset: 0;
  backdrop-filter: blur(0px);
  background: rgba(10, 20, 35, 0);
  z-index: 1015;
  pointer-events: none;
  transition: backdrop-filter .35s ease, background .35s ease;
}

#blurOverlay.active {
  backdrop-filter: blur(6px);
  background: rgba(10, 20, 35, .25);
}

body.dropdown-blurred>*:not(.navbar):not(#blurOverlay) {
  filter: blur(0px);
  /* content itself unblurred; overlay handles the visual */
}

/* ============ NAVBAR ============ */
.navbar {
  padding: 1rem 0;
  background: #fff !important;
  position: sticky;
  top: 0;
  z-index: 1020;
  box-shadow: 0 2px 20px rgba(0, 0, 0, .04);
}

.navbar-brand {
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--ink) !important;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.navbar-brand .logo-dot {
  color: var(--teal);
}

.nav-link {
  font-weight: 500;
  color: var(--ink) !important;
  margin: 0 .6rem;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: width .3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.dropdown-menu {
  border: none;
  border-radius: 14px;
  box-shadow: 0 25px 60px rgba(10, 30, 50, .18);
  padding: .75rem;
  margin-top: .75rem !important;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  display: block;
  transition: opacity .3s ease, transform .3s ease, visibility .3s;
  z-index: 1030;
  min-width: 230px;
}

.nav-item.dropdown.show .dropdown-menu,
.dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  border-radius: 8px;
  padding: .6rem .8rem;
  font-weight: 500;
  font-size: .92rem;
  transition: background .2s ease, color .2s ease, padding-left .2s ease;
}

.dropdown-item:hover {
  background: var(--mint-bg);
  color: var(--teal-dark);
  padding-left: 1rem;
}

.nav-link.dropdown-toggle {
  padding-right: 1.5rem !important;
}

.nav-link.dropdown-toggle::after {
  background: none !important;
  bottom: auto;
  right: 0;
  left: auto;
  top: 37%;
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 8px;
  vertical-align: 2px;

  border: solid currentColor;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  border-top: 0;
  border-left: 0;
}

.badge-pill {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.nav-link.dropdown-toggle:hover {
  background: none;
}

/* ============ HERO ============ */
.hero {
  background: linear-gradient(180deg, #fff 0%, #f7fbfc 100%);
  padding: 5rem 0 3rem;
  position: relative;
}

.badge-pill {
  background: var(--mint-bg);
  color: var(--teal-dark);
  padding: .4rem 1.1rem;
  border-radius: 30px;
  font-size: .8rem;
  font-weight: 600;
  display: inline-block;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--ink);
}

.hero h1 .highlight {
  background: linear-gradient(90deg, #027095 0%, #14F67D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.btn-shadow {
  box-shadow: #a5e1eb 5px 5px 20px;
}

.hero p.lead-text {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 520px;
}

.avatars img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid #fff;
  object-fit: cover;
  margin-right: -12px;
}

.brain-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 420px;
  background-image: url(../images/mind.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 70% 100%;
}


.web-wrap{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 420px;
  background-image: url(../images/website-development-hero.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 60% 80%;
}

.app-wrap{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 420px;
  background-image: url(../images/mobile-app-dev.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 35% 90%;
}

.digital-wrap{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 420px;
  background-image: url(../images/digital-solutions.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 62% 62%;
}

.data-anlytics-wrap{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 420px;
  background-image: url(../images/data-anlytics.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 62% 62%;
}

.it-wrap{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 420px;
  background-image: url(../images/it-consultation-hero.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 62% 62%;
}

.brain-wrap svg {
  max-width: 100%;
}

.list {
  list-style: none;
  position: relative;
  margin-top: 1rem;
}
.list li{
  margin-bottom: 1rem;
  padding-left: 2.5rem;
}
.list li::before{
  content: url(../images/tick-teal-blue.svg);
  width: 30px;
  height: 30px;
  margin-right: 0.5rem;
  border: solid 1px #027095;
  border-radius: 50px;
  padding: 0.5rem;
  position: absolute;
  left: 0;
  display: flex;
  align-items: center;


}
.float-badge {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: .6rem 1rem;
  box-shadow: 0 15px 40px rgba(10, 40, 60, .12);
  font-weight: 600;
  font-size: .85rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  animation: floaty 4.5s ease-in-out infinite;
  border: solid thin #0e9954;
}

.float-badge i {
  color: var(--teal);
}

@keyframes floaty {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

.badge-ux {
  top: 0;
  left: 20%;
  animation-delay: .2s;
}

.badge-app {
  top: 38%;
  left: -4%;
  animation-delay: 1s;
}

.badge-web {
  top: 35%;
  right: -6%;
  animation-delay: .6s;
}

.badge-it {
  bottom: 2%;
  right: 21%;
  animation-delay: 1.4s;
}

/* orbit dashed circle */
.orbit {
  position: absolute;
  border: 1.8px dashed #cfe3e6;
  border-radius: 50%;
  width: 420px;
  height: 420px;
  animation: spin 40s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* ============ STATS BAR ============ */
.stats-bar {
  background: var(--navy);
  padding: 2.2rem 0;
}

.stat-item {
  color: #fff;
  text-align: center;
}

.stat-item h3 {
  font-weight: 800;
  font-size: 1.9rem;
  margin-bottom: .1rem;
  color: var(--green);
}

.stat-item p {
  font-size: .85rem;
  color: #b9c6d1;
  margin: 0;
}

.stat-item i {
  font-size: 1.6rem;
  color: var(--green);
  margin-bottom: .4rem;
  display: block;
}

/* ============ ABOUT ============ */
.about-section {
  padding: 5rem 0;
}

.section-eyebrow {
  color: var(--teal);
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  font-size: .85rem;
}

.about-section h2 {
  font-weight: 800;
  font-size: 2.2rem;
}

.video-box {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 340px;
  background: linear-gradient(135deg, #1a1a1a, #2b2b2b) center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.play-btn {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: #e0393f;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 0 0 14px rgba(255, 255, 255, .08);
  transition: transform .3s ease;
}

.video-box:hover .play-btn {
  transform: scale(1.1);
}

/* ============ SERVICES ============ */
.services-section {
  padding: 4rem 0;
  background: #fff;
}

.services-section h2 {
  font-weight: 800;
  font-size: 2.3rem;
}

.service-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
}

.service-info {
  padding: 2.5rem;
  flex: 1 1 380px;
}

.service-num {
  color: var(--teal);
  font-weight: 700;
  font-size: .9rem;
}

.service-info h3 {
  font-weight: 800;
  font-size: 1.5rem;
  margin-top: .3rem;
}

.service-tags .badge {
  background: var(--mint-bg);
  color: var(--teal-dark);
  font-weight: 600;
  font-size: .78rem;
  padding: .5rem .9rem;
  border-radius: 20px;
  margin-right: .4rem;
}

.service-img {
  flex: 1 1 380px;
  min-height: 320px;
  background-size: cover;
  background-position: center;
}

.service-dots {
  display: flex;
  gap: .5rem;
  justify-content: center;
  margin-top: 2rem;
}

.service-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--line);
  cursor: pointer;
  transition: .3s;
}

.service-dots span.active {
  background: var(--teal);
  width: 26px;
  border-radius: 6px;
}

.font-20 {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 800;
}

/* feature strip */
.feature-strip {
  background: #EDF7FA;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 2.2rem 0;
}

.feature-strip .feat {
  display: flex;
  align-items: center;
  gap: .8rem;
}

.feature-strip .feat i {
  font-size: 1.6rem;
  color: var(--teal);
}

.feature-strip .feat h6 {
  font-weight: 700;
  margin: 0;
  font-size: .95rem;
}

.feature-strip .feat p {
  margin: 0;
  font-size: .8rem;
  color: var(--muted);
}

/* ============ PROCESS (dark) ============ */
.process-section {
  background: url(../images/bg.webp) no-repeat;
  padding: 5rem 0;
  color: #fff;
  position: relative;
  overflow: hidden;
  background-size: cover;
}

.web-process-section {
  background: url(../images/web-developer.png) no-repeat !important;
}

.process-ribbon {
  position: absolute;
  top: 0;
  left: 6%;
  background: #f4c542;
  color: #1b1b1b;
  font-weight: 700;
  padding: 1rem 1rem 1.6rem;
  font-size: .8rem;
  text-align: center;
  border-radius: 0 0 8px 8px;
}

.process-section h2 {
  font-weight: 800;
  font-size: 2.1rem;
}

.process-section p.sub {
  color: #a9b8c6;
  max-width: 480px;
}

.step-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  padding: 1.6rem 1.2rem;
  text-align: center;
  height: 100%;
  transition: transform .3s ease, background .3s ease;
}

.step-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, .08);
}

.step-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto .9rem;
  font-size: 1.3rem;
  color: #fff;
}

.step-card h6 {
  font-weight: 700;
  color: #fff;
  font-size: .75rem;
  letter-spacing: .4px;
  margin-bottom: .2rem;
}

.step-card p {
  font-size: .85rem;
  color: #c3cedb;
  margin: 0;
}

/* ============ WHY US ============ */
.why-section {
  padding: 5rem 0;
}

.why-section h2 {
  font-weight: 800;
  font-size: 2.2rem;
}

.why-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.why-item .ic {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 50%;
  background: var(--mint-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
}

.why-item .ic-b {
  width: 35px;
  height: 35px;
  min-width: 35px;
  border-radius: 50%;
  background: #027095;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.why-item h6 {
  font-weight: 700;
  margin-bottom: .2rem;
  font-size: 1rem;
}

.why-item p {
  font-size: .85rem;
  color: var(--muted);
  margin: 0;
}

/* ============ TESTIMONIAL ============ */
.testimonial-section {
  background: linear-gradient(90deg, #d3f0fa 0%, rgba(201, 239, 223, 0.72) 46.87%, rgba(200, 240, 220, 0.66) 55.9%, rgba(19, 243, 125, 0.4) 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem;
  max-width: 760px;
  margin: 2.5rem auto 0;
  box-shadow: 0 30px 60px rgba(10, 60, 60, .08);
  position: relative;
}

.testimonial-card .quote-icon {
  font-size: 2.5rem;
  color: var(--teal);
  opacity: .25;
}

.testimonial-card p.quote {
  font-size: 1.05rem;
  color: var(--ink);
  margin: 1rem 0 1.5rem;
}

.testimonial-card img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.testi-nav {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  transition: .3s;
}

.testi-nav:hover {
  background: var(--teal);
  color: #fff;
}

/* ============ ARTICLES ============ */
.articles-section {
  padding: 5rem 0;
}

.articles-section h2 {
  font-weight: 800;
  font-size: 2.2rem;
}

.article-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .3s ease, box-shadow .3s ease;
  height: 100%;
}

.article-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(10, 30, 50, .1);
}

.article-img {
  height: 190px;
  background-size: cover;
  background-position: center;
}

.article-card .body {
  padding: 1.4rem;
}

.article-card h5 {
  font-weight: 700;
  font-size: 1.05rem;
}

.article-card p {
  font-size: .85rem;
  color: var(--muted);
}

.read-more {
  font-weight: 600;
  color: var(--teal);
  font-size: .85rem;
}

/* ============ FOOTER ============ */
footer {
  background: #f6faf9;
  padding: 4rem 0 1.5rem;
  border-top: 1px solid var(--line);
}

footer h6 {
  font-weight: 700;
  margin-bottom: 1rem;
}

footer a {
  color: var(--muted);
  display: block;
  margin-bottom: .5rem;
  font-size: .9rem;
}

footer a:hover {
  color: var(--teal);
}

.footer-brand {
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--ink);
}

.social-ic {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: .5rem;
  color: var(--ink);
  transition: .3s;
}

.social-ic:hover {
  background: var(--teal);
  color: #fff;
}

/* Reveal helper (custom, complements AOS) */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all .8s cubic-bezier(.25, .8, .25, 1);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media(max-width:991px) {
  .mob-hide {
    display: none;
  }
  .hero {
    padding-top: 2rem;
  }
  .hero h1 {
    font-size: 2.1rem;
  }

  .brain-wrap {
    min-height: 300px;
    margin-top: 2rem;
  }

  .float-badge {
    position: relative;
    display: inline-flex;
    margin: .3rem;
    animation: none;
  }

  .orbit {
    display: none;
  }

  .service-info,
  .service-img {
    flex: 1 1 100%;
  }

  .dropdown-menu {
    display: none;
  }

  .badge-ux {
    top: -108px;
    left: 40%;
  }
}