/* =========================================================
   LARGTEC IT SOLUTIONS - Design System
   ========================================================= */

:root {
  --navy-900: #03170F;
  --navy-800: #05211A;
  --navy-700: #082A20;
  --navy-600: #0C3A2B;
  --primary: #159B70;
  --primary-dark: #0E7A56;
  --primary-light: #1DBB8B;
  --accent: #F0E000;
  --gradient: linear-gradient(135deg, #159B70 0%, #00C6A0 100%);
  --text-light: #f5f8fc;
  --text-muted: #94a3b8;
  --bg-light: #f5f8fc;
  --border-dark: rgba(255,255,255,.12);
  --radius: 16px;
  --shadow: 0 12px 40px rgba(3, 23, 15, .14);
}

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #123129;
  background: #fff;
  overflow-x: hidden;
  overflow-x: clip;
}

h1, h2, h3, h4, h5, h6, .navbar-brand { font-family: 'Poppins', sans-serif; }

a { text-decoration: none; }

section { scroll-margin-top: 76px; }

/* ---------- Buttons ---------- */
.btn-brand {
  background: var(--gradient);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 50rem;
  padding: .65rem 1.5rem;
  box-shadow: 0 8px 24px rgba(21, 155, 112, .35);
  transition: transform .25s ease, box-shadow .25s ease;
}
.btn-brand:hover, .btn-brand:focus {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(21, 155, 112, .45);
}
.btn-outline-light { border-radius: 50rem; font-weight: 600; }

/* ---------- Section helpers ---------- */
.section { padding: 90px 0; }
.section-dark { background: var(--navy-800); color: var(--text-light); }
.section-gradient { background: var(--navy-900); color: var(--text-light); position: relative; overflow: hidden; }
.section-gradient::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(240,224,0,.16), transparent 70%);
}

.section-tag {
  display: inline-block;
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(21, 155, 112, .1);
  border: 1px solid rgba(21, 155, 112, .2);
  padding: .35rem 1rem;
  border-radius: 50rem;
  margin-bottom: .75rem;
}
.section-dark .section-tag, .section-gradient .section-tag { color: var(--accent); background: rgba(240,224,0,.14); border-color: rgba(240,224,0,.3); }
.section-title { font-weight: 700; font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin-bottom: .75rem;     color: #043a24; }
.section-sub { color: var(--text-muted); max-width: 640px; margin: 0 auto;     color: #043a24;}

.section-dark .section-title, .section-gradient .section-title { color: #fff; }
.section-dark .section-sub, .section-gradient .section-sub { color: rgba(255, 255, 255, .75); }

.text-gradient { background: var(--gradient); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* ---------- Navbar ---------- */
.navbar {
  background: rgba(3, 23, 15, .88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: .9rem 0;
  transition: box-shadow .3s ease, background .3s ease;
}
.navbar.scrolled { background: rgba(3, 23, 15, .97); box-shadow: 0 6px 24px rgba(0,0,0,.4); }
.navbar-brand { display: flex; align-items: center; gap: .6rem; }
.brand-logo {
  width: 44px; height: 44px;
  border-radius: 12px;
  object-fit: cover;
  background: #f0f0f0;
  box-shadow: 0 6px 16px rgba(21,155,112,.4);
}
.brand-text { font-weight: 700; font-size: 1.25rem; color: #fff; line-height: 1; display: flex; flex-direction: column; }
.brand-text small { font-size: .6rem; font-weight: 600; letter-spacing: 3px; color: var(--accent); }

.navbar .nav-link {
  color: rgba(255,255,255,.82);
  font-weight: 500;
  margin: 0 .2rem;
  transition: color .2s;
}
.navbar .nav-link:hover, .navbar .nav-link.active { color: var(--accent); }
.navbar .nav-link.active::after {
  content: '';
  display: block;
  height: 2px;
  background: var(--gradient);
  border-radius: 2px;
}
.navbar-toggler { border-color: rgba(255,255,255,.3); }
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,.85)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }

@media (max-width: 991px) {
  .navbar-collapse { background: rgba(3,23,15,.98); padding: 1rem; border-radius: 12px; margin-top: .75rem; }
}

/* Navbar Services dropdown */
.navbar .dropdown-menu {
  background: rgba(3, 23, 15, .98);
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .5);
  border-radius: 14px;
  min-width: 300px;
  padding: .5rem;
  margin-top: .8rem;
}
.navbar .dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px; left: 24px;
  width: 16px; height: 16px;
  background: rgba(3, 23, 15, .98);
  border-left: 1px solid rgba(255,255,255,.1);
  border-top: 1px solid rgba(255,255,255,.1);
  transform: rotate(45deg);
}
.navbar .dropdown-item {
  color: rgba(255, 255, 255, .85);
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .55rem .85rem;
  border-radius: 10px;
  font-size: .9rem;
  transition: background .2s, color .2s;
}
.navbar .dropdown-item i { color: var(--accent); width: 1.15rem; text-align: center; font-size: 1.05rem; }
.navbar .dropdown-item:hover, .navbar .dropdown-item:focus, .navbar .dropdown-item.active {
  background: rgba(21, 155, 112, .15);
  color: #fff;
}
.navbar .dropdown-item:hover i, .navbar .dropdown-item.active i { color: var(--accent); }
@media (min-width: 992px) {
  .navbar .nav-item.dropdown:hover > .dropdown-menu { display: block; }
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  position: relative;
  color: #fff;
  padding: 140px 0 90px;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(3,23,15,.97) 0%, rgba(3,23,15,.84) 45%, rgba(8,42,32,.6) 100%);
}
.hero-badge {
  display: inline-flex; align-items: center;
  background: rgba(240,224,0,.14);
  border: 1px solid rgba(240,224,0,.35);
  color: var(--accent);
  font-size: .85rem; font-weight: 600;
  padding: .45rem 1.1rem;
  border-radius: 50rem;
  margin-bottom: 1.25rem;
}
.hero-title {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 1.25rem;
}
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,.85); max-width: 640px; margin-bottom: 2rem; }
.hero-points { display: flex; flex-wrap: wrap; gap: .5rem 1.4rem; }
.hero-points span { display: inline-flex; align-items: center; gap: .45rem; color: rgba(255,255,255,.9); font-size: .95rem; font-weight: 500; }
.hero-points i { color: var(--accent); }

