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

:root {
  --purple-1: #1A73E8;
  /* Primary Blue */
  --purple-2: #2BD8FF;
  /* Neon Cyan Accent */
  --nav-white: #ffffff;
  /* No change */
  --text-dark: #DDE6F7;
  /* Light text for dark UI */
  --bg-dark: #050B18;
  /* Deep Navy Background */

  --nav-height: 64px;
}

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

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: #fff;
}

nav.navbar,
nav.custom-nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  transition: background .22s ease, box-shadow .22s ease, padding .18s ease;
 background: radial-gradient(1200px 700px at 10% 20%, rgba(6, 18, 40, 0.16), transparent 8%),
    radial-gradient(1000px 500px at 95% 60%, rgba(0, 178, 255, 0.06), transparent 10%),
    linear-gradient(180deg, #030416 0%, #070819 40%, #020212 100%);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
nav#mainNav {
    padding-bottom: 0px;
    
}
.nav-pill {
  margin: 0 8px; /* remove top/bottom margin so navbar is flush */
  padding-top: 0;
  padding-bottom: 0;
}

nav.navbar.scrolled {
  background: rgba(5, 2, 10, 0.95);
  box-shadow: 0 8px 30px rgba(2, 1, 10, 0.5);
}

/* When user scrolls once, make nav transparent and keep it transparent thereafter */
nav.navbar.transparent-once {
  background: transparent !important;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  box-shadow: none !important;
}

nav.navbar.scrolled .nav-pill {
  margin: 0 8px; /* keep horizontal spacing, remove vertical spacing */
  padding: 0 14px; /* remove top/bottom padding to make navbar compact */
  border-radius: 40px;
}

.hero-wrap {
  padding-top: calc(var(--nav-height) + 28px);
}

.brand-wrap {
  flex: 0 0 auto;
}

.nav-center {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.brand-wrap a img {
  max-width: 100%;
  width: 60%;
}

/* Scroll-triggered logo swap */
.logo-main {
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
              visibility 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.logo-main.hidden {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.1);
  display: none;
}

.logo-circular {
  width: 48px !important;
  object-fit: cover;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
              visibility 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  visibility: hidden;
  transform: scale(0.8);
}

.logo-circular.visible {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  display: block !important;
}

.nav-center {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 8px;
  padding-right: 8px;
}

.nav-center .navbar-nav {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-center .nav-link {
  color: #2b2140;
  padding: 12px 14px;
  border-radius: 6px;
  font-weight: 500;
  position: relative;
  text-decoration: none;
}

.nav-center .nav-link:hover {
  background: linear-gradient(90deg, rgba(155, 76, 255, 0.06), rgba(0, 200, 255, 0.02));
}

/* actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 220px;
  justify-content: flex-end;
}

.btn-outline-dark {
  border-radius: 40px;
  padding: 8px 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: transparent;
  color: var(--text-dark);
  font-weight: 600;
}

.btn-signup, .btn-signup:hover {
  padding: 10px 24px;
  border-radius: 999px;
  color: white;
  border: none;
  font-weight: 700;
  background: #1A73E8;
  color: #fff;
  box-shadow: 0 0 4px #1A73E8;
}

/* nav-pill: background and layout (duplicate - preserve original rules) */
.nav-pill {
  --nav-pill-height: 64px;
  min-height: var(--nav-pill-height);
  position: relative;
  align-items: center;
  z-index: 1101;
}

:root {
  --nav-height: 64px;
  --nav-pill-bg: linear-gradient(90deg, rgba(22, 12, 48, 0.9), rgba(6, 8, 24, 0.85));
}

.nav-pill {
  --nav-pill-height: var(--nav-height);
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: var(--nav-pill-height);
  padding: 8px 16px;
  border-radius: 40px;
  background: #131824bf;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  width: 100%;
  z-index: 1200;
}

.brand-wrap img {
  display: block;
}

.nav-center .navbar-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
  color: #fff;
}

.nav-center .nav-link {
  color: #ffffff;
  padding: 8px 6px;
  font-weight: 500;
  border-radius: 8px;
}

.nav-actions {
  min-width: 68px;
  justify-content: flex-start;
  gap: 10px;
}

.navbar-toggler {
  border: 0;
  padding: 8px;
  background: #012865;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.navbar-toggler .hamburger {
  width: 28px;
  height: 28px;
  color: #fff;
  display: block;
}

.navbar-toggler .hamburger .line {
  transition: transform .28s cubic-bezier(.2, .9, .3, 1), opacity .18s ease;
  transform-origin: 50% 50%;
  fill: currentColor;
}

/* X animation on open */
.navbar-toggler[aria-expanded="true"] .hamburger .line1 {
  transform: translateY(5px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .hamburger .line2 {
  opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .hamburger .line3 {
  transform: translateY(-5px) rotate(-45deg);
}
nav.navbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  transition: background .2s ease, box-shadow .22s ease;
}

nav.navbar.scrolled {
  background: rgba(5, 2, 10, 0.96);
  box-shadow: 0 6px 32px rgba(2, 1, 10, 0.4);
}

.hero-wrap {
  padding-top: calc(var(--nav-height) + 22px);
}

.no-scroll {
  overflow: hidden !important;
}

.hero-wrap {
  min-height: 82vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(1200px 700px at 10% 20%, rgba(6, 18, 40, 0.16), transparent 8%),
    radial-gradient(1000px 500px at 95% 60%, rgba(0, 178, 255, 0.06), transparent 10%),
    linear-gradient(180deg, #030416 0%, #070819 40%, #020212 100%);
  padding: 60px 0;
}

.hero-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 30px 30px;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero-content {
  z-index: 2;
  color: #fff;
  padding-left: 2%;
}

h1.hero-title {
  font-size: clamp(2rem, 5.2vw, 4.2rem);
  line-height: 1.02;
  font-weight: 800;
  margin: 8px 0 16px;
  letter-spacing: -1px;
}

p.lead {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  margin-bottom: 18px;
  max-width: 720px;
}


.earth-wrap {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  will-change: transform;
}

.earth3d {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  pointer-events: none;
  will-change: contents;
  transform: translateZ(0);
}

.earth3d img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 50%;
  position: relative;
  z-index: 6;
  /* allow the image to be shifted vertically to align with steps */
  .process-image-wrapper {
    transition: transform .35s cubic-bezier(.2,.9,.3,1);
    will-change: transform;
  }
  pointer-events: auto;
  transform-origin: 50% 50%;
  animation: earth-tilt 18s linear infinite;
}

#earth3d {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

#earth3d .fallback {
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
  padding: 30px;
}


.earth3d::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 70%;
  height: 70%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 2;
  background: radial-gradient(circle at 30% 20%, rgba(43, 155, 220, 0.24), rgba(0, 140, 255, 0.08) 38%, transparent 55%);
  filter: blur(6px);
  pointer-events: none;
}

.orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 3;
  mix-blend-mode: screen;
  will-change: transform;
}

