/* -------------------------
       Reset & base
       -------------------------*/
:root {
  --bg: #0f1724;
  /* deep navy */
  --card: #0b1220;
  --accent: #00d4ff;
  --accent-2: #7c4dff;
  --muted: #9aa6b2;
  --glass: rgba(255, 255, 255, 0.04);
  --glass-2: rgba(255, 255, 255, 0.02);
  --max-width: 1200px;
  --radius: 12px;
  --ff-sans: 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
}

* {
  box-sizing: border-box
}

html,
body {
  height: 100%
}

body {
  margin: 0;
  font-family: var(--ff-sans);
  background: radial-gradient(1200px 800px at 10% 10%, rgba(124, 77, 255, 0.08), transparent),
    radial-gradient(900px 600px at 90% 80%, rgba(0, 212, 255, 0.04), transparent),
    var(--bg);
  color: #e6eef6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.45;
  padding-bottom: 80px;
}

/* container */
.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 28px;
}

/* -------------------------
       Header / Navbar
       -------------------------*/
header {
  position: fixed;
  left: 0;
  right: 0;
  top: 16px;
  z-index: 60;
  backdrop-filter: blur(6px);
  padding: 8px 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  border-radius: 18px;
  margin: 0 18px;
  box-shadow: 0 6px 20px rgba(2, 6, 23, 0.6);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: var(--max-width);
  margin: 0 auto
}

.mobile-menu {
  display: none;
}

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

.logo {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 6px 18px rgba(124, 77, 255, 0.12);
  color: #071023
}

.brand h1 {
  font-size: 16px;
  margin: 0;
  letter-spacing: 0.4px
}

.brand p {
  margin: 0;
  font-size: 12px;
  color: var(--muted)
}

nav ul {
  display: flex;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center
}

nav a {
  color: inherit;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px
}

nav a:hover {
  background: var(--glass)
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  padding: 10px 14px;
  border-radius: 10px;
  color: #051325;
  font-weight: 600;
  text-decoration: none
}

.cta:active {
  transform: translateY(1px)
}

/* hamburger for mobile */
.hamburger {
  display: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: transparent;
  align-items: center;
  justify-content: center
}

.hamburger .bar {
  width: 20px;
  height: 2px;
  background: #cfefff;
  border-radius: 2px;
  position: relative
}

.hamburger .bar::after,
.hamburger .bar::before {
  content: '';
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: #cfefff;
  border-radius: 2px
}

.hamburger .bar::before {
  top: -6px
}

.hamburger .bar::after {
  top: 6px
}

/* -------------------------
       Hero
       -------------------------*/
.hero {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 28px;
  align-items: center;
  padding: 120px 0 60px
}

.hero-left {
  padding-right: 12px
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 10px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02));
  border-radius: 999px;
  font-size: 13px;
  color: var(--muted);
  width: max-content
}

.hero h2 {
  font-size: 44px;
  margin: 18px 0 12px;
  line-height: 1.02;
  letter-spacing: -1px
}

.hero p {
  color: var(--muted);
  font-size: 16px;
  margin: 0 0 18px
}

.hero .features {
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

.pill {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 8px
}

.actions {
  display: flex;
  gap: 12px;
  margin-top: 18px
}

.btn {
  padding: 12px 16px;
  border-radius: 10px;
  border: 0;
  font-weight: 700;
  cursor: pointer
}

.btn-primary {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: #051325
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted)
}

/* hero right: glass card */
.hero-right {
  background: linear-gradient(180deg, var(--glass), var(--glass-2));
  padding: 22px;
  border-radius: 16px;
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.6)
}

.stats {
  display: flex;
  gap: 18px;
  justify-content: space-between
}

.stat {
  display: flex;
  flex-direction: column
}

.stat .num {
  font-size: 24px;
  font-weight: 800
}

.stat .label {
  font-size: 12px;
  color: var(--muted)
}

/* services */
/* .services{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;margin-top:28px}
    .card{background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));padding:18px;border-radius:12px;border:1px solid rgba(255,255,255,0.02)}
    .card h4{margin:8px 0 4px}
    .card p{margin:0;color:var(--muted);font-size:13px} */

/* ---------------------- SERVICES SECTION ---------------------- */

#services {
  width: 100%;
  padding: 40px 20px;
}

/* Scroll Timeline */
@scroll-timeline scrollReveal {
  source: auto;
  orientation: block;
}

/* Heading Animation */
#services h3 {
  font-size: 26px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 25px;
  color: #ffffff;
  /* WHITE */

  opacity: 0;
  transform: translateY(25px);

  animation: fadeUp 0.8s ease forwards;
  animation-timeline: scrollReveal;
  animation-range: entry 0% cover 40%;
}

/* Animation Keyframes */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

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


.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 15px;
}