.scroll-down {
  position: absolute;
  bottom: 26px; left: 50%;
  transform: translateX(-50%);
  color: #fff; font-size: 1.4rem;
  animation: bob 2s infinite;
  opacity: .8;
}
@keyframes bob { 0%,100% { transform: translate(-50%,0); } 50% { transform: translate(-50%,8px); } }

/* ---------- About ---------- */
.about-img-wrap { position: relative; }
.about-img { width: 100%; object-fit: cover; aspect-ratio: 4/3; }
.about-badge {
  position: absolute; bottom: 24px; left: 24px;
  background: var(--gradient);
  color: #fff;
  border-radius: var(--radius);
  padding: 1rem 1.4rem;
  display: flex; align-items: center; gap: .75rem;
  box-shadow: var(--shadow);
}
.about-badge .num { font-family: 'Poppins'; font-weight: 800; font-size: 2rem; line-height: 1; }
.about-badge .txt { font-size: .85rem; font-weight: 600; line-height: 1.25; }
.why-item { display: inline-flex; align-items: center; gap: .5rem; font-weight: 500; padding: .4rem 0; }
.why-item i { color: var(--primary); font-size: 1.1rem; }

/* ---------- Team ---------- */
.team-slider { padding: 8px 6px 8px; overflow: hidden; }
.team-slider .swiper-slide { height: auto; }
.team-card {
  background: var(--navy-700);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 1.4rem;
  text-align: center;
  height: 100%;
  transition: transform .3s ease, border-color .3s ease;
}
.team-card:hover { transform: translateY(-6px); border-color: rgba(240,224,0,.5); }
.team-img {
  width: 300px; height: 300px;
  max-width: 100%;
  margin: 0 auto 1rem;
  border-radius: 16px;
  overflow: hidden;
  border: 3px solid transparent;
  background: linear-gradient(var(--navy-700), var(--navy-700)) padding-box, var(--gradient) border-box;
  box-shadow: 0 8px 20px rgba(0,0,0,.35);
}
.team-img img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-weight: 600; margin-bottom: .15rem; }
.team-role {
  display: inline-block;
  color: var(--accent);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: .6rem;
}
.team-desc { color: var(--text-muted); font-size: .9rem; margin: 0; }