.orbit-1 {
  width: 104%;
  height: 104%;
  border: 1.8px solid rgba(43, 155, 220, 0.6);
  box-shadow: 0 12px 40px rgba(43, 149, 220, 0.12), inset 0 0 60px rgba(111, 43, 220, 0.06);
  animation: rotate 10s linear infinite;
  will-change: transform;
}

.orbit-2 {
  width: 107%;
  height: 107%;
  border: 1px dashed rgba(0, 200, 255, 0.09);
  filter: blur(1.5px);
  box-shadow: 0 6px 30px rgb(0 114 255 / 11%);
  animation: rotate-rev 16s linear infinite;
  will-change: transform;
}

.sat-path {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 104%;
  height: 104%;
  z-index: 7;
  pointer-events: none;
  animation: rotate-rev 7s linear infinite;
  will-change: transform;
}

.satellite {
  position: absolute;
  left: 50%;
  top: 0%;
  transform: translateX(-50%);
  width: 18px;
  height: 18px;
  background: linear-gradient(135deg, #fff, #41bcec);
  border-radius: 3px;
  box-shadow:
    0 4px 10px rgba(65, 188, 236, 0.35),
    0 0 6px rgba(255, 255, 255, 0.35);
}

/* LEFT solar panel */
.satellite::before {
  content: "";
  position: absolute;
  left: -14px;
  top: 2px;
  width: 14px;
  height: 14px;
  background: #41bcec;
  border-radius: 2px;
  box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.25);
}

/* RIGHT solar panel */
.satellite::after {
  content: "";
  position: absolute;
  right: -14px;
  top: 2px;
  width: 14px;
  height: 14px;
  background: #41bcec;
  border-radius: 2px;
  box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.25);
}

/* keyframes */
@keyframes rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes rotate-rev {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

@keyframes earth-tilt {
  0% {
    transform: rotate(-2deg);
  }

  50% {
    transform: rotate(2deg);
  }

  100% {
    transform: rotate(-2deg);
  }
}

/* Section background + spacing */
.about-hero {
  background: #f5f7ff;
  height:350px;
  /* light blue-ish */
}

/* top pill */
.about-pill {
  border-radius: 999px;
  background: #0f172a;
  color: #e5e7eb;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  font-weight: 600;
}

.about-pill .pill-label {
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
}

.pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f97316, #ef4444);
}

/* main text */
.about-hero-text {
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: clamp(1.4rem, 2.1vw, 2rem);
  line-height: 1.6;
  font-weight: 500;
  color: #020617;
}

/* typing caret style */
.about-hero-text.typing {
  white-space: pre-wrap;
}
.about-hero-text.typing::after {
  content: '';
  display: inline-block;
  width: 2px;
  height: 1em;
  margin-left: 6px;
  background: currentColor;
  vertical-align: text-bottom;
  animation: typing-blink 1s steps(1) infinite;
}

@keyframes typing-blink {
  50% { opacity: 0; }
}

