* {
  box-sizing: border-box;
  overflow: hidden;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "DM Sans", sans-serif;
  color: #172033;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
.navbar-brand,
.footer-brand {
  font-family: "Space Grotesk", sans-serif;
}
a {
  text-decoration: none;
}

/* =========================================================
   NAVBAR
========================================================= */

.main-nav {
  height: 78px;
  z-index: 1000;
  transition: all 0.35s ease;
}

/* Navbar shadow after scroll */
.main-nav.scrolled {
  box-shadow: 0 8px 30px rgba(16, 24, 40, 0.1) !important;
}

/* =========================================================
   LOGO
========================================================= */

.navbar-brand {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
}

.navbar-logo {
  width: 200px;
  height: auto;
  max-height: 120px;
  object-fit: contain;
  display: block;
  transition: all 0.3s ease;
}

/* Logo hover effect */
.navbar-brand:hover .navbar-logo {
  transform: scale(1.03);
}

/* =========================================================
   NAVIGATION LINKS
========================================================= */

.navbar-nav {
  align-items: center;
}

/* ===============================
   NAV LINKS
================================ */

.nav-link {
  position: relative;
  font-size: 15px;
  font-weight: 600;
  color: #526071 !important;
  padding: 0.7rem 1rem !important;
  transition: all 0.3s ease;
}

/* Hover */

.nav-link:hover {
  color: #fc6601 !important;
}

/* Active */

.nav-link.active {
  color: #fc6601 !important;
  font-weight: 700;
}

/* Active underline */

.nav-link::after {
  content: "";

  position: absolute;

  left: 50%;
  bottom: 3px;

  width: 0;
  height: 3px;

  border-radius: 10px;

  background: linear-gradient(90deg, #fc6601, #0266bb);

  transform: translateX(-50%);

  transition: width 0.3s ease;
}

/* Hover + Active */

.nav-link:hover::after,
.nav-link.active::after {
  width: 55%;
}

@media (max-width: 991px) {
  .nav-link {
    padding: 12px 15px !important;
    border-radius: 10px;
  }

  .nav-link::after {
    display: none;
  }

  .nav-link:hover {
    background: #f5f9ff;
    color: #fc6601 !important;
  }

  .nav-link.active {
    background: linear-gradient(
      90deg,
      rgba(244, 123, 32, 0.1),
      rgba(8, 117, 201, 0.08)
    );

    color: #fc6601 !important;
  }
}

/* =========================================================
   LET'S TALK BUTTON
========================================================= */

.navbar .btn-primary {
  border: none;

  background: linear-gradient(135deg, #0266bb, #fc6601);

  color: #ffffff;

  font-weight: 600;

  box-shadow: 0 8px 20px rgba(91, 92, 240, 0.25);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.navbar .btn-primary:hover {
  transform: translateY(-2px);

  box-shadow: 0 12px 28px rgba(91, 92, 240, 0.35);

  color: #ffffff;
}

.navbar .btn-primary i {
  transition: transform 0.3s ease;
}

.navbar .btn-primary:hover i {
  transform: translateX(4px);
}

/* =========================================================
   MOBILE TOGGLER
========================================================= */

.navbar-toggler {
  width: 45px;
  height: 45px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;

  background: #f5f5ff;

  color: #5b5cf0;

  font-size: 20px;

  transition: all 0.3s ease;
}

.navbar-toggler:hover {
  background: #5b5cf0;
  color: #ffffff;
}

/* Remove Bootstrap focus outline */
.navbar-toggler:focus {
  box-shadow: none;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {
  .main-nav {
    height: auto;
    min-height: 72px;
  }

  .navbar-logo {
    width: 160px;
    max-height: 58px;
  }

  .navbar-collapse {
    margin-top: 12px;

    padding: 15px;

    background: #ffffff;

    border-radius: 18px;

    box-shadow: 0 15px 40px rgba(16, 24, 40, 0.1);
  }

  .navbar-nav {
    align-items: stretch;
    gap: 3px !important;
  }

  .nav-link {
    padding: 12px 15px !important;
    border-radius: 10px;
  }

  .nav-link:hover {
    background: #f5f5ff;
  }

  .nav-link::after {
    display: none;
  }

  .navbar .btn-primary {
    display: inline-block;
    margin-top: 8px;
    text-align: center;
  }
}

/* =========================================================
   MOBILE NAVBAR
========================================================= */

@media (max-width: 991.98px) {

    .main-nav .navbar-collapse {
        display: none !important;
        width: 100%;
        margin-top: 15px;
        padding: 15px;
        border-radius: 18px;
        background: #ffffff;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    }

    .main-nav .navbar-collapse.show {
        display: block !important;
    }

    .main-nav .navbar-nav {
        align-items: stretch !important;
        gap: 5px !important;
    }

    .main-nav .nav-item {
        width: 100%;
    }

    .main-nav .nav-link {
        display: block;
        width: 100%;
        padding: 12px 15px !important;
        border-radius: 10px;
    }

    .main-nav .nav-link:hover,
    .main-nav .nav-link.active {
        background: linear-gradient(
            90deg,
            rgba(8, 117, 201, 0.08),
            rgba(244, 123, 32, 0.08)
        );
    }

    .main-nav .navbar-toggler {
        display: block;
        font-size: 24px;
        color: #0875c9;
        cursor: pointer;
        padding: 8px 10px;
    }

    .main-nav .navbar-toggler:focus {
        outline: none;
        box-shadow: none;
    }

    .main-nav .navbar-toggler i {
        transition: transform 0.3s ease;
    }

    .main-nav .navbar-toggler.menu-open i {
        transform: rotate(90deg);
    }

    .main-nav .navbar-nav .btn {
        width: 100%;
        margin-top: 5px;
    }
}


/* Desktop */

@media (min-width: 992px) {

    .main-nav .navbar-collapse {
        display: flex !important;
    }

    .main-nav .navbar-toggler {
        display: none;
    }

}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {
  .main-nav {
    padding: 8px 0;
  }

  .navbar-logo {
    width: 145px;
    max-height: 52px;
  }

  .navbar-toggler {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .navbar-collapse {
    margin-top: 10px;
    padding: 12px;
    border-radius: 15px;
  }

  .nav-link {
    font-size: 14px;
    padding: 11px 13px !important;
  }
}
.btn-primary {
  background: linear-gradient(135deg, #0266bb, #fc6601);
  border: 0;
  box-shadow: 0 12px 25px #6658e333;
}

/* =========================================================
   HERO SECTION
========================================================= */

.hero-home {
  position: relative;
  min-height: 100vh;

  background: #050505;

  color: #ffffff;

  isolation: isolate;
}

/* =========================================================
   BACKGROUND IMAGE
========================================================= */

.hero-bg {
  position: absolute;

  inset: 0;

  z-index: -3;

  background: url(../img/hero-video.png);

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  transform: scale(1.03);

  animation: heroZoom 12s ease-in-out infinite alternate;
}

/* =========================================================
   BLACK SCREEN / DARK OVERLAY
========================================================= */

.hero-overlay {
  position: absolute;

  inset: 0;

  z-index: -2;

  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.97) 0%,
    rgba(0, 0, 0, 0.9) 45%,
    rgba(0, 0, 0, 0.78) 100%
  );

  pointer-events: none;
}

/* Additional black screen */

.hero-home::before {
  content: "";

  position: absolute;

  inset: 0;

  z-index: -1;

  background:
    radial-gradient(circle at 75% 50%, rgba(8, 117, 201, 0.2), transparent 32%),
    radial-gradient(
      circle at 85% 20%,
      rgba(244, 123, 32, 0.16),
      transparent 28%
    );

  pointer-events: none;
}

/* =========================================================
   HERO GRID
========================================================= */

.hero-grid {
  position: absolute;

  inset: 0;

  z-index: -1;

  opacity: 0.12;

  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);

  background-size: 60px 60px;

  mask-image: linear-gradient(to bottom, black, transparent);
}

/* =========================================================
   HERO CONTENT
========================================================= */

.hero-home h1 {
  max-width: 850px;

  font-size: clamp(2rem, 4vw, 4.6rem);

  line-height: 1.05;

  font-weight: 800;

  letter-spacing: -2px;

  color: #ffffff;
}

.hero-home .lead {
  max-width: 680px;

  margin-top: 25px;

  color: rgba(255, 255, 255, 0.72);

  font-size: 1.1rem;

  line-height: 1.8;
}

/* =========================================================
   EYEBROW
========================================================= */

.hero-home .eyebrow {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  padding: 8px 15px;

  margin-bottom: 22px;

  border: 1px solid rgba(255, 255, 255, 0.15);

  border-radius: 50px;

  background: rgba(255, 255, 255, 0.06);

  backdrop-filter: blur(10px);

  color: #ffffff;

  font-size: 13px;

  font-weight: 600;
}

.hero-home .eyebrow i {
  color: #fc6601;
}

/* =========================================================
   GRADIENT TEXT
========================================================= */

.hero-home .gradient-text {
  background: linear-gradient(90deg, #0266bb, #fc6601);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  background-clip: text;
}

/* =========================================================
   BUTTONS
========================================================= */

.hero-home .btn-primary {
  border: none;

  background: linear-gradient(135deg, #0266bb, #fc6601);

  box-shadow: 0 12px 30px rgba(8, 117, 201, 0.25);

  transition: all 0.3s ease;
}

.hero-home .btn-primary:hover {
  transform: translateY(-3px);

  box-shadow: 0 18px 40px rgba(8, 117, 201, 0.35);
}

.hero-home .btn-outline-light {
  border-color: rgba(255, 255, 255, 0.35);

  color: #ffffff;

  background: rgba(255, 255, 255, 0.03);

  backdrop-filter: blur(8px);

  transition: all 0.3s ease;
}

.hero-home .btn-outline-light:hover {
  background: #ffffff;

  border-color: #ffffff;

  color: #111111;

  transform: translateY(-3px);
}

/* =========================================================
   TRUST ITEMS
========================================================= */

.hero-trust {
  display: flex;

  flex-wrap: wrap;

  gap: 22px;
}

.hero-trust span {
  display: flex;

  align-items: center;

  gap: 7px;

  color: rgba(255, 255, 255, 0.68);

  font-size: 13px;

  font-weight: 500;
}

.hero-trust i {
  color: #fc6601;
}

/* =========================================================
   HERO VISUAL
========================================================= */

.hero-visual {
  position: relative;

  min-height: 500px;

  display: flex;

  align-items: center;

  justify-content: center;
}

/* =========================================================
   ORBS
========================================================= */

.orb {
  position: absolute;

  border-radius: 50%;

  filter: blur(2px);

  animation: floatOrb 5s ease-in-out infinite alternate;
}

.orb-1 {
  width: 280px;
  height: 280px;

  background: rgba(8, 117, 201, 0.18);

  top: 40px;
  right: 10px;

  filter: blur(60px);
}

.orb-2 {
  width: 220px;
  height: 220px;

  background: rgba(244, 123, 32, 0.16);

  bottom: 20px;
  left: 20px;

  filter: blur(60px);

  animation-delay: 1s;
}

/* =========================================================
   CODE CARD
========================================================= */

.code-card {
  position: relative;

  width: 100%;

  max-width: 450px;

  padding: 25px;

  border: 1px solid rgba(255, 255, 255, 0.12);

  border-radius: 22px;

  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.03)
  );

  backdrop-filter: blur(18px);

  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);

  z-index: 2;

  transform: perspective(1000px) rotateY(-5deg);

  transition: transform 0.5s ease;
}

.code-card:hover {
  transform: perspective(1000px) rotateY(0deg) translateY(-8px);
}

/* Window dots */

.dots {
  display: flex;

  gap: 7px;

  margin-bottom: 20px;
}

.dots i {
  width: 9px;
  height: 9px;

  display: block;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.45);
}

.code-card pre {
  margin: 0;

  color: rgba(255, 255, 255, 0.75);

  font-family: "Courier New", monospace;

  font-size: 14px;

  line-height: 2;

  white-space: pre-wrap;
}

.code-card pre span {
  color: #0266bb;
}

.code-card pre b {
  color: #fc6601;
}

.code-card pre em {
  color: #ffffff;

  font-style: normal;
}

.code-card pre strong {
  color: #7ed6ff;
}

/* =========================================================
   FLOATING CARDS
========================================================= */

.floating-card {
  position: absolute;

  display: flex;

  align-items: center;

  gap: 12px;

  padding: 13px 18px;

  border: 1px solid rgba(255, 255, 255, 0.14);

  border-radius: 15px;

  background: rgba(0, 0, 0, 0.55);

  backdrop-filter: blur(15px);

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);

  z-index: 3;

  animation: floatingCard 4s ease-in-out infinite;
}

.floating-card i {
  width: 40px;
  height: 40px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 12px;

  background: linear-gradient(135deg, #0266bb, #fc6601);

  color: #ffffff;
}

.floating-card small {
  display: block;

  color: rgba(255, 255, 255, 0.5);

  font-size: 11px;
}

.floating-card b {
  display: block;

  color: #ffffff;

  font-size: 14px;
}

.fc-1 {
  top: 80px;

  right: -15px;
}

.fc-2 {
  bottom: 80px;

  left: -20px;

  animation-delay: 1.5s;
}

/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes heroZoom {
  from {
    transform: scale(1.03);
  }

  to {
    transform: scale(1.08);
  }
}

@keyframes floatOrb {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-25px);
  }
}

@keyframes floatingCard {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {
  .hero-home {
    min-height: auto;
  }

  .hero-home .row {
    min-height: auto !important;
  }

  .hero-home h1 {
    font-size: clamp(2.5rem, 7vw, 4rem);
  }

  .hero-visual {
    min-height: 450px;

    margin-top: 30px;
  }
}

@media (max-width: 575px) {
  .hero-home h1 {
    font-size: 2.5rem;

    letter-spacing: -1px;
  }

  .hero-home .lead {
    font-size: 1rem;
  }

  .hero-trust {
    flex-direction: column;

    gap: 10px;
  }

  .hero-visual {
    min-height: 400px;
  }

  .code-card {
    padding: 18px;

    max-width: 95%;
  }

  .code-card pre {
    font-size: 11px;
  }

  .fc-1 {
    right: -5px;
    top: 45px;
  }

  .fc-2 {
    left: -5px;
    bottom: 45px;
  }
}

.section-pad {
  padding: 100px 0;
}
.bg-soft {
  background: #f7f8fc;
}
.section-heading {
  max-width: 720px;
  margin: auto;
}
.section-heading h2,
.section-pad h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: -0.05em;
  background: linear-gradient(90deg, #0875c9, #f47b20);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
.section-heading p {
  color: #fdfeff;
}

.section-pad .eyebrow {
  display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    margin-bottom: 22px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
}

/* =========================================================
   DARK SERVICE CARDS
========================================================= */

.service-card {
  position: relative;

  padding: 32px;

  min-height: 330px;

  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.1);

  border-radius: 24px;

  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.275),
    rgba(255, 255, 255, 0.25)
  );

  backdrop-filter: blur(15px);

  -webkit-backdrop-filter: blur(15px);

  transition:
    transform 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

/* Animated background glow */

.service-card::before {
  content: "";

  position: absolute;

  width: 180px;
  height: 180px;

  top: -100px;
  right: -100px;

  border-radius: 50%;

  background: rgba(8, 117, 201, 0.2);

  filter: blur(45px);

  transition: all 0.5s ease;

  pointer-events: none;
}

/* Bottom orange glow */

.service-card::after {
  content: "";

  position: absolute;

  width: 140px;
  height: 140px;

  bottom: -100px;
  left: -80px;

  border-radius: 50%;

  background: rgba(244, 123, 32, 0.14);

  filter: blur(45px);

  transition: all 0.5s ease;

  pointer-events: none;
}

/* =========================================================
   HOVER
========================================================= */

.service-card:hover {
  transform: translateY(-12px);

  border-color: rgba(244, 123, 32, 0.4);

  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.4),
    0 0 35px rgba(8, 117, 201, 0.08);
}