/* CARD STYLING */
.services .card {
  background: linear-gradient(135deg, #001f3f, #004b8d);
  padding: 25px;
  border-radius: 14px;
  border: 1px solid #e8e8e8;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* ICON Circle */
.services .card::before {
  content: "💼";
  font-size: 34px;
  position: absolute;
  top: 18px;
  right: 18px;
  opacity: 0.2;
}

/* DIFFERENT ICONS FOR CARDS */
.services .card:nth-child(1)::before {
  content: "🏦";
}

.services .card:nth-child(2)::before {
  content: "🚗";
}

.services .card:nth-child(3)::before {
  content: "🏘️";
}

.services .card:nth-child(4)::before {
  content: "🛡️";
}

.services .card:nth-child(5)::before {
  content: "📊";
}

.services .card:nth-child(6)::before {
  content: "👥";
}

/* CARD HOVER */
.services .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  border-color: #dcdcdc;
}

/* CARD HEADING */
.services .card h4 {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 600;
  color: #ffffff;
}

/* CARD TEXT */
.services .card p {
  font-size: 15px;
  color: #ffffff;
  line-height: 1.6;
}


/* Scroll Timeline (no JS needed) */
@scroll-timeline aboutReveal {
  source: auto;
  orientation: block;
}

/* ABOUT SECTION DESIGN */
#about {
  padding: 60px 20px;
  background: linear-gradient(115deg, var(--accent), var(--accent-2));
  border-radius: 18px;
  margin-bottom: 40px;
  color: #fff;
}

/* Container for spacing and max-width */
.about-container {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

/* BIG ATTRACTIVE HEADING */
#about h3 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  color: #ffffff;

  opacity: 0;
  transform: translateY(30px);
  animation: aboutFadeUp 0.9s ease forwards;
  animation-timeline: aboutReveal;
  animation-range: entry 0% cover 40%;
}

/* ABOUT PARAGRAPH */
#about p {
  font-size: 16.5px;
  line-height: 1.85;
  color: #e8e8e8;
  text-align: justify;
  opacity: 0;
  transform: translateY(40px);
  animation: aboutFadeUp 1s ease forwards;
  animation-timeline: aboutReveal;
  animation-range: entry 10% cover 55%;
}

