:root {
  --bg: #ffffff;
  --fg: #0b1220;
  --muted: #5b6577;
  --border: #e6e8ee;
  --card: #ffffff;
  --secondary: #f5f7fb;
  --primary: #0f1b2d;
  --primary-fg: #ffffff;
  --accent: #22d3ee;
  --accent-fg: #04212a;
  --ring: #0f1b2d;
  --shadow: 0 20px 60px -20px rgba(15, 27, 45, .35);
  --hero-grad: linear-gradient(135deg, #0b1220 0%, #1e4780 60%, #1ea2b6 100%);
  --radius: 12px;
}

* {
  box-sizing: border-box
}

html,
body {
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--fg);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none
}

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

svg {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: -.15em
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px
}

.muted {
  color: var(--muted)
}

.small {
  font-size: 12px
}

.accent {
  color: var(--accent)
}

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 12px
}

.h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 600;
  letter-spacing: -.01em;
  margin: 0 0 8px
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border)
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration:none;
}

.brand-logo{
  display: flex;
  width: 25px;
  height: 25px;
}

.brand-text{
  display: flex;
  width: 75px;
  height: auto;
}

@media (max-width:768px){
    .brand-logo{
        width: 25px;
    }

    .brand-text{
        width: 75px;
        height: auto;
    }
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--primary);
  color: var(--primary-fg);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700
}

.brand-mark.sm {
  width: 28px;
  height: 28px;
  font-size: 13px
}

.brand-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 14px
}

.nav-links {
  display: none;
  gap: 32px
}

.nav-links a {
  font-size: 14px;
  color: var(--muted)
}

.nav-links a:hover {
  color: var(--fg)
}

@media(min-width:768px) {
  .nav-links {
    display: flex
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: 0;
  transition: opacity .2s, background .2s
}

.btn-sm {
  padding: 8px 16px
}

.btn-block {
  width: 100%;
  justify-content: center;
  padding: 14px 20px
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-fg)
}

.btn-primary:hover {
  opacity: .9
}

.btn-accent {
  background: var(--accent);
  color: var(--accent-fg)
}

.btn-accent:hover {
  opacity: .9
}

.btn-ghost {
  background: rgba(255, 255, 255, .05);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .2)
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .1)
}

/* Hero */
.hero {
  background: var(--hero-grad);
  color: #fff;
  overflow: hidden
}

.hero-grid {
  display: grid;
  gap: 48px;
  padding: 96px 24px;
  align-items: center
}

@media(min-width:1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    padding: 128px 24px
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .15);
  background: rgba(255, 255, 255, .05);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, .8)
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent)
}

.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -.02em;
  margin: 24px 0 0;
  color: #fff
}

.hero-lead {
  margin: 24px 0 0;
  max-width: 560px;
  color: rgba(255, 255, 255, .72);
  font-size: 17px
}

.hero-cta {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px
}

/* Carousel */
.carousel {
  position: relative
}

.car-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: var(--shadow)
}

.car-track::-webkit-scrollbar {
  display: none
}

.car-slide {
  flex: 0 0 100%;
  scroll-snap-align: center
}

.car-slide img {
  aspect-ratio: 4/3;
  width: 100%;
  object-fit: cover
}

.car-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .1);
  color: #fff;
  backdrop-filter: blur(6px);
  cursor: pointer;
  z-index: 2
}

.car-nav:hover {
  background: rgba(255, 255, 255, .2)
}

.car-prev {
  left: -12px
}

.car-next {
  right: -12px
}

.car-nav.light {
  background: var(--card);
  color: var(--fg);
  border-color: var(--border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .06)
}

.car-nav.light:hover {
  background: var(--secondary)
}

.car-dots {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 8px
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .3);
  border: 0;
  cursor: pointer;
  transition: all .2s
}

.dot:hover {
  background: rgba(255, 255, 255, .5)
}

.dot.active {
  width: 24px;
  background: var(--accent)
}

/* Sections */
.section {
  padding: 96px 0;
  border-bottom: 1px solid var(--border)
}

