:root {
  font-family: 'Roboto', 'Jost', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  font-weight: 400;
  background-color: #f7f7f7;
  color: #2c2c2c;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background-color: #f7f7f7;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.ict-theme-root {
  --bs-primary: #0f766e;
  --bs-secondary: #6366f1;
  --bs-dark: #020617;
  --bs-light: #f3f4f6;
}

.page-bg {
  background: #f7f7f7;
}

.brand-logo {
  height: 52px;
  width: 52px;
  object-fit: contain;
}

.navbar-brand .brand-text {
  color: #fff;
  font-weight: 700;
  font-size: 28px;
}

.navbar.sticky-top .brand-text {
  color: var(--bs-primary);
}

.hero-container {
  position: relative;
  min-height: 70vh;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 70vh;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.35));
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1rem;
}

.section-padded {
  padding: 4rem 0;
}

.about-card {
  background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url('../assets/gallery/pexels-500photos-com-15338-93400.jpg');
  background-size: cover;
  color: #fff;
  font-size: 18px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
  padding: 28px;
  border-radius: 12px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.gallery-grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 1040;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.lightbox::after {
  content: '✖';
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 32px;
  color: white;
  cursor: pointer;
}

.clients-marquee {
  background: #fff;
  padding: 3rem 1rem;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  overflow:hidden;
}

.clients-marquee .slide-track {
  width: max-content;
  display: flex;
  gap: 4rem;
  overflow: hidden;
  animation: scroll 22s linear infinite;
}
.clients-marquee .slide {
  min-width: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.clients-marquee .slide img {
  width: 140px;
  max-height: 80px;
  object-fit: contain;
  filter: grayscale(10%);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.package-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.package-card img {
  height: 210px;
  object-fit: cover;
}

.package-card .card-body {
  padding: 1.25rem;
  flex: 1;
}

.badge-highlight {
  background: rgba(243, 156, 18, 0.15);
  color: #c67c00;
}

.project-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(2, 6, 23, 0.06);
  display: grid;
  grid-template-columns: minmax(280px, 36%) 1fr;
}

.project-image-wrap {
  position: relative;
  min-height: 260px;
}

.project-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: #334155;
  background: #eef2ff;
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
}

.project-content {
  padding: 1.8rem;
}

.project-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.55rem;
  color: #0f172a;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
  font-size: 0.95rem;
  color: #64748b;
  margin-bottom: 1rem;
}

.project-description {
  color: #334155;
  font-size: 1.02rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.project-impact-title {
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.85rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.7rem;
}

.project-impact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem 0.9rem;
}

.project-impact-item {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #f8fafc;
  padding: 0.65rem 0.75rem;
  color: #334155;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
}

@media (max-width: 991px) {
  .project-card {
    grid-template-columns: 1fr;
  }

  .project-image-wrap {
    min-height: 230px;
  }

  .project-title {
    font-size: 1.6rem;
  }

  .project-impact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.btn-primary {
  background: var(--bs-primary);
  border-color: var(--bs-primary);
}

.btn-primary:hover {
  background: #fff;
  color: var(--bs-primary);
}

/* Base style for sticky navbar background transition */
.navbar {
  transition: all 0.3s ease;
}

.brand-text { color: #0f766e !important; font-weight: bold; font-size: 1.8rem; }