.service-card:hover::before {
  transform: scale(1.8);

  background: rgba(8, 117, 201, 0.28);
}

.service-card:hover::after {
  transform: scale(1.8);

  background: rgba(244, 123, 32, 0.22);
}

/* =========================================================
   SERVICE NUMBER
========================================================= */

.service-number {
  position: absolute;

  top: 25px;
  right: 28px;

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 1px;

  color: rgba(0, 0, 0, 0.55);

  transition: all 0.3s ease;
}

.service-card:hover .service-number {
  color: #fc6601;

  transform: translateY(-3px);
}

/* =========================================================
   ICON BOX
========================================================= */

.icon-box {
  position: relative;

  width: 64px;
  height: 64px;

  display: flex;

  align-items: center;
  justify-content: center;

  margin-bottom: 25px;

  border-radius: 18px;

  background: linear-gradient(
    135deg,
    rgba(8, 117, 201, 0.48),
    rgba(244, 123, 32, 0.44)
  );

  border: 1px solid rgba(255, 255, 255, 0.12);

  color: #0c69b2;

  font-size: 24px;

  overflow: hidden;

  transition:
    transform 0.4s ease,
    background 0.4s ease,
    box-shadow 0.4s ease;
}

/* Icon shine */

.icon-box::before {
  content: "";

  position: absolute;

  width: 70px;
  height: 160px;

  top: -60px;
  left: -100px;

  background: rgba(255, 255, 255, 0.2);

  transform: rotate(35deg);

  transition: left 0.5s ease;
}

