@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --navy: #03112A;
  --navy-mid: #071D3E;
  --blue: #0057B8;
  --cyan: #00C6FF;
  --cyan-light: #7DE8FF;
  --white: #FFFFFF;
  --gray: #8A9BBC;
  --gray-light: #E4ECF7;
  --gold: #FFB830;
  --green: #00D68F;
  --card-bg: rgba(255, 255, 255, 0.04);
  --card-bd: rgba(0, 198, 255, 0.15);
  --fh: 'Poppins', sans-serif;
  --fb: 'Poppins', sans-serif;
  --glow: 0 0 40px rgba(0, 198, 255, 0.12);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  --r: 16px;
  --t: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--fb);
  background: var(--navy);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden
}

::-webkit-scrollbar {
  width: 5px
}

::-webkit-scrollbar-track {
  background: var(--navy)
}

::-webkit-scrollbar-thumb {
  background: var(--blue);
  border-radius: 3px
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--fh);
  line-height: 1.15;
  font-weight: 700
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem)
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem)
}

h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem)
}

p {
  color: var(--gray);
  line-height: 1.8
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--t)
}

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

.sec {
  padding: 100px 0
}

.sec-sm {
  padding: 60px 0
}

/* BADGE */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 198, 255, 0.1);
  border: 1px solid rgba(0, 198, 255, 0.3);
  color: var(--cyan);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px
}

.badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--cyan);
  border-radius: 50%
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--fh);
  font-weight: 600;
  font-size: .95rem;
  padding: 13px 30px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: var(--t)
}

.btn-p {
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: var(--white);
  box-shadow: 0 4px 24px rgba(0, 198, 255, .3)
}

.btn-p:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 198, 255, .45);
  color: var(--white)
}

.btn-o {
  background: transparent;
  color: var(--cyan);
  border: 1.5px solid rgba(0, 198, 255, .5)
}

.btn-o:hover {
  background: rgba(0, 198, 255, .1);
  border-color: var(--cyan);
  transform: translateY(-2px);
  color: var(--cyan)
}

.btn-w {
  background: var(--white);
  color: var(--navy);
  font-family: var(--fh);
  font-weight: 700
}

.btn-w:hover {
  background: var(--cyan-light);
  transform: translateY(-2px)
}

/* HEADER */
.hdr {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--t)
}

.hdr.scrolled {
  background: rgba(3, 17, 42, .96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 198, 255, .1);
  padding: 12px 0;
  box-shadow: 0 4px 32px rgba(0, 0, 0, .3)
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px
}

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

.logo-tx {
  display: flex;
  flex-direction: column
}

.logo-main {
  font-family: var(--fh);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
  letter-spacing: -.02em;
  line-height: 1
}

.logo-sub {
  font-size: .6rem;
  color: var(--cyan);
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500
}

.logo-icon svg {
  display: block
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none
}

.nav-links a {
  font-family: var(--fh);
  font-weight: 600;
  font-size: .88rem;
  color: rgba(255, 255, 255, .75);
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--t)
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--cyan);
  background: rgba(0, 198, 255, .08)
}

.nav-act {
  display: flex;
  align-items: center;
  gap: 14px
}

.hbg {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px
}

.hbg span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--t)
}

.hbg.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}

.hbg.open span:nth-child(2) {
  opacity: 0
}

.hbg.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}

/* SECTION LABELS */
.lbl {
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px
}

.lbl::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--cyan)
}

.sec-title {
  color: var(--white);
  margin-bottom: 16px
}

.sec-title span {
  color: var(--cyan)
}

.sec-desc {
  color: var(--gray);
  max-width: 600px;
  line-height: 1.8
}

/* CARDS */
.card {
  background: var(--card-bg);
  border: 1px solid var(--card-bd);
  border-radius: var(--r);
  padding: 32px;
  transition: var(--t);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0;
  transition: var(--t)
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 198, 255, .35);
  box-shadow: var(--glow)
}

.card:hover::before {
  opacity: 1
}

.ibox {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 198, 255, .2), rgba(0, 87, 184, .2));
  border: 1px solid rgba(0, 198, 255, .25);
  margin-bottom: 20px;
  font-size: 1.6rem
}

/* GRIDS */
.g2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px
}

.g3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.g4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px
}

/* DIVIDER */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 198, 255, .2), transparent);
  margin: 60px 0
}

/* GRADIENT TEXT */
.gt {
  background: linear-gradient(135deg, var(--cyan), var(--cyan-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

/* CTA BANNER */
.cta-box {
  background: linear-gradient(135deg, var(--blue), #003f8a);
  border-radius: 24px;
  padding: 64px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(0, 198, 255, .12)
}

.cta-box h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--white);
  max-width: 500px;
  position: relative
}

.cta-box h2 span {
  color: var(--cyan-light)
}

.cta-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
  position: relative
}

/* PAGE HERO */
.ph {
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 70% 60% at 60% 30%, rgba(0, 87, 184, .2) 0%, transparent 65%), var(--navy)
}