.team-nav {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--gradient);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  font-size: 1.2rem;
  box-shadow: 0 8px 20px rgba(21,155,112,.4);
  transition: transform .25s ease, box-shadow .25s ease;
}
.team-nav:hover { transform: translateY(-50%) scale(1.08); box-shadow: 0 10px 26px rgba(21,155,112,.55); }
.team-nav.swiper-button-disabled { opacity: .45; pointer-events: none; }
.team-prev { left: -18px; }
.team-next { right: -18px; }
.team-pagination {
  position: static;
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: .45rem;
}
.team-pagination .swiper-pagination-bullet {
  width: 10px; height: 10px;
  background: rgba(255,255,255,.35);
  opacity: 1;
}
.team-pagination .swiper-pagination-bullet-active {
  background: var(--accent);
  width: 24px;
  border-radius: 50rem;
}

@media (max-width: 767px) {
  .team-prev { left: 2px; }
  .team-next { right: 2px; }
}

/* ---------- Services ---------- */
.service-card {
  background: #fff;
  border: 1px solid #e6edf5;
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  cursor: pointer;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: rgba(21,155,112,.35); }
.service-thumb { height: 150px; overflow: hidden; position: relative; }
.service-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card:hover .service-thumb img { transform: scale(1.08); }
.service-thumb::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(3,23,15,.75), transparent 55%);
}
.service-body { padding: 1.4rem; }
.service-icon {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  background: var(--gradient);
  color: #fff;
  font-size: 1.3rem;
  border-radius: 12px;
  margin-top: -36px;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 20px rgba(21,155,112,.4);
}
.service-body h5 { font-weight: 600; margin: .8rem 0 .35rem; }
.service-body p { color: #5b6f66; font-size: .92rem; margin-bottom: .9rem; }
.service-link { color: var(--primary); font-weight: 600; font-size: .9rem; }
.service-link i { transition: transform .25s; }
.service-card:hover .service-link i { transform: translateX(4px); }

/* Modal */
.modal-content { border: none; border-radius: var(--radius); overflow: hidden; }
.modal-header { background: var(--navy-800); color: #fff; }
.modal-header .btn-close { filter: invert(1); }
.modal-thumb { width: 100%; height: 210px; object-fit: cover; border-radius: 12px; margin-bottom: 1.25rem; }
.service-group { margin-bottom: 1.1rem; }
.service-group h6 { font-weight: 700; color: var(--primary); margin-bottom: .5rem; }
.service-group ul { list-style: none; padding: 0; margin: 0; }
.service-group li { padding: .32rem 0 .32rem 1.6rem; position: relative; }
.service-group li::before {
  content: '\F26E';
  font-family: 'bootstrap-icons';
  color: var(--primary);
  position: absolute; left: 0;
  font-size: .9rem;
}

/* ---------- Mission & Vision ---------- */
.mv-card {
  background: var(--navy-700);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 2rem;
  height: 100%;
  position: relative;
  z-index: 1;
  transition: border-color .3s;
}
.mv-card:hover { border-color: rgba(240,224,0,.45); }
.mv-icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  background: var(--gradient);
  color: #fff;
  font-size: 1.5rem;
  border-radius: 14px;
  margin-bottom: 1.2rem;
}
.mv-card h3 { font-weight: 700; margin-bottom: .75rem; }
.mv-card p { color: var(--text-muted); margin: 0; }
.mv-card p strong { color: var(--text-light); }

/* ---------- Stats ---------- */
.achievements { position: relative; z-index: 1; }
.stat-num {
  font-family: 'Poppins';
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-plus { font-family: 'Poppins'; font-weight: 800; font-size: 1.8rem; color: var(--accent); }
.stat p { color: var(--text-muted); margin-top: .3rem; }

/* ---------- Industries ---------- */
.industry-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1rem; }
.industry-chip {
  display: flex; align-items: center; gap: .7rem;
  background:#031810;
      color: #06bb93;
  border: 1px solid #e6edf5;
  border-radius: 14px;
  padding: 1.1rem 1.2rem;
  font-weight: 600;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.industry-chip i { color: #e9dd25; font-size: 1.3rem; }
.industry-chip:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(21,155,112,.4); }

/* ---------- Testimonials ---------- */
.testimonial-card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--navy-700);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
}
.testimonial-stars { color: #ffc107; margin-bottom: 1rem; font-size: 1.1rem; letter-spacing: 2px; }
.testimonial-text { font-size: 1.15rem; font-weight: 500; color: #dbe4ef; font-style: italic; margin: 0; }
#testimonialCarousel .carousel-indicators { position: static; margin-top: 1.5rem; }
#testimonialCarousel .carousel-indicators button { width: 10px; height: 10px; border-radius: 50%; background-color: rgba(255,255,255,.4); }
#testimonialCarousel .carousel-indicators button.active { background-color: var(--accent); }
#testimonialCarousel .carousel-control-prev, #testimonialCarousel .carousel-control-next { width: 8%; color: var(--accent); }

/* ---------- Contact ---------- */
.contact-list { list-style: none; padding: 0; margin: 1.2rem 0; }
.contact-list li { padding: .35rem 0; font-weight: 500; }
.contact-list i { color: var(--primary); margin-right: .5rem; }
.cta-badges { display: flex; flex-wrap: wrap; gap: .6rem; }
.cta-badges .badge { font-weight: 600; padding: .5rem 1rem; }

.contact-info { display: flex; flex-direction: column; gap: .9rem; margin: 1.5rem 0; }
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  border: 1px solid #e6edf5;
  border-radius: 14px;
  padding: .9rem 1.1rem;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.contact-info-item:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: rgba(21,155,112,.35); }
.contact-info-icon {
  flex: 0 0 auto;
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: var(--gradient);
  color: #fff;
  font-size: 1.35rem;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(21,155,112,.35);
}
.contact-info-item h6 { margin: 0 0 .15rem; font-weight: 700; font-size: .85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .5px; }
.contact-info-item a { color: #043a24; font-weight: 600; text-decoration: none; font-size: 1.02rem; }
.contact-info-item a:hover { color: var(--primary); }

.contact-card {
  background: #fff;
  border: 1px solid #e6edf5;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
}
.contact-card .form-control, .contact-card .form-select {
  border-radius: 10px;
  padding: .7rem .9rem;
  border-color: #dbe4ef;
}
.contact-card .form-control:focus, .contact-card .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 .25rem rgba(21,155,112,.12);
}
.contact-card .form-label { font-weight: 600; font-size: .9rem; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-900); color: var(--text-muted); padding: 60px 0 24px; }
.footer .navbar-brand { margin-bottom: 1rem; }
.footer h6 { color: #fff; font-weight: 600; margin-bottom: 1rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { padding: .3rem 0; font-size: .92rem; }
.footer-links li i { color: var(--accent); margin-right: .4rem; font-size: .85rem; }
.footer-links.nav-links a { color: var(--text-muted); transition: color .2s; }
.footer-links.nav-links a:hover { color: var(--accent); }
.founder-line { font-size: .88rem; color: var(--text-muted); }
.footer hr { border-color: rgba(255,255,255,.12); margin: 1.8rem 0; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  min-height: 68vh;
  position: relative;
  color: #fff;
  padding: 150px 0 80px;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(3,23,15,.96) 0%, rgba(3,23,15,.82) 50%, rgba(8,42,32,.62) 100%);
}