/* subtle highlight for 'AI-powered solutions' type look if chahe to */
.about-hero-text strong {
  background: linear-gradient(90deg, #2563eb, #4f46e5);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* --- Simple load animation --- */
.fade-up-on-load {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.8s ease-out forwards;
  animation-delay: 0.15s;
}

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

/* responsive tweak */



.projects-section {
  padding-top: 48px;
  padding-bottom: 64px;
  background: url("../image/project-bg.png") no-repeat center center/cover;
  background-attachment: scroll;
  position: relative;
}
.carousel-control-next, .carousel-control-prev {
    position: absolute;
    top: 50%;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    /* width: 15%; */
    padding: 0;
    color: #000000;
    width: 38px;
    text-align: center;
    background: 0 0;
    border: 0;
    opacity: .5;
    transition: opacity .15s ease;
    background: rgb(7, 32, 80);
    height: 38px;
    border-radius: 50%;
}
.carousel-control-prev {
    left: 70px;
}
.carousel-control-next {
    right: 70px;
}

.peek-prev {
  left: -60px;
}

.peek-next {
  right: -60px;
}

.peek-prev .carousel-control-prev-icon,
.peek-next .carousel-control-next-icon {
  filter: invert(1);
}
#peekCarousel {
  
  overflow: hidden; /* important */
}

.carousel-inner {
  overflow: visible;
}

/* slider wrapper */
h2.display-5.fw-bold.hero-title.mb-0 {
  color: #262626;
}

.col-lg-5.text-lg-end {
  color: #6a6a6a;
}

.slider-wrapper {
  gap: 22px;
  width: 100%;
  display: flex;
  align-items: stretch;
}


.peek-card {
  background: linear-gradient(180deg, rgb(255 255 255 / 15%), rgba(255, 255, 255, 0.01));
  border-radius: 18px;
  overflow: hidden;
  height: 550px;
  border: 1px solid rgb(98 98 98 / 50%);
  transition: transform .45s cubic-bezier(.2, .9, .3, 1), opacity .35s ease;
  position: relative;
}

.object-cover {
  /* object-fit: cover; */
  height: 100% !important;
  width: 100% !important;
  display: block;
}

.full-card {
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.half-card {
  width: 55%;
  filter: saturate(.95) brightness(.95);
}

.card-title {
  color: #111111;
  font-size: 1.6rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.card-desc {
  color: #6a6a6a;
  line-height: 1.6;
  max-width: 640px;
  font-size:20px;
}

.tags .badge {
  background: #1f5b97 !important;
  color: #ddd;
  padding: .45rem .7rem;
  border-radius: 999px;
  font-weight: 600;
}

.btn-outline-dark {
  color: #fff;
  background: #1f5b97;

}

.carousel-indicators-custom button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 8px;
  border: none;
  background: rgb(0 0 0 / 35%);
  transition: transform .22s ease, background .22s ease, box-shadow .22s;
}

.carousel-indicators-custom button.active {
  background: #2563eb;
  box-shadow: 0 8px 22px rgba(155, 80, 255, 0.15);
  transform: scale(1.18);
}

.carousel-item {
  transition: transform .6s ease, opacity .5s ease;
}

.carousel-item.active .peek-card {
  transform: translateY(0);
  opacity: 1;
}


.footer-section {
  background: radial-gradient(1200px 700px at 10% 20%, rgba(6, 18, 40, 0.16), transparent 8%),
    radial-gradient(1000px 500px at 95% 60%, rgba(0, 178, 255, 0.06), transparent 10%),
    linear-gradient(180deg, #030416 0%, #070819 40%, #020212 100%);
  color: #fff;
  padding-top: 80px;
  padding-bottom: 80px;
}


.footer-decor {
  top: -108px;
  right: -40px;
  width: 200px;
  opacity: 0.85;
  pointer-events: none;
  z-index: 1;
}


.footer-section .container {
  position: relative;
  z-index: 3;
}


.footer-logo img {
  width: 40%;
}

.store-badge {
  width: 160px;
  border-radius: 8px;
}

.store-badge-sm {
  width: 140px;
  border-radius: 8px;
}


.logo {
  font-family: "Inter", system-ui, sans-serif;
}

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


.text-muted {
  color: rgba(255, 255, 255, 0.6) !important;
}


h5.partner-title.mb-4 {
  color: #222222;
  font-size: 28px;
}

.logo-slider {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

.logos {
  display: flex;
  gap: 64px;
  animation: slide 15s linear infinite;
}

/* keep animation running continuously (no pause on hover) */

.logos img {
  height: 72px;
  filter: grayscale(1);
  transition: .2s;
}

.logos img:hover {
  filter: none;
  transform: scale(1.05);
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.newsletter-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 8px 30px rgba(2, 2, 6, 0.6);
  color: #e8f6f5;
  border: 1px solid rgba(255, 255, 255, 0.04);
  max-width: 100%;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial;
}


.nk-top {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.nk-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 8px;
  background: #1A73E8;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(139, 44, 255, 0.18), inset 0 -4px 10px rgba(0, 0, 0, 0.15);
}

.nk-title {
  font-size: 1.05rem;
  margin: 0;
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
}

.nk-form {
  margin-top: 6px;
}

.nk-inputwrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 10px 0;
  background: transparent;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px;
  box-sizing: border-box;
}

.nk-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 10px 12px;
  color: #dceff0;
  font-size: 0.95rem;
}

.nk-send {
  min-width: 44px;
  height: 44px;
  border-radius: 8px;
  border: none;
  background: #1A73E8;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(178, 38, 255, 0.18);
}

.nk-check {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 6px;
  color: #b9d8d6;
  font-size: 0.85rem;
}

.nk-check input {
  width: 16px;
  height: 16px;
}

.sr-only {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.social-links a {

  padding: 9px;
}

.nav-item.has-submenu {
  position: relative;
}

/* submenu card */
.submenu-card {
  position: absolute;
  top: calc(100% + 0px);
  left: 0;
  min-width: 300px;
  max-width: 340px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(13, 18, 30, 0.12);
  padding: 10px 12px;
  display: none;
  z-index: 2000;
  overflow: hidden;
}

.submenu-card::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 22px;
  width: 14px;
  height: 14px;
  background: #fff;
  transform: rotate(45deg);
  box-shadow: -2px -2px 6px rgba(13, 18, 30, 0.04);
}

/* rows */
.submenu-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 6px;
}

.submenu-row .icon {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* small colored backgrounds behind SVGs to match screenshot feel */
.icon-grid {
  background: rgba(255, 106, 26, 0.06);
}

.icon-blue {
  background: rgba(20, 112, 255, 0.06);
}

.icon-green {
  background: rgba(23, 183, 106, 0.06);
}

.meta h6 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: #222;
  line-height: 1;
}

.meta p {
  margin: 6px 0 0;
  font-size: 13px;
  color: #6b6b6b;
  line-height: 1.2;
  max-width: 220px;
}

/* thin divider lines */
.divider {
  height: 1px;
  background: #f0f0f0;
  margin: 0 6px;
}

/* show state (JS adds class or inline style) */
.submenu-card.show {
  display: block;
}

/* show on hover for desktop (improves discoverability) */


/* small responsive tweak: full width under mobile / collapse */


/* Section */
.testimonials-section {
  background: #f5f7ff;
  padding: 80px 0;
}

.testimonials-section .container-xxl {
  padding-block: 40px;
}

/* Left side */
.badge-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.12em;
  font-weight: 600;
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
}