.ph-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0, 198, 255, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 198, 255, .03) 1px, transparent 1px);
  background-size: 60px 60px
}

.ph-inner {
  position: relative;
  z-index: 1;
  text-align: center
}

/* FOOTER */
.ftr {
  background: var(--navy-mid);
  border-top: 1px solid rgba(0, 198, 255, .1)
}

.ftr-top {
  padding: 70px 24px;
  max-width: 1200px;
  margin: 0 auto
}

.ftr-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 48px
}

.ftr-tagline {
  font-size: .9rem;
  color: var(--gray);
  line-height: 1.7;
  margin: 16px 0 20px
}

.ftr-ci {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.ftr-ci a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  color: var(--gray);
  transition: var(--t)
}

.ftr-ci a:hover {
  color: var(--cyan)
}

.ftr-ht {
  font-family: var(--fh);
  font-size: .85rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  letter-spacing: .05em;
  text-transform: uppercase
}

.ftr-ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.ftr-ul a {
  font-size: .875rem;
  color: var(--gray);
  transition: var(--t);
  display: flex;
  align-items: center;
  gap: 6px
}

.ftr-ul a::before {
  content: '›';
  color: var(--cyan);
  font-size: 1.1rem
}

.ftr-ul a:hover {
  color: var(--cyan);
  padding-left: 4px
}

.ftr-nt {
  font-size: .85rem;
  color: var(--gray);
  margin-bottom: 16px;
  line-height: 1.6
}

.ftr-ni {
  display: flex;
  gap: 8px;
  margin-bottom: 22px
}

.ftr-input {
  flex: 1;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(0, 198, 255, .2);
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--white);
  font-size: .85rem;
  outline: none;
  transition: var(--t)
}

.ftr-input::placeholder {
  color: var(--gray)
}

.ftr-input:focus {
  border-color: var(--cyan)
}

.ftr-nbtn {
  background: var(--cyan);
  color: var(--navy);
  font-weight: 700;
  font-size: .8rem;
  padding: 10px 16px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--t)
}

.ftr-nbtn:hover {
  background: var(--cyan-light)
}

.ftr-socials {
  display: flex;
  gap: 10px
}

.si {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  transition: var(--t)
}

.si:hover {
  background: var(--cyan);
  color: var(--navy);
  border-color: var(--cyan);
  transform: translateY(-2px)
}

.ftr-bot {
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding: 20px 24px
}

.ftr-bot-in {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px
}

.ftr-bot p {
  font-size: .82rem;
  color: var(--gray)
}

.ftr-blinks {
  display: flex;
  gap: 24px
}

.ftr-blinks a {
  font-size: .82rem;
  color: var(--gray)
}

.ftr-blinks a:hover {
  color: var(--cyan)
}

/* WA FLOAT */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
  z-index: 999;
  transition: var(--t)
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, .55)
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: .5;
    transform: scale(1)
  }

  50% {
    opacity: 1;
    transform: scale(1.05)
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-12px)
  }
}

.au {
  animation: fadeUp .7s ease both
}

.d1 {
  animation-delay: .1s;
  opacity: 0
}

.d2 {
  animation-delay: .2s;
  opacity: 0
}

.d3 {
  animation-delay: .3s;
  opacity: 0
}

.d4 {
  animation-delay: .4s;
  opacity: 0
}

/* RESPONSIVE */
@media(max-width:1024px) {
  .ftr-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px
  }

  .g4 {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:768px) {
  .nav-links {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(3, 17, 42, .98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--t);
    border-bottom: 1px solid rgba(0, 198, 255, .1)
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1
  }

  .hbg {
    display: flex
  }

  .nav-act .btn {
    display: none
  }

  .ftr-grid {
    grid-template-columns: 1fr;
    gap: 30px
  }

  .g2,
  .g3,
  .g4 {
    grid-template-columns: 1fr
  }

  .sec {
    padding: 70px 0
  }

  .cta-box {
    padding: 40px 28px
  }
}

@media(max-width:600px) {
  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  .sec {
    padding: 50px 0;
  }

  .sec-sm {
    padding: 40px 0;
  }

  /* Index hero stats single column */
  .h-stats {
    grid-template-columns: 1fr;
  }

  /* About page blocks */
  .mh {
    padding: 24px;
  }

  .leader {
    padding: 24px;
  }

  .mg4 {
    grid-template-columns: 1fr;
  }

  .phil-box {
    padding: 24px;
  }

  /* Contact page form card */
  .form-card {
    padding: 24px;
  }

  .faq-i {
    padding: 18px;
  }

  .ci-card {
    padding: 16px;
    flex-direction: column;
    text-align: center;
  }

  .soc-row {
    justify-content: center;
  }

  /* Services & Industries */
  .ov-g {
    grid-template-columns: 1fr;
  }

  .stats-b {
    grid-template-columns: 1fr;
  }

  .cta-box {
    display: none;
  }

  .cta-btns {
    display: none;
  }
}