.section-alt {
  background: rgba(245, 247, 251, .5)
}

.section-head {
  max-width: 640px
}

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

/* About */
.about-grid {
  display: grid;
  gap: 48px
}

@media(min-width:1024px) {
  .about-grid {
    grid-template-columns: 4fr 8fr
  }
}

.about-body p {
  color: var(--muted);
  margin: 0 0 20px
}

.about-body strong {
  color: var(--fg);
  font-weight: 500
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 32px 0 0;
  padding-top: 32px;
  border-top: 1px solid var(--border)
}

.stats dt {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--fg)
}

.stats dd {
  margin: 4px 0 0;
  font-size: 14px;
  color: var(--muted)
}

/* Services */
.services-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden
}

@media(min-width:640px) {
  .services-grid {
    grid-template-columns: 1fr 1fr
  }
}

.service-card {
  background: var(--card);
  padding: 32px
}

.service-head {
  display: flex;
  align-items: center;
  gap: 12px
}

.icon-box {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(15, 27, 45, .05);
  color: var(--primary);
  box-shadow: inset 0 0 0 1px rgba(15, 27, 45, .1);
  font-size: 18px;
  flex-shrink: 0
}

.service-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  margin: 0;
  font-size: 18px;
  font-weight: 600
}

.service-card p {
  color: var(--muted);
  font-size: 14px;
  margin: 16px 0 0
}

/* Features */
.feature-grid {
  margin-top: 56px;
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr
}

@media(min-width:768px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

.feature-card {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: box-shadow .2s
}

.feature-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, .04)
}

.feature-icon {
  color: var(--accent);
  font-size: 24px
}

.feature-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  margin: 20px 0 12px;
  font-size: 18px;
  font-weight: 600
}

.feature-card p {
  color: var(--muted);
  font-size: 14px;
  margin: 0
}

/* Clients */
.clients-wrap {
  position: relative;
  margin-top: 56px
}

.clients-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 4px 0 16px
}

.clients-scroll::-webkit-scrollbar {
  display: none
}

.client-card {
  flex: 0 0 calc(33.333% - 12px);
  display: grid;
  place-items: center;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--card)
}

@media(min-width:640px) {
  .client-card {
    flex-basis: calc(25% - 12px)
  }
  
  .client-card img {
  max-height: 100px;
  max-width: 80%;
  object-fit: contain;
  opacity: .7;
  transition: opacity .2s
}
}

.client-card img {
  max-height: 100px;
  max-width: 80%;
  object-fit: contain;
  opacity: .7;
  transition: opacity .2s
}

.client-card img:hover {
  opacity: 1
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 48px
}

@media(min-width:1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr
  }
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
  display: grid;
  gap: 24px
}

.contact-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start
}

.contact-list .lbl {
  font-size: 14px;
  font-weight: 600;
  margin: 0
}

.contact-list .val {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  color: var(--muted)
}

a.val:hover {
  color: var(--fg)
}

.contact-form {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--card);
  display: grid;
  gap: 20px
}

.contact-form label {
  display: block;
  font-size: 14px;
  font-weight: 500
}

.contact-form input,
.contact-form textarea {
  margin-top: 8px;
  width: 100%;
  padding: 10px 12px;
  font: inherit;
  font-size: 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  outline: none;
  transition: border-color .2s, box-shadow .2s
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--ring);
  box-shadow: 0 0 0 3px rgba(15, 27, 45, .1)
}

.contact-form textarea {
  resize: vertical
}

.alert {
  padding: 12px 16px;
  border-radius: 8px;
  background: rgba(34, 211, 238, .15);
  color: #04212a;
  font-size: 14px
}

/* Footer */
.footer {
  padding: 40px 0;
  background: var(--bg)
}

.footer-left{
    display:flex;
    align-items:center;
    gap:12px;
}

.footer-logo{
    width:25px;
    height:auto;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 16px
}

@media(min-width:768px) {
  .footer-inner {
    flex-direction: row
  }
}