.section-title {
  font-size: 2.4rem;
  line-height: 1.2;
  font-weight: 700;
  color: #050816;
}

.section-title span {
  background: linear-gradient(90deg, #2563eb, #4338ca);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-subtitle {
  max-width: 520px;
  font-size: 0.98rem;
  color: #4b5563;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #2563eb;
}

.stat-label {
  font-size: 0.88rem;
  color: #6b7280;
}

/* Right side: Card slider */
.testimonial-slider {
  max-width: 460px;
  margin-inline: auto;
}

/* base card style */
.testimonial-card {
  position: absolute;
  inset: 0;
  padding: 22px 26px 28px;
  width: 420px;
  height: 260px;
  border-radius: 22px;
  background: linear-gradient(135deg, #1A73E8, #2BD8FF);
  box-shadow: 0 18px 45px rgba(26, 115, 232, 0.25);
  color: #ffffff;
  opacity: 0;
  transform: translateX(18px);
  transition: opacity 0.4s ease,
    transform 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* show active card */
.testimonial-card.active {
  position: relative;
  opacity: 1;
  transform: translateX(0);
}

/* stacked shadow card behind (optional) */
.testimonial-slider::before {
    content: "";
    position: absolute;
    inset: -8px 30px 26px 10px;
    border-radius: 24px;
    background: rgb(72 145 235 / 12%);
    z-index: -1;
}
/* Avatar circle */
.avatar {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.9);
  flex-shrink: 0;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-mark {
  font-size: 32px;
  line-height: 1;
  color: rgba(15, 23, 42, 0.18);
  font-weight: 700;
}

/* Divider line */
.card-divider {
  border-color: rgba(15, 23, 42, 0.12);
}

/* Text */
.testimonial-text {
  margin-top: 12px;
  font-size: 0.96rem;
  line-height: 1.7;
  color: #020617;
}

/* Dots */
.slider-dots {
  position: relative;
  margin-top: 18px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.35);
  background: transparent;
  padding: 0;
  outline: none;
  cursor: pointer;
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.dot.active {
  background: #2563eb;
  border-color: #2563eb;
  transform: scale(1.15);
}

/* Responsive tweaks */
.process-section {
  background: #050816;
  color: #f9fafb;
}

/* top pill */
.process-pill {
  border-radius: 999px;
  background: #ffffff;
  color: #000000;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  font-weight: 600;
}

.process-pill .pill-label {
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* Title */
.process-title {
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: clamp(1.8rem, 2.4vw, 2.3rem);
  line-height: 1.3;
  font-weight: 700;
  color: #f9fafb;
  margin-bottom: 1.5rem;
  font-size: 3.4rem;
}

.process-title span a{
    background: linear-gradient(90deg, #62aefd, #71eafb, #3b82f6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Steps list */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Step card */
.process-step {
  width: 100%;
  text-align: left;
  border: 1px solid rgba(148, 163, 184, 0.24);
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.09), transparent 46%) #020617;
  border-radius: 20px;
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
  transition:
    border-color 0.25s ease,
    transform 0.18s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.process-step:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.55);
}

.process-step.active {
    border-color: #71c8fb;
    background: radial-gradient(circle at top left, rgba(251, 146, 60, 0.18), transparent 56%) #020617;
}
.step-icon {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #0b1120;
    flex-shrink: 0;
}

.step-icon i {
  font-size: 1.2rem;
}

.step-content {
  flex: 1;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.step-text {
  font-size: 0.86rem;
  color: #e5e7eb;
  opacity: 0.85;
}

.step-tag {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  color: #9ca3af;
}

.process-image-card {
  padding: 18px 18px 22px;
}
.logo-kep {
    margin-top: calc(40px + 1.5rem);
    margin-bottom: 1.5rem;
}
.right-project-card {
    background: #ffffff;
    padding: 24px 28px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
    height: 500px;
    overflow-y: scroll;
}

.process-image-wrapper {
    border-radius: 22px;
    overflow: hidden;
    transform: translateY(10px) !important;
}

.process-image-wrapper img {
  width: 100%;
  height: 360px;
  display: block;
  border-radius: 22px;
  transform: scale(1.01);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
  object-fit: cover;
}

.process-image-wrapper img.image-fade {
  opacity: 0;
  transform: scale(1.03);
}

.process-caption {
  font-size: 0.9rem;
  color: #d1d5db;
}

.process-caption .caption-link {
  color: #fb923c;
  text-decoration: none;
}

.process-caption .caption-link:hover {
  text-decoration: underline;
}

/* Right side wrapper for alignment */
.process-right-wrapper {
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Logo alignment - align with process-title */
.logo-kep {
  margin-bottom: 0;
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0px auto;
}

.btn-hero {
  background: #fff;
  border: none;
  padding: 12px 26px;
  border-radius: 12px;
  color: #2b0b3b;
  font-weight: 700;
  margin-top: 28px;
  transition: 0.25s;
}
.btn-hero:hover {
  background: #f1e9ff;
}

/* Fine-tune alignment for desktop - match left column structure */
@media (min-width: 992px) {
  /* Align logo-kep top with process-title top */
  /* Left column: process-pill (with mb-4) + process-title starts */
  /* Match that exact offset on right */
  .logo-kep {
    /* process-pill approximate height + mb-4 = ~64px total */
    margin-top: calc(40px + 1.5rem);
    margin-bottom: 1.5rem;
  }
  
  /* Align process-image-card top with process-steps top */
  /* Left: process-title (with mb-4) ends, then process-steps starts */
  /* Right: position image card to match */
  .process-image-card {
    margin-top: 0;
  }
}

/***  Services Section ************************************/
.industry-section {
    background-color: #fbfbfb;
    font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
    background-image: url("../image/project-bg.png");
    background-repeat: repeat;
    background-position: center;
    background-size: 100%;
    padding-top: 120px;
}

.industry-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #111827;
}

.industry-subtitle {
  max-width: 800px;
  margin: 0 auto 1.5rem;
  color: #6b7280;
  font-size: 0.98rem;
}

/* Tabs */
.industry-tabs .industry-tab {
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #111827;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.industry-tabs .industry-tab:hover {
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
}

.industry-tabs .industry-tab.active {
  background: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
}

/* Cards */
.industry-card {
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid transparent;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.industry-card-img img {
    width: 100%;
    display: block;
    height: 238px;
    object-fit: cover;
}
.industry-card-body {
  padding: 18px 20px 20px;
  text-align: left;
}

.industry-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #111827;
}

.industry-card-text {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 12px;
}

.industry-card-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
}

.industry-card-link:hover {
  text-decoration: underline;
}

/* temporary highlight used when navigating from carousel Read More */
.jump-highlight {
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.18) !important;
  transform: translateY(-6px) !important;
  transition: transform .28s ease, box-shadow .28s ease;
  border-color: #2563eb !important;
}

/* Normal hover effect */
.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 45px rgba(15, 23, 42, 0.12);
}

/* Highlight when tab selected */
.industry-card.highlight {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(37, 99, 235, 0.35);
  border-color: #2563eb;
}

/* Responsive */
@media (max-width: 991.98px) {
  #industryCarousel .carousel-item .col-md-4 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 575.98px) {
  #industryCarousel .carousel-item .col-md-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}



/****************************/* Project Section Styles */
.project {
  background: #efefef;
padding-bottom: 40px;
}

.servc-section-title {
  font-weight: 700;
  color: #111827;
}

/* ==== Left filter box ==== */
.left-side .filter-box {
    background: #fff;
    border-radius: 12px;
    padding: 25px 0px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    position: sticky;
    top: 20px;
}
.filter-box h5 {
  font-size: 16px;
  font-weight: 900;
  color: #495057;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e9ecef;
}

.filter-group {
  max-height: 470px;
  overflow-y: auto;
  padding-right: 4px;
}

/* scroll bar thoda thin */
.filter-group::-webkit-scrollbar {
  width: 4px;
}
.filter-group::-webkit-scrollbar-thumb {
  background: #e5e7eb;
  border-radius: 999px;
}
.filter-checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* custom checkbox look */
.filter-checkbox input[type="checkbox"] {
    margin-right: 12px;
    width: 18px;
    height: 18px;
    accent-color: #0d6efd;
}

/* clear button – orange */
#clear-filters {
  margin-top: 16px;
  border-radius: 999px;
  border: none;
  background: #1a73e8;
  color: #ffffff;
  font-weight: 600;
  font-size: 13px;
  padding: 10px 14px;
  box-shadow: 0 10px 25px #1a73e8;
}

#clear-filters i {
  font-size: 12px;
}