.service-card:hover .icon-box::before {
  left: 100px;
}

/* Icon hover */

.service-card:hover .icon-box {
  transform: translateY(-5px) rotate(-5deg) scale(1.08);

  background: linear-gradient(135deg, #5fade82f, #f5c09758);

  border-color: transparent;

  box-shadow: 0 15px 35px rgba(8, 117, 201, 0.566);
}

/* =========================================================
   ANIMATED FONT AWESOME ICON
========================================================= */

.icon-box i {
  position: relative;

  z-index: 2;

  transition: transform 0.4s ease;
}

.service-card:hover .icon-box i {
  animation: serviceIconBounce 0.7s ease;
}

@keyframes serviceIconBounce {
  0% {
    transform: scale(1) rotate(0deg);
  }

  35% {
    transform: scale(1.3) rotate(-8deg);
  }

  65% {
    transform: scale(0.9) rotate(5deg);
  }

  100% {
    transform: scale(1) rotate(0deg);
  }
}

/* =========================================================
   CARD TITLE
========================================================= */

.service-card h4 {
  position: relative;

  z-index: 2;

  margin-bottom: 14px;

  color: #000000;

  font-size: 20px;

  font-weight: 700;

  line-height: 1.35;

  transition: color 0.3s ease;
}

.service-card:hover h4 {
  color: #000000;
}

/* =========================================================
   CARD DESCRIPTION
========================================================= */

.service-card p {
  position: relative;

  z-index: 2;

  margin-bottom: 22px;

  color: rgb(86, 32, 5);

  font-size: 14px;

  line-height: 1.8;
}

/* =========================================================
   LEARN MORE
========================================================= */

.service-card a,
.service-link {
  position: relative;

  z-index: 2;

  display: inline-flex;

  align-items: center;

  gap: 9px;

  color: #0c69b2;

  text-decoration: none;

  font-size: 14px;

  font-weight: 700;

  transition:
    color 0.3s ease,
    gap 0.3s ease;
}

.service-card a i {
  color: #fc6601;

  transition: transform 0.3s ease;
}

.service-card a:hover {
  color: #fc6601;

  gap: 13px;
}

.service-card a:hover i {
  transform: translateX(5px);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 767px) {
  .service-card {
    padding: 28px;

    min-height: 300px;

    border-radius: 20px;
  }

  .icon-box {
    width: 58px;
    height: 58px;

    font-size: 21px;
  }

  .service-card h4 {
    font-size: 18px;
  }
}

/* about */
.about-visual {
  height: 420px;
  border-radius: 35px;
  background: url(../img/about.jpg);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.about-visual:before,
.about-visual:after {
  content: "";
  position: absolute;
  border: 1px solid #ffffff20;
  border-radius: 50%;
}
.about-visual:before {
  width: 420px;
  height: 420px;
}
.about-visual:after {
  width: 260px;
  height: 260px;
}
.shape-card {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
}
.shape-card i {
  font-size: 5rem;
  display: block;
  margin-bottom: 18px;
  color: #b5a8ff;
}
.mini-stat {
  position: absolute;
  bottom: 25px;
  right: 25px;
  background: #fff;
  padding: 16px 20px;
  border-radius: 15px;
}
.mini-stat b {
  font-size: 1.5rem;
  display: block;
}
.mini-stat small {
  color: #697586;
}
.check-list {
  display: grid;
  gap: 16px;
  margin: 25px 0;
}
.check-list > div {
  display: flex;
  gap: 14px;
}
.check-list i {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eeedff;
  color: #5b5cf0;
}
.check-list b,
.check-list small {
  display: block;
}
.check-list small {
  color: #737d8c;
  margin-top: 3px;
}



.inner-hero {
  padding: 170px 0 90px;
  background: radial-gradient(
            circle at 10% 20%,
            rgba(8, 117, 201, 0.12),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(244, 123, 32, 0.12),
            transparent 30%
        ),
        #050505;;
}
.inner-hero h1 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  letter-spacing: -0.05em;
  background: linear-gradient(90deg, #0875c9, #f47b20);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.inner-hero p {
  max-width: 650px;
  margin: auto;
  color: #fff;
  font-size: 1.1rem;
}

.inner-hero .eyebrow{
  display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    margin-bottom: 22px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
}


.service-detail {
  display: flex;
  gap: 25px;
  padding: 35px;
  border: 1px solid #e7e9f0;
  border-radius: 25px;
  transition: 0.4s;
  background: #fff;
}
.service-detail:hover {
  transform: translateY(-7px);
  box-shadow: 0 25px 60px #17203312;
}
.service-detail .icon-box {
  flex: none;
}
.service-no {
  font-size: 0.75rem;
  color: #8a92a0;
  font-weight: 800;
  letter-spacing: 0.1em;
}
.service-detail h3 {
  margin: 7px 0 10px;
}
.service-detail p {
  color: #737d8c;
  line-height: 1.7;
}
.cta-section {
  padding: 0 0 100px;
}
.cta-box {
  border-radius: 30px;
  padding: 100px;
  background: linear-gradient(135deg, #0266bb, #fc6601);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.cta-box h2 {
  font-size: 2.5rem;
  margin-bottom: 8px;
}
.cta-box p {
  color: #eee;
  max-width: 600px;
  margin: 0;
}
.cta-box .eyebrow {
  color: #fff;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.project {
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e8eaf0;
  transition: 0.4s;
  grid-column: span 4;
}
.project:nth-child(2),
.project:nth-child(5) {
  grid-column: span 8;
}
.project:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px #17203314;
}
.project-art {
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 4rem;
  background: linear-gradient(135deg, #e9e9ff, #f7eaff);
  color: #625be7;
}
.project:nth-child(2) .project-art {
  background: linear-gradient(135deg, #def6f1, #e8f1ff);
  color: #2e9b91;
}
.project:nth-child(3) .project-art {
  background: linear-gradient(135deg, #fff0dd, #ffe4ef);
  color: #ed7c65;
}
.project:nth-child(4) .project-art {
  background: linear-gradient(135deg, #e8f0ff, #efe6ff);
  color: #5577d9;
}
.project:nth-child(5) .project-art {
  background: linear-gradient(135deg, #e7f8e8, #e4f3ff);
  color: #49a76a;
}
.project:nth-child(6) .project-art {
  background: linear-gradient(135deg, #fff0f0, #fff5d8);
  color: #df7a67;
}
.project-art span {
  position: absolute;
  left: 18px;
  top: 18px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 7px 10px;
  border-radius: 20px;
  background: #ffffffb8;
  color: #4e5665;
}
.project small {
  color: #6658df;
  font-weight: 700;
}
.project p {
  color: #737d8c;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stats-grid > div {
  padding: 30px;
  border: 1px solid #e8eaf0;
  border-radius: 20px;
  text-align: center;
}
.stats-grid b {
  display: block;
  font-family: "Space Grotesk";
  font-size: 2.7rem;
}
.stats-grid span {
  color: #778191;
}
.contact-info {
  display: grid;
  gap: 15px;
  margin-top: 30px;
}
.contact-info > a,
.contact-info > div {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  color: #253047;
}
.contact-info > * > i {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #eeeeff;
  color: #5b5cf0;
  flex: none;
}
.contact-info small {
  display: block;
  color: #7b8492;
  margin-bottom: 3px;
}
.contact-form {
  padding: 35px;
  border: 1px solid #e5e8ef;
  border-radius: 25px;
  box-shadow: 0 20px 60px #1720330b;
}
.contact-form label {
  display: block;
  font-weight: 700;
  margin-bottom: 7px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #dfe3ea;
  border-radius: 13px;
  padding: 13px 15px;
  outline: none;
  font: inherit;
  background: #fff;
  transition: 0.2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #6a61ed;
  box-shadow: 0 0 0 4px #6a61ed12;
}
.form-msg {
  margin-left: 12px;
  color: #4b9b67;
  font-weight: 600;
}
.map-placeholder {
  height: 350px;
  background: linear-gradient(135deg, #eef0f8, #e2e6f0);
  display: grid;
  place-items: center;
  text-align: center;
}
.map-placeholder i {
  font-size: 3rem;
  color: #5b5cf0;
}
.map-placeholder p {
  color: #010c1e;
}
.site-footer {
  background: #eeeeec9e;
  color: rgb(18, 0, 0);
}
.footer-brand {
  color: #000000;
  font-weight: 700;
  font-size: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.site-footer h6 {
  font-weight: 700;
  margin-bottom: 18px;
}
.site-footer a:not(.footer-brand) {
  display: block;
  color: #010b1d;
  margin: 10px 0;
}
.site-footer a:hover {
  color: #000000;
}
.site-footer p {
  color: #03122c;
  line-height: 1.7;
}
.social-links {
  display: flex;
  gap: 10px;
}
.social-links a {
  width: 40px;
  height: 40px;
  border: 1px solid #ffffff20 !important;
  border-radius: 12px;
  display: grid !important;
  place-items: center;
  margin: 0 !important;
}
.footer-bottom {
  border-top: 1px solid #ffffff12;
  color: #041638;
  font-size: 0.85rem;
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.delay-1 {
  transition-delay: 0.15s;
}
.delay-2 {
  transition-delay: 0.3s;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
@keyframes cardFloat {
  0%,
  100% {
    transform: rotate(-4deg) translateY(0);
  }
  50% {
    transform: rotate(-2deg) translateY(-12px);
  }
}
@media (max-width: 991px) {
  .hero h1 {
    font-size: 3.7rem;
  }
  .hero-visual {
    height: 420px;
  }
  .main-nav {
    height: 70px;
  }
  .portfolio-grid .project,
  .portfolio-grid .project:nth-child(2),
  .portfolio-grid .project:nth-child(5) {
    grid-column: span 6;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .section-pad {
    padding: 70px 0;
  }
  .hero h1 {
    font-size: 2.9rem;
  }
  .hero-visual {
    height: 350px;
  }
  .code-card {
    width: 330px;
  }
  .fc-1 {
    right: -10px;
  }
  .fc-2 {
    left: -10px;
  }
  .inner-hero {
    padding: 140px 0 70px;
  }
  .service-detail {
    display: block;
  }
  .portfolio-grid {
    display: block;
  }
  .project {
    margin-bottom: 20px;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cta-box {
    padding: 32px;
    display: block;
  }
  .cta-box .btn {
    margin-top: 20px;
  }
  .hero-trust {
    gap: 10px;
    flex-direction: column;
  }
}

/* =========================================================
   FEEDBACK SECTION
========================================================= */

.feedback-section {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(8, 117, 201, 0.12),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(244, 123, 32, 0.12),
            transparent 30%
        ),
        #050505;
}


/* Background Glow */

.feedback-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    animation: feedbackFloat 8s ease-in-out infinite alternate;
}

.feedback-glow-1 {
    width: 300px;
    height: 300px;
    top: -120px;
    left: -100px;
    background: rgba(8, 117, 201, 0.14);
}

.feedback-glow-2 {
    width: 280px;
    height: 280px;
    right: -100px;
    bottom: -100px;
    background: rgba(244, 123, 32, 0.13);
    animation-delay: 2s;
}

@keyframes feedbackFloat {
    from {
        transform: translateY(0) scale(1);
    }

    to {
        transform: translateY(30px) scale(1.15);
    }
}


/* Heading */

.feedback-heading {
    max-width: 760px;
    margin: 0 auto;
}

.feedback-heading .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0266bb;
}

.feedback-heading .eyebrow i {
    color: #fc6601;
}

.feedback-heading h2 {
    color: #fff;
    margin-top: 15px;
}

.feedback-heading p {
    color: rgb(255, 254, 254);
    line-height: 1.8;
}


/* =========================================================
   LEFT INFO CARD
========================================================= */

.feedback-info {
    position: relative;
    padding: 42px;
    border-radius: 28px;
    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            rgba(8, 117, 201, 0.16),
            rgba(255, 255, 255, 0.035)
        );

    border: 1px solid rgba(255, 255, 255, 0.10);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    transition: all 0.4s ease;
}

.feedback-info:hover {
    transform: translateY(-8px);
    border-color: rgba(244, 123, 32, 0.35);

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.35),
        0 0 35px rgba(8, 117, 201, 0.08);
}


/* Decorative circle */

.feedback-info::before {
    content: "";
    position: absolute;

    width: 220px;
    height: 220px;

    top: -120px;
    right: -100px;

    border-radius: 50%;

    background: rgba(244, 123, 32, 0.14);
    filter: blur(35px);

    transition: 0.5s ease;
}

.feedback-info:hover::before {
    transform: scale(1.4);
}


/* Main icon */

.feedback-icon {
    width: 70px;
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 20px;

    color: #fff;
    font-size: 27px;

    background: linear-gradient(
        135deg,
        #0266bb,
        #fc6601
    );

    box-shadow:
        0 15px 35px rgba(8, 117, 201, 0.25);

    margin-bottom: 25px;

    animation: feedbackIconPulse 3s ease-in-out infinite;
}

@keyframes feedbackIconPulse {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}


/* Small heading */

.feedback-small-title {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    margin-bottom: 13px;

    color: #fc6601;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.feedback-small-title i {
    font-size: 11px;
}


/* Info title */

.feedback-info h3 {
    position: relative;
    z-index: 2;

    color: #fff;

    font-size: 30px;
    line-height: 1.3;

    margin-bottom: 15px;
}

.feedback-info h3 span {
    background: linear-gradient(
        90deg,
        #0266bb,
        #fc6601
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feedback-info > p {
    position: relative;
    z-index: 2;

    color: rgba(255, 255, 255, 0.58);

    line-height: 1.8;
    margin-bottom: 28px;
}


/* Feedback points */

.feedback-points {
    position: relative;
    z-index: 2;
}

.feedback-point {
    display: flex;
    align-items: center;
    gap: 14px;

    padding: 13px 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.feedback-point:last-child {
    border-bottom: 0;
}

.point-icon {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    color: #fff;

    background: linear-gradient(
        135deg,
        rgba(8, 117, 201, 0.30),
        rgba(244, 123, 32, 0.25)
    );

    border: 1px solid rgba(255, 255, 255, 0.08);

    transition: 0.3s ease;
}

.feedback-point:hover .point-icon {
    transform: rotate(8deg) scale(1.08);

    background: linear-gradient(
        135deg,
        #0266bb,
        #fc6601
    );
}

.feedback-point strong {
    display: block;

    color: #fff;

    font-size: 14px;
    margin-bottom: 3px;
}

.feedback-point small {
    color: rgba(255, 255, 255, 0.48);

    font-size: 12px;
}


/* Quote decoration */

.feedback-decoration {
    position: absolute;

    right: 35px;
    bottom: 25px;

    font-size: 85px;

    color: rgba(255, 255, 255, 0.035);

    transform: rotate(-10deg);
}


/* =========================================================
   FORM CARD
========================================================= */

.feedback-form-card {
    position: relative;

    padding: 38px;

    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.075),
            rgba(255, 255, 255, 0.025)
        );

    border: 1px solid rgba(255, 255, 255, 0.10);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.30);
}


/* Form top */

.form-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 28px;
}

.form-label-small {
    display: flex;
    align-items: center;
    gap: 7px;

    color: #fc6601;

    font-size: 12px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 1px;

    margin-bottom: 8px;
}

.form-top h4 {
    color: #fff;

    font-size: 23px;
    margin: 0;
}

.form-top-icon {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 15px;

    color: #fff;

    background: linear-gradient(
        135deg,
        #0266bb,
        #fc6601
    );

    animation: sendIcon 2.5s ease-in-out infinite;
}

@keyframes sendIcon {

    0%,
    100% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(8deg);
    }
}


/* Form labels */

.feedback-form-card label {
    display: block;

    color: rgba(255, 255, 255, 0.72);

    font-size: 13px;
    font-weight: 600;

    margin-bottom: 8px;
}

.feedback-form-card label > i {
    color: #fc6601;
    margin-right: 5px;
}


/* Inputs */

.input-icon {
    position: relative;
}

.input-icon > i {
    position: absolute;

    left: 16px;
    top: 50%;

    transform: translateY(-50%);

    z-index: 2;

    color: #0266bb;

    transition: 0.3s ease;
}

.input-icon textarea + i {
    top: 22px;
}

.input-icon .form-control {
    padding-left: 45px;
}

.feedback-form-card .form-control {
    width: 100%;

    min-height: 52px;

    border-radius: 13px;

    border: 1px solid rgba(255, 255, 255, 0.10);

    background: rgba(255, 255, 255, 0.045);

    color: #fff;

    box-shadow: none;

    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.feedback-form-card textarea.form-control {
    padding-top: 15px;
}

.feedback-form-card .form-control::placeholder {
    color: rgba(255, 255, 255, 0.30);
}

.feedback-form-card .form-control:focus {
    background: rgba(255, 255, 255, 0.07);

    border-color: rgba(8, 117, 201, 0.75);

    box-shadow:
        0 0 0 3px rgba(8, 117, 201, 0.10);
}

.input-icon:focus-within > i {
    color: #fc6601;

    transform:
        translateY(-50%)
        scale(1.1);
}


/* Select */

.feedback-form-card select.form-control {
    appearance: auto;

    color: rgba(255, 255, 255, 0.75);
}

.feedback-form-card select.form-control option {
    color: #222;
    background: #fff;
}


/* =========================================================
   STAR RATING
========================================================= */

.rating-box {
    min-height: 52px;

    display: flex;
    align-items: center;

    gap: 4px;

    padding: 0 15px;

    border-radius: 13px;

    background: rgba(255, 255, 255, 0.045);

    border: 1px solid rgba(255, 255, 255, 0.10);
}

.rating-box input {
    display: none;
}

.rating-box label {
    margin: 0;

    cursor: pointer;

    color: rgba(255, 255, 255, 0.20);

    font-size: 18px;

    transition:
        transform 0.25s ease,
        color 0.25s ease;
}

.rating-box label:hover,
.rating-box label:hover ~ label,
.rating-box input:checked + label {
    color: #fc6601;
}

.rating-box label:hover {
    transform: scale(1.15);
}

.rating-text {
    margin-left: auto;

    color: rgba(255, 255, 255, 0.35);

    font-size: 11px;
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.feedback-submit {
    width: 100%;

    margin-top: 5px;

    padding: 15px 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border: 0;
    border-radius: 14px;

    color: #fff;

    font-size: 14px;
    font-weight: 700;

    background: linear-gradient(
        90deg,
        #0266bb,
        #fc6601
    );

    box-shadow:
        0 12px 30px rgba(8, 117, 201, 0.20);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.feedback-submit:hover {
    transform: translateY(-3px);

    box-shadow:
        0 18px 40px rgba(244, 123, 32, 0.22);
}

.feedback-submit span {
    display: flex;
    align-items: center;
    gap: 9px;
}

.submit-arrow {
    transition: transform 0.3s ease;
}

.feedback-submit:hover .submit-arrow {
    transform: translateX(6px);
}


/* =========================================================
   SUCCESS MESSAGE
========================================================= */

.feedback-success {
    display: none;

    text-align: center;

    padding: 40px 20px;
}

.feedback-success.show {
    display: block;

    animation: successAppear 0.5s ease;
}

@keyframes successAppear {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.success-icon {
    width: 75px;
    height: 75px;

    margin: 0 auto 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #fff;

    font-size: 28px;

    background: linear-gradient(
        135deg,
        #0266bb,
        #fc6601
    );

    box-shadow:
        0 15px 40px rgba(8, 117, 201, 0.25);
}

.feedback-success h4 {
    color: #fff;
    font-size: 24px;
}

.feedback-success p {
    color: rgba(255, 255, 255, 0.55);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .feedback-section {
        padding: 80px 0;
    }

    .feedback-info {
        padding: 32px;
    }

    .feedback-form-card {
        padding: 30px;
    }

}

@media (max-width: 575px) {

    .feedback-info {
        padding: 27px;
        border-radius: 22px;
    }

    .feedback-form-card {
        padding: 24px;
        border-radius: 22px;
    }

    .feedback-info h3 {
        font-size: 25px;
    }

    .form-top h4 {
        font-size: 20px;
    }

    .form-top-icon {
        width: 44px;
        height: 44px;
    }

    .rating-text {
        display: none;
    }

}

.drive{
  background: radial-gradient(
            circle at 10% 20%,
            rgba(8, 117, 201, 0.12),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(244, 123, 32, 0.12),
            transparent 30%
        ),
        #050505;
}

/* =========================================================
   MOBILE NAVIGATION - CSS ONLY
   ========================================================= */

.nav-toggle {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* Desktop */
@media (min-width: 992px) {

    .main-nav .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
    }

    .nav-toggle-label {
        display: none !important;
    }

}


/* Mobile */
@media (max-width: 991.98px) {

    .main-nav .container {
        position: relative;
        flex-wrap: wrap;
    }

    /* Hamburger */
    .nav-toggle-label {
        display: flex !important;
        align-items: center;
        justify-content: center;

        width: 46px;
        height: 46px;

        margin-left: auto;

        cursor: pointer;

        color: #0875c9;

        font-size: 24px;

        border-radius: 12px;

        transition:
            background 0.3s ease,
            color 0.3s ease,
            transform 0.3s ease;
    }

    .nav-toggle-label:hover {
        background: rgba(8, 117, 201, 0.08);
        color: #f47b20;
    }


    /* Menu CLOSED */
    .main-nav .navbar-collapse {
        display: none !important;

        width: 100%;

        flex-basis: 100%;

        margin-top: 15px;

        padding: 15px;

        background: #ffffff;

        border-radius: 18px;

        box-shadow:
            0 15px 40px rgba(0, 0, 0, 0.12);
    }


    /* Menu OPEN */
    .nav-toggle:checked ~ .navbar-collapse {
        display: block !important;

        animation: mobileMenuOpen 0.3s ease forwards;
    }


    /* Hamburger animation */
    .nav-toggle:checked + .nav-toggle-label {
        color: #f47b20;

        background: rgba(244, 123, 32, 0.08);
    }

    .nav-toggle:checked + .nav-toggle-label i {
        transform: rotate(90deg);
    }

    .nav-toggle-label i {
        transition: transform 0.3s ease;
    }


    /* Navigation */
    .main-nav .navbar-nav {

        width: 100%;

        align-items: stretch !important;

        gap: 5px !important;

    }


    .main-nav .nav-item {

        width: 100%;

    }


    .main-nav .nav-link {

        display: block;

        width: 100%;

        padding: 12px 15px !important;

        border-radius: 10px;

    }


    .main-nav .nav-link:hover {

        background:
            linear-gradient(
                90deg,
                rgba(8, 117, 201, 0.08),
                rgba(244, 123, 32, 0.08)
            );

    }


    .main-nav .nav-link.active {

        background:
            linear-gradient(
                90deg,
                rgba(8, 117, 201, 0.08),
                rgba(244, 123, 32, 0.08)
            );

        color: #f47b20 !important;

    }


    /* Let's Talk button */
    .main-nav .navbar-nav .btn {

        display: block;

        width: 100%;

        margin-top: 5px;

        text-align: center;

    }

}


/* Menu animation */
@keyframes mobileMenuOpen {

    from {

        opacity: 0;

        transform: translateY(-10px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}