/* ANIMATION KEYFRAMES */
@keyframes aboutFadeUp {
  from {
    opacity: 0;
    transform: translateY(35px);
  }

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



/* animated background shapes */
.bg-shape {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

.bg-blob {
  width: 280px;
  height: 280px;
  border-radius: 22px;
  filter: blur(40px);
  transform: translate3d(0, 0, 0)
}

.blob-a {
  background: linear-gradient(45deg, var(--accent), var(--accent-2));
  top: 60px;
  left: 40px
}

.blob-b {
  background: linear-gradient(45deg, var(--accent-2), var(--accent));
  bottom: 40px;
  right: 40px
}

/* Scroll Timeline – NO JS */
@scroll-timeline contactReveal {
  source: auto;
  orientation: block;
}

/* CONTACT SECTION DESIGN */
#contact {
  padding: 60px 20px;
  background: linear-gradient(135deg, #001f3f, #004b8d);
  border-radius: 20px;
  color: #fff;
  margin-bottom: 40px;
}

/* CONTAINER */
.contact-container {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

/* HEADING – Eye catching */
#contact h3 {
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: 0.8px;

  opacity: 0;
  transform: translateY(40px);
  animation: contactFadeUp 0.8s ease forwards;
  animation-timeline: contactReveal;
  animation-range: entry 0% cover 40%;
}

/* MAIN TEXT */
#contact .contact-text {
  font-size: 16.5px;
  color: #e8e8e8;
  margin-bottom: 22px;
  line-height: 1.7;

  opacity: 0;
  transform: translateY(50px);
  animation: contactFadeUp 1s ease forwards;
  animation-timeline: contactReveal;
  animation-range: entry 10% cover 50%;
}

/* DETAILS (with icons) */
.contact-details p {
  font-size: 16px;
  margin: 6px 0;
}

.contact-details span {
  margin-right: 6px;
}

/* BUTTONS */
.contact-buttons {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;

  opacity: 0;
  transform: translateY(60px);
  animation: contactFadeUp 1.2s ease forwards;
  animation-timeline: contactReveal;
  animation-range: entry 20% cover 65%;
}

/* ANIMATION KEYFRAMES */
@keyframes contactFadeUp {
  from {
    opacity: 0;
    transform: translateY(45px);
  }

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

.desktop-footer {
  background: #0d1b2a;
  padding: 28px 40px;
  color: #cfd6e1;
  margin-top: 50px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-left p {
  margin: 4px 0;
  font-size: 14px;
  color: #cbd4e0;
}

.footer-left .designed strong {
  color: #fff;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 15px;
}

.social-icon {
  font-size: 20px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  padding: 10px;
  border-radius: 50%;
  transition: 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  animation: bounceIcon 3s infinite;
}

.footer-right a {
  text-decoration: none;
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: scale(1.08);
}

/* Bounce Animation Every 3 Sec */
@keyframes bounceIcon {

  0%,
  92% {
    transform: translateY(0);
  }

  95% {
    transform: translateY(-5px);
  }

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





/* intentionally no 'tablet' breakpoint - tablet will keep desktop layout, per request */

/* subtle entrance animations */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: all 700ms cubic-bezier(.2, .9, .2, 1)
}

.reveal.show {
  opacity: 1;
  transform: none
}

/* micro-interactions */
.card:hover {
  transform: translateY(-6px);
  transition: transform 260ms
}



/* Reduce padding & spacing */
#contact {
  padding: 35px 16px;
  border-radius: 14px;
  margin-bottom: 28px;
}

/* Heading smaller but still attractive */
#contact h3 {
  font-size: 28px;
  margin-bottom: 14px;
  letter-spacing: 0.4px;
}

/* Main paragraph */
#contact .contact-text {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* Contact details */
.contact-details p {
  font-size: 14px;
  margin: 4px 0;
}

/* Buttons compact */
.contact-buttons {
  gap: 10px;
  margin-top: 18px;
}

.contact-buttons a,
.contact-buttons .btn {
  font-size: 13px !important;
  padding: 8px 14px !important;
  border-radius: 6px;
}

/* MOBILE FOOTER OVERRIDE */


.desktop-footer {
  padding: 20px;
  background: #001f3f;
  color: #fff;
  text-align: center;
  margin-top: 0px;
}

.desktop-footer .footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

/* Icons first, side by side */
.desktop-footer .footer-right {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

/* Bounce animation */
@keyframes bounce {

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

  50% {
    transform: translateY(-5px);
  }
}

.desktop-footer .social-icon {
  font-size: 24px;
  color: #fff;
  display: inline-block;
  animation: bounce 1s ease-in-out infinite;
}

/* stagger each icon */
.desktop-footer .social-icon.instagram {
  animation-delay: 0s;
}

.desktop-footer .social-icon.facebook {
  animation-delay: 0.5s;
}

.desktop-footer .social-icon.linkedin {
  animation-delay: 1s;
}

.desktop-footer .social-icon:hover {
  color: #ffcc00;
  /* optional hover color */
}

/* Text below icons */
.desktop-footer .footer-left {
  text-align: center;
}

.desktop-footer .footer-left p {
  margin: 4px 0;
  font-size: 14px;
}

.desktop-footer .footer-left .designed {
  font-size: 13px;
}

.theme-btn {
  background: rgba(253, 253, 253, 0.889);
  border: 0;
  padding: 10px 14px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 18px;
  color: #093e74;
  transition: 0.3s ease;
}

  /* small screens (mobile only) */
  @media (max-width:768px) {
    header {
      /* top: 10px; */
      margin: 0 0px;
      padding: 0px;
    }

    .wrap {
      padding: 10px
    }

    .nav {
      gap: 8px
    }

    .brand h1 {
      font-size: 14px
    }

    .brand p {
      display: none
    }

    nav ul {
      display: none
    }

    .hamburger {
      display: flex
    }

    .hero {
      grid-template-columns: 1fr;
      gap: 18px;
      padding: 92px 0 30px
    }

    .hero h2 {
      font-size: 28px
    }

    .hero-right {
      order: 2
    }

    .hero-left {
      order: 1;
      padding-right: 0
    }

    .hero p {
      font-size: 14px
    }

    .services {
      grid-template-columns: 1fr;
      gap: 12px
    }

    .stats {
      flex-direction: row;
      gap: 12px
    }

    .hirebar {
      flex-direction: column;
      align-items: stretch;
      padding: 10px
    }

    /* mobile nav menu panel */
    .mobile-menu {
      position: fixed;
      left: 10px;
      right: 10px;
      top: 72px;
      background: linear-gradient(135deg, #001f3f, #004b8d);
      border-radius: 12px;
      padding: 12px;
      box-shadow: 0 14px 50px rgba(2, 6, 23, 0.6);
      display: none;
      z-index: 80
    }

    .mobile-menu.show {
      display: block
    }

    .mobile-menu a {
      text-decoration: none;
      display: block;
      padding: 12px 10px;
      border-radius: 8px;
      color: white
    }
   #about {
    padding: 10px 20px;
    }

    #about h3{
      font-size: 25px;
    }
    /* THEME TOGGLE BUTTON */
    .theme-btn {
      background: rgba(253, 253, 253, 0.889);
      border: 0;
      padding: 10px 14px;
      border-radius: 10px;
      cursor: pointer;
      font-size: 18px;
      color: #093e74;
      transition: 0.3s ease;
    }

    .theme-btn:hover {
      background: rgba(255, 255, 255, 0.2);
    }

  }