/* ==== Right side ==== */
.filter-results {
  margin-bottom: 14px;
}

.filter-results h6 {
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;
}
.filter-checkbox label {
    color: #000;
}


/* ==== Project cards ==== */
.project-card {
    transition: all 0.3s ease;
    border: none;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    color: white;
    border: 0.5px solid #000;
    text-decoration: none;
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.45);
  text-decoration: none;
}

/* image full width, top rounded already from card */
.project-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* body white strip bottom */
.project-card .card-body {
    background: #dce0e8;
    padding: 20px 18px;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    margin-top: -12px;
    position: relative;
    z-index: 2;
    box-shadow: 7px 2px 7px #a3a2a2;
}

.project-card .card-title {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

/* ==== Tags inside card ==== */
.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.project-tag {
    font-size: 11px;
    padding: 6px 10px;
    background: #ffffff;
    border-radius: 12px;
    color: #171718;
    border: 1px solid #dfe3e8;
    white-space: nowrap;
    font-weight: bold;
    box-shadow: 3px 2px 5px rgba(255, 159, 28, 0.35);
}

/* ==== No results message ==== */
.no-results {
  text-align: center;
  margin-top: 40px;
  padding: 40px 20px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.no-results i {
  font-size: 30px;
  color: #9ca3af;
  margin-bottom: 10px;
}


/******************* project details page *******************/
.project-detail {
  background: #f5f7fb;   /* halka grey bg */
}

.project-detail .project-text-heading {
  font-size: 32px;
  font-weight: 700;
  color: #111827;
}

/* Right side card */
.right-project-card {
  background: #ffffff;
  padding: 24px 28px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
}

/* Text paragraph */
.right-project-card p {
  margin: 0;
  margin-top: 12px;
  color: #4b5563;
  line-height: 1.7;
  font-size: 15px;
}

/* Tabs styling */
.nav-tabs {
  border-bottom: 1px solid #e5e7eb;
}

.nav-tabs .nav-item {
  margin-right: 6px;
}

.nav-tabs .nav-link {
  border: none;
  border-radius: 8px 8px 0 0;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 600;
  color: #6b7280;
  background: transparent;
}

.nav-tabs .nav-link:hover {
  background: #f3f4f6;
  color: #111827;
}

/* Active tab */
.nav-tabs .nav-link.active {
  color: #111827;
  background: #d4d4d4b8;
  border: 1px solid #e5e7eb;
  border-bottom-color: transparent;
  box-shadow: 0 -2px 4px rgba(15, 23, 42, 0.04);
}

/* Tab content spacing */
.tab-content {
  padding-top: 10px;
}

/* Left side carousel image */
.project-detail .carousel-inner img {
  height: 320px;          /* need ho to change kar sakte ho */
  object-fit: cover;
  border-radius: 12px;
}

/* Responsive */
@media (max-width: 767.98px) {
  .project-detail .project-text-heading {
    font-size: 24px;
  }

  .right-project-card {
    margin-top: 10px;
    padding: 18px 16px;
  }

  .project-detail .carousel-inner img {
    height: 240px;
  }
}

/* Hero Section Container */
.service-hero {
  position: relative;
  height: 380px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

/* Blur Effect Layer */
.service-hero-overlay {
    position: absolute;
    inset: 0;
    backdrop-filter: blur(1px);
    background: rgb(0 0 0 / 35%);
}

/* Content */
.service-hero-content {
  position: relative;
  max-width: 700px;
  margin-left: auto;
  padding-right: 20px;
  text-align: left;
  color: #fff;
}

/* Title */
.service-hero-title {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
}

/* Subtitle */
.service-hero-subtext {
    font-size: 18px;
    color: #ffffff;
    line-height: 1.6;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .service-hero {
    height: 320px;
  }

  .service-hero-content {
    text-align: center;
    margin: 0 auto;
    padding: 0 20px;
  }

  .service-hero-title {
    font-size: 30px;
  }
}
.project-text-section {
  background-color: #e5f2f2;
  padding: 80px 0;
}

.project-text-block {
  max-width: 900px;
  margin: 0 auto;
  
}

#typingText {
    font-size: 24px;
    line-height: 1.7;
    color: #0f172a;
    font-weight: 500;
    width: auto;
    overflow: hidden;
    height: 235px;
    display: flex;
    align-items: center;
}
.grid-wrapper {
    background: #d5e8ed;
    padding: 30px;
    border-radius: 16px;
}

/* Grid layout */
.grid-layout{
  display:grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(3, 1fr);
  gap:20px;
  height:600px;
}

/* Common white cards */
.grid-item{
  background:#fff;
  border-radius:12px;
  border:1px solid #b5b5b5;
  box-shadow:0 2px 0 rgba(0,0,0,0.25);
  overflow: hidden;
}

/* Left big card */
.grid-item.big{
  grid-row:1 / span 3;
}

/* Right cards */
.grid-item.small{
  height:100%;
}

.grid-item{
  cursor:pointer;
  overflow:hidden;
}

.grid-item img{
  width:100%;
  height:100%;
  object-fit: cover;
  transition:transform .4s ease;
}

.grid-item:hover img{
  transform:scale(1.05);
}

/* Popup */
.image-popup{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.85);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:9999;
}

.image-popup img{
  max-width:90%;
  max-height:90%;
  border-radius:12px;
  animation:zoom .3s ease;
}

@keyframes zoom{
  from{transform:scale(.8);opacity:0}
  to{transform:scale(1);opacity:1}
}

.close-btn{
  position:absolute;
  top:25px;
  right:35px;
  font-size:42px;
  color:#fff;
  cursor:pointer;
}


/**********project end***********/

/****** about us *****/
.banner.about {
    background: 
        linear-gradient(180deg, rgba(3,4,22,0.85), rgba(3,4,22,0.85)),
        url('../image/about-banner.jpg') center/cover no-repeat;
    padding: 120px 0;
    text-align: center;
}

.banner.about h1 {
    color: #ffffff;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* =========================
   About Section
========================= */
.about-section {
    background-color: #ffffff;
}

.about-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
}

.about-section p {
    color: #475569;
    font-size: 16px;
    line-height: 1.7;
}

/* =========================
   Mission / Services Section
========================= */
.services {
    background-color: #f1f5f9;
}

.services h2 {
    color: #0f172a;
}

.service-card {
    /* background: #071228; */
    border-radius: 16px;
    border: 1px solid #e5e7eb;
}

.service-card p {
    font-size: 16px;
    color: #334155 !important;
    line-height: 1.7;
}

.about-core {
    max-width: 900px;
    margin: 0 auto;
    color: #334155 !important;
    font-size: 25px;
}
.project-detail .carousel-control-prev {
    left: -44px;
}

/* =========================
   Team Section
========================= */
.team {
    position: relative;
    padding: 80px 0;
    background-color: #ffffff;
    z-index: 1;
}

.team::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url(../image/white-linebg.png) no-repeat center center / cover;
    opacity: 0.15;      
    z-index: -1;          
}
/* Content Above Background */
.team .container,
.team .row,
.team .team-card,
.team h2 {
    position: relative;
    z-index: 2;
}