/* ---------- Projects ---------- */
.project-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; }
.project-card {
  display: flex; align-items: center; gap: .7rem;
  background: #fff;
  border: 1px solid #e6edf5;
  border-radius: 14px;
  padding: 1.1rem 1.2rem;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.project-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(21,155,112,.4); }
.project-star { color: var(--accent); font-size: 1.05rem; flex-shrink: 0; }
.project-name { font-weight: 600; letter-spacing: .5px; }

/* ---------- Responsibilities ---------- */
.resp-item {
  display: flex; align-items: flex-start; gap: .8rem;
  background: var(--navy-700);
  border: 1px solid var(--border-dark);
  border-radius: 14px;
  padding: 1.15rem 1.2rem;
  height: 100%;
  color: var(--text-muted);
  transition: border-color .3s;
}
.resp-item:hover { border-color: rgba(240,224,0,.45); }
.resp-item i {
  color: var(--accent);
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: .1rem;
}

/* ---------- CTA panel ---------- */
.cta-panel {
  background: #fff;
  border: 1px solid #e6edf5;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.5rem;
}

/* ---------- Portfolio (projects page, Dribbble-style) ---------- */
.portfolio-tools { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.project-search-wrap { max-width: 380px; }
.project-search-wrap .input-group-text {
  background: #fff;
  border-color: #dbe4ef;
  color: var(--primary);
  border-radius: 10px 0 0 10px;
}
.project-search-wrap .form-control {
  border-radius: 0 10px 10px 0;
  border-color: #dbe4ef;
  padding: .6rem .9rem;
}
.project-search-wrap .form-control:focus { box-shadow: 0 0 0 .25rem rgba(21,155,112,.12); border-color: var(--primary); }
.filter-btns { display: flex; flex-wrap: wrap; gap: .5rem; }
.filter-btn {
  background: var(--navy-700);
  border: 1px solid var(--border-dark);
  color: var(--text-muted);
  border-radius: 50rem;
  padding: .45rem 1rem;
  font-size: .9rem;
  font-weight: 600;
  transition: all .25s ease;
}
.filter-btn i { margin-right: .35rem; }
.filter-btn:hover { border-color: rgba(240,224,0,.5); color: var(--accent); }
.filter-btn.active {
  background: var(--gradient);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 18px rgba(21,155,112,.35);
}

.shot-card {
  background: var(--navy-700);
  border: 1px solid var(--border-dark);
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  transition: transform .25s ease, border-color .25s ease;
}
.shot-card:hover { transform: translateY(-5px); border-color: rgba(240,224,0,.45); }
.shot-thumb { position: relative; aspect-ratio: 4/3; overflow: hidden; background: #0a0f14; }
.shot-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .5s ease; }
.shot-card:hover .shot-thumb img { transform: scale(1.05); }
.shot-overlay {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  background: rgba(3, 23, 15, .45);
  opacity: 0;
  transition: opacity .3s ease;
}
.shot-overlay i {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: var(--gradient);
  color: #fff;
  border-radius: 50%;
  font-size: 1.3rem;
  box-shadow: 0 8px 20px rgba(0,0,0,.4);
  transform: translateY(8px);
  transition: transform .3s ease;
}
.shot-card:hover .shot-overlay { opacity: 1; }
.shot-card:hover .shot-overlay i { transform: translateY(0); }
.shot-badge {
  position: absolute; top: 10px; left: 10px;
  background: rgba(3, 23, 15, .8);
  backdrop-filter: blur(4px);
  color: var(--accent);
  font-weight: 600;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  border: 1px solid rgba(240,224,0,.35);
  padding: .3rem .6rem;
  border-radius: 50rem;
}
.shot-meta {
  display: flex; align-items: center; justify-content: space-between;
  gap: .75rem;
  padding: .9rem 1rem;
}
.shot-info { min-width: 0; }
.shot-org {
  display: block;
  color: #fff;
  font-weight: 600;
  font-size: .9rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.shot-domain {
  display: block;
  color: var(--text-muted);
  font-size: .78rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color .2s;
}
.shot-domain:hover { color: var(--accent); }
.shot-like {
  width: 34px; height: 34px;
  flex-shrink: 0;
  display: grid; place-items: center;
  border: 1px solid var(--border-dark);
  border-radius: 50%;
  color: var(--text-muted);
  font-size: .95rem;
  transition: all .25s ease;
}
.shot-like:hover { color: #ff5c7a; border-color: #ff5c7a; transform: scale(1.1); }

/* ---------- Insight gallery ---------- */
.insight-gallery { columns: 3; column-gap: 1rem; }
.insight-item {
  display: block;
  margin-bottom: 1rem;
  border-radius: 14px;
  overflow: hidden;
  break-inside: avoid;
  border: 1px solid var(--border-dark);
  position: relative;
}
.insight-item img { width: 100%; display: block; transition: transform .5s ease, opacity .3s ease; }
.insight-item::after {
  content: '\F64D';
  font-family: 'bootstrap-icons';
  position: absolute; inset: 0;
  display: grid; place-items: center;
  background: rgba(3, 23, 15, .45);
  color: #fff;
  font-size: 2.2rem;
  opacity: 0;
  transition: opacity .3s ease;
}
.insight-item:hover::after { opacity: 1; }
.insight-item:hover img { transform: scale(1.04); }

@media (max-width: 991px) { .insight-gallery { columns: 2; } }
@media (max-width: 575px) { .insight-gallery { columns: 1; } }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0;
  z-index: 2000;
  background: rgba(3, 23, 15, .94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
  padding: 1rem;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-tools {
  position: absolute;
  top: 20px; left: 20px;
  z-index: 12;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.lightbox-zoom-level {
  color: #fff;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  padding: .35rem .75rem;
  border-radius: 20px;
  font-size: .85rem;
  font-weight: 600;
  min-width: 3.6rem;
  text-align: center;
}
.lightbox-figure {
  max-width: min(900px, 92vw);
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}
.lightbox-figure.zoomed { overflow: auto; cursor: grab; }
.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
}
.lightbox-figure.zoomed .lightbox-img {
  max-width: none;
  max-height: none;
  border-radius: 0;
}
.lightbox-caption { color: var(--text-muted); margin-top: .8rem; font-weight: 500; }
.lightbox-btn { position: absolute; width: 46px; height: 46px; display: grid; place-items: center; background: var(--gradient); color: #fff; border: none; border-radius: 50%; font-size: 1.3rem; cursor: pointer; z-index: 10; box-shadow: 0 8px 20px rgba(21,155,112,.4); transition: transform .2s ease; }
.lightbox-btn:hover { transform: scale(1.1); }
.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-prev:hover { transform: translateY(-50%) scale(1.1); }
.lightbox-next:hover { transform: translateY(-50%) scale(1.1); }
.lightbox-tools .lightbox-btn { position: static; width: 40px; height: 40px; font-size: 1.1rem; background: rgba(255,255,255,.12); box-shadow: none; }
.lightbox-tools .lightbox-btn:hover { background: var(--gradient); }

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--gradient);
  color: #fff;
  border-radius: 12px;
  font-size: 1.1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .3s ease, transform .3s ease, visibility .3s;
  box-shadow: 0 8px 24px rgba(21,155,112,.4);
  z-index: 1050;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { color: #fff; }

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .section { padding: 64px 0; }
  .hero { padding: 120px 0 80px; }
  .service-thumb { height: 130px; }

  /* Mobile services dropdown */
  .navbar .dropdown-menu {
    min-width: 0;
    width: 100%;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: none;
    margin-top: .35rem;
  }
  .navbar .dropdown-menu::before { display: none; }
  .navbar .dropdown-item { padding: .6rem .75rem; font-size: .95rem; }

  /* Inner page hero */
  .page-hero { min-height: auto; padding: 130px 0 60px; }
  .hero-badge { max-width: 100%; }
  .hero-title { font-size: clamp(2rem, 8vw, 2.8rem); }
  .hero-sub { font-size: 1rem; }

  /* Disable horizontal AOS slide-ins below lg — stacked columns sliding from
     the sides caused blank space on the left and 100px horizontal overflow */
  [data-aos="fade-right"], [data-aos="fade-left"] {
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
  }
}

@media (max-width: 575px) {
  .about-badge { left: 12px; bottom: 12px; padding: .8rem 1rem; }
  .about-badge .num { font-size: 1.5rem; }
  .testimonial-text { font-size: 1rem; }

  /* Compact forms & cards on phones */
  .contact-card { padding: 1.4rem; }
  .contact-info-item { padding: .8rem .9rem; }
  .contact-info-item a { font-size: .98rem; }
  .contact-info-icon { width: 42px; height: 42px; font-size: 1.15rem; }
  .cta-panel { padding: 1.6rem; }
  .footer { padding: 48px 0 20px; }
  .footer .col-6 { flex: 0 0 100%; max-width: 100%; }
  .service-body { padding: 1.2rem; }
  .mv-card { padding: 1.5rem; }
}