.team h2 {
    color: #0f172a;
}

.team-card {
    background: #f8fafc;
    border-radius: 18px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.team-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid #ffffff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.team-card h5 {
    font-weight: 700;
    color: #020617;
}

.team-card h6 {
    color: #2563eb;
}

.team-card p {
    color: #475569;
    font-size: 15px;
    line-height: 1.6;
}

.team-card ul li {
  color: black;
  text-align: left;
}

.background-lightgry {
    background-color: #f1f5f9;
    height: 270px;
}


/*****contact section*****/

.contact-hero {
  padding: 140px 0 160px;
    background: radial-gradient(1200px 700px at 10% 20%, rgba(6, 18, 40, 0.16), transparent 8%),
    radial-gradient(1000px 500px at 95% 60%, rgba(0, 178, 255, 0.06), transparent 10%),
    linear-gradient(180deg, #030416 0%, #070819 40%, #020212 100%);
  color: #fff;
}

.contact-title {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
}

.contact-wrapper {
  margin-top: -130px;
  padding-bottom: 80px;
  position: relative;
}

.contact-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url(../image/white-linebg.png) no-repeat center center/cover;
    opacity: 0.2;
    z-index: -1;
}


.contact-box {
  background: #ffffff;
  border-radius: 40px;
  padding: 60px 70px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* ================= LEFT INFO CARDS ================== */
.info-card {
  border: 1px solid #e5e7eb;
  padding: 22px 25px;
  border-radius: 16px;
  margin-bottom: 18px;
  background: #fafafa;
}

.info-card h6 {
  font-size: 13px;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 5px;
}

.info-card p {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #5f5a5a;
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}
.contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.contact-list i {
  font-size: 32px;
  line-height: 1;
  margin-top: 4px; /* vertical align fine tune */
}

.contact-list .text {
  line-height: 1.5;
}

/* ================= FORM FIELDS ================== */
.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid #d1d5db;
  background: #fff;
  font-size: 16px;
  outline: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: #3b82f6;
}

.form-textarea {
  height: 140px;
  resize: none;
}

/* ================= SEND BUTTON ================== */
.send-btn {
  background: #0047ff;
  color: #fff;
  padding: 14px 28px;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
  margin-top: 10px;
}

.send-btn:hover {
  background: #0033cc;
}

/* ================= WHERE TO FIND US SECTION ================== */
.contact-locations {
  padding: 80px 0 90px;
  background: #f4f6fb;
  color: #0f172a; /* Text now visible on light background */
}

.location-image-wrap {
  max-width: 430px;
  margin: 0 auto;
  border-radius: 40px;
  overflow: hidden;
}

.location-image {
  width: 100%;
  display: block;
  object-fit: cover;
}

.location-text-block {
  max-width: 420px;
  margin-left: auto;
}

.location-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #0f172a;
}

.location-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 18px;
}

.location-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #2563eb;
  margin-top: 8px;
}

.location-item h5 {
  font-size: 18px;
  margin: 0 0 3px;
  font-weight: 600;
  color: #111;
}

.location-item p {
  margin: 0;
  font-size: 15px;
  color: #4b5563;
}

/* ================= RESPONSIVE ================== */
@media (max-width: 768px) {
  .contact-title {
    font-size: 36px;
    text-align: center;
  }
  .contact-box {
    padding: 40px 30px;
  }
  .location-text-block {
    margin: 0 auto;
    margin-top: 20px;
    text-align: center;
  }
  .background-lightgry {
    height: 350px;
  }
  #typingText{
    height: 600px;
  }
  .info-card {
    padding: 18px 16px;
  }
  .info-card p {
    font-size: 16px;
    word-break: break-all;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 575.98px) {
  .info-card {
    padding: 16px 14px;
  }
  .info-card p {
    font-size: 14px;
  }
  .contact-box {
    padding: 30px 20px;
  }
}
/*================= contact section end =================*/

/* ==== Responsive tweaks ==== */
@media (max-width: 991.98px) {
  .left-side .filter-box {
    position: static;
    margin-bottom: 20px;
  }
}

@media (max-width: 575.98px) {
  .project-card img {
    height: 150px;
  }
}


/********************/
/* Responsive */

@media (min-width: 992px) {
  .navbar-toggler {
    display: none !important;
  }
}

@media (max-width: 991.98px) {
  .navbar-toggler {
    display: inline-flex !important;
    z-index: 1300;
  }
}

@media (max-width: 575.98px) {
  .about-hero {
    padding-top: 40px;
    padding-bottom: 48px;
  }

  .about-hero-text {
    font-size: 1.25rem;
  }
  .testimonial-card {
    width: 350px;
    height: 258px;

}
}

@media (max-width: 991px) {
  .earth-wrap {
    height: 420px;
    margin-top: 30px;
  }

  .nav-pill {
    padding: 8px;
    margin: 12px;
  }

  .full-card {
    width: 70%;
  }

  .half-card {
    width: 30%;
  }

  .peek-card {
    min-height: 320px;
  }

  .object-cover {
    height: 100%;
  }

  .footer-decor {
    width: 360px;
    top: -60px;
    right: -20px;
  }

  .store-badge {
    width: 140px;
  }
}

@media (max-width: 991.98px) {
  .nav-pill {
    padding: 8px 12px;
    border-radius: 28px;
    margin: 10px;
  }

  .navbar-toggler {
    display: inline-flex !important;
    z-index: 1300;
  }

  /* collapse becomes a dropdown under the pill */
  .navbar-collapse {
    position: absolute;
    left: 12px;
    right: 12px;
    top: calc(var(--nav-height) + 16px);
    width: calc(100% - 24px);
    background: rgb(15 19 33);
    border-radius: 12px;
    padding: 10px 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
    max-height: 0;
    overflow: hidden;
    transition: max-height .26s ease, padding .22s ease, opacity .22s ease;
    opacity: 0;
    z-index: 1100;
  }

  .navbar-collapse.show {
    max-height: calc(100vh - (var(--nav-height) + 48px));
    opacity: 1;
    padding: 16px;
  }

  .nav-center {
    justify-content: flex-start;
  }

  .navbar-nav {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }

  .nav-center .nav-link {
    text-align: left;
    width: 100%;
    padding: 10px 12px;
  }

  .btn-signup.d-none.d-lg-inline {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .hero-wrap {
    padding: 40px 0;
    min-height: 75vh;
  }

  .earth-wrap {
    height: 340px;
  }

  .brand-title {
    display: none;
  }

  .nav-actions .d-none.d-md-inline {
    display: none !important;
  }

  .earth3d::before {
    width: 76%;
    height: 76%;
  }

  .orbit-1 {
    width: 100%;
    height: 100%;
  }

  .orbit-2 {
    width: 100%;
    height: 100%;
  }

  .sat-path {
    width: 100%;
    height: 100%;
  }

  .footer-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .footer-decor {
    width: 260px;
    top: -40px;
    right: -10px;
  }

  .store-badge {
    width: 120px;
  }

  .icon-box {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .full-card {
    width: 100%;
    min-height: auto;
    height: auto;
  }

  .half-card {
    width: 100%;
    display: block !important;
    height: 300px;
    min-height: 300px;
  }

  .peek-card {
    min-height: auto;
    height: auto;
  }

  .object-cover {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  #peekCarousel,
  .carousel-inner {
    overflow: hidden;
  }

  .slider-wrapper {
    flex-direction: column;
    gap: 18px;
  }

  .full-card .p-4 {
    padding: 1.5rem !important;
  }

  .card-title {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }

  .card-desc {
    font-size: 16px;
    line-height: 1.6;
  }
}

@media (max-width: 575.98px) {
  .projects-section {
    padding-top: 24px;
    padding-bottom: 40px;
  }

  .half-card {
    height: 220px;
    min-height: 220px;
  }

  .full-card .p-4 {
    padding: 1.25rem !important;
  }

  .card-title {
    font-size: 1.2rem;
    margin-bottom: 8px;
  }

  .card-desc {
    font-size: 14px;
    line-height: 1.5;
  }

  .footer-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .footer-decor {
    width: 150px;
    top: -40px;
    right: -10px;
  }

  .store-badge {
    width: 120px;
  }

  .icon-box {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .orbit-1,
  .orbit-2,
  .sat-path,
  .earth3d img {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 575px) {
  .newsletter-card {
    padding: 14px;
  }

  .nk-title {
    font-size: 0.95rem;
  }

  .nk-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }

  .nk-send {
    min-width: 40px;
    height: 40px;
  }
}

@media (min-width: 992px) {
  .nav-item.has-submenu:hover .submenu-card {
    display: block;
  }
}

@media (max-width: 991.98px) {
  .submenu-card {
    left: 0;
    right: 0;
    min-width: auto;
    width: calc(100% - 30px);
    margin: 0 15px;

    position: static;
    box-shadow: none;
    background: rgba(241, 241, 241, 0.98);
    padding: 8px 6px;
    border-radius: 8px;
    margin-top: 8px;
  }

  .submenu-card::before {
    left: 40px;
  }
}

@media (max-width: 991.98px) {
  .testimonials-section .container-xxl {
    padding-block: 24px 40px;
  }

  .testimonial-slider {
    margin-top: 12px;
  }

  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 575.98px) {
  .testimonial-card {
    padding: 18px 18px 22px;
  }
  
  /* Extra small screens - ensure logo-kep image doesn't overflow */
  .logo-kep {
    padding: 0 8px;
  }
  
  .logo-kep img {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 991.98px) {
  .process-image-card {
    margin-top: 8px;
  }
  
  /* Ensure logo-kep image fits on mobile */
  .logo-kep {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    width: 100%;
    padding: 0 12px;
  }
  
  .logo-kep img {
    max-width: 100%;
    height: auto;
    width: 100%;
    object-fit: contain;
  }
}

@media (max-width: 768px) {
  .carousel-control-prev {
    left: 10px;
  }
  .carousel-control-next {
    right: 10px;
  }

  #peekCarousel .carousel-control-prev {
    left: 10px;
  }
  #peekCarousel .carousel-control-next {
    right: 10px;
  }

  .projects-section {
    padding-top: 32px;
    padding-bottom: 48px;
  }

  .projects-section .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .half-card {
    height: 250px;
    min-height: 250px;
  }

  .card-title {
    font-size: 1.3rem;
  }

  .card-desc {
    font-size: 15px;
  }
}