:root {
  --bg: #06111f;
  --panel: rgba(11, 24, 43, 0.7);
  --panel-border: rgba(43, 127, 255, 0.15);
  --text: #ebf4ff;
  --muted: #97acc8;
  --line: rgba(151, 172, 200, 0.15);
  --primary: #2b7fff;
  --primary-hover: #1a6ced;
  --primary-ink: #ffffff;
  --chip: #97acc8;
}

* {
  box-sizing: border-box;
}

/* Lenis requires html and body to not have smooth scroll or overflow hidden that disrupts native scroll */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

body {
  margin: 0;
  font-family: 'Sora', sans-serif;
  color: var(--text);
  background-color: var(--bg);
  /* Subtle glow spots */
  background-image:
    radial-gradient(circle at 15% 15%, rgba(43, 127, 255, 0.08), transparent 30%),
    radial-gradient(circle at 85% 85%, rgba(43, 127, 255, 0.05), transparent 35%);
  background-attachment: fixed;
  overflow-x: hidden;
}

/* Typography Enhancements */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  margin-top: 0;
}

/* Nav */
.site-nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(6, 17, 31, 0.65);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 0.3s ease;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
}

.brand {
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  font-size: 28px;
  font-family: 'Manrope', sans-serif;
  letter-spacing: -0.5px;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  margin: 0 16px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-cta {
  background: var(--primary);
  color: var(--primary-ink);
  text-decoration: none;
  border-radius: 999px;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.nav-cta:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  color: #fff;
}

/* Vexogen Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #06111f;
}

.hero-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6, 17, 31, 0.9) 0%, rgba(6, 17, 31, 0.6) 100%);
  z-index: 2;
}

.hero-video-shell {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 0 20px;
}

.hero-content-center {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(43, 127, 255, 0.1);
  border: 1px solid rgba(43, 127, 255, 0.2);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.hero-badge i {
  font-size: 16px;
}

.hero-title {
  font-size: clamp(28px, 4.5vw, 54px);
  line-height: 1.15;
  margin: 0 0 20px;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.hero-highlight {
  color: var(--primary);
}

.hero-copy {
  max-width: 700px;
  margin: 0 auto 32px;
  color: var(--text);
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.6;
  opacity: 0.9;
}


.hero-service-carousel {
  position: relative;
  margin: 0 auto 40px;
  max-width: 900px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 0;
}

.hero-service-carousel::before,
.hero-service-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90px;
  z-index: 2;
  pointer-events: none;
}

.hero-service-carousel::before {
  left: 0;
  background: linear-gradient(to right, rgba(6, 17, 31, 1), rgba(6, 17, 31, 0));
  filter: blur(2px);
}

.hero-service-carousel::after {
  right: 0;
  background: linear-gradient(to left, rgba(6, 17, 31, 1), rgba(6, 17, 31, 0));
  filter: blur(2px);
}

.hero-service-track {
  display: flex;
  width: max-content;
  gap: 30px;
  animation: serviceMarquee 24s linear infinite;
}

.hero-service-track span {
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
}

.hero-service-track span::after {
  content: "•";
  margin-left: 30px;
  color: var(--primary);
}

@keyframes serviceMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}


.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border: 0;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--primary-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(43, 127, 255, 0.25);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  backdrop-filter: blur(4px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}

/* Portfolio Section */
.portfolio-showcase {
  padding: 100px 0;
  padding-inline: clamp(24px, 6vw, 80px);
}

.services-section {
  padding: 80px clamp(24px, 6vw, 80px) 20px;
  background: #ffffff;
  border-top: 1px solid #e3ebf7;
  border-bottom: 1px solid #e3ebf7;
}

.section-container {
  max-width: 1240px;
  margin: 0 auto;
}

.section-heading.center {
  text-align: center;
  margin-bottom: 36px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #2f7bff;
  background: #2f7bff;
  padding: 10px 18px;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 8px;
}

.section-title {
  margin: 14px 0 10px;
  font-size: clamp(30px, 4vw, 52px);
  color: #1f2b3f;
}

.section-subtitle {
  color: #5d7392;
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.7;
}

.services-layout {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.service-menu {
  grid-column: span 2;
  background: #ffffff;
  border: 1px solid #d7e4f6;
  border-radius: 20px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  background: transparent;
}

.service-tab {
  width: 100%;
  border: 1px solid #d7e4f6;
  background: #f8fbff;
  color: #1f2b3f;
  border-radius: 18px;
  text-align: left;
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 14px;
  padding: 18px 16px;
  cursor: pointer;
}

.service-tab i {
  color: #1f5fd7;
  font-size: 24px;
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: #e6eefb;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-tab strong {
  display: block;
  font-size: 15px;
  font-family: 'Sora', sans-serif;
}

.service-tab span {
  color: #587094;
  font-size: 13px;
}

.service-tab.is-active {
  border-color: #bfd5f6;
  background: #ddebff;
}

.service-tab.is-active i {
  background: #1f5fd7;
  color: #fff;
}

.service-stage {
  grid-column: span 2;
  background: #ffffff;
  border: 1px solid #d7e4f6;
  border-radius: 28px;
  padding: 0;
  overflow: hidden;
  max-height: 520px;
}

.service-panel {
  display: none;
}

.service-panel.is-active {
  display: flex;
  min-height: 100px;
  flex-direction: column;
}

.service-panel-image {
  flex: 1 1 50%;
  overflow: hidden;
}

.service-panel-image img {
  display: block;
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.service-panel-copy {
  flex: 1 1 50%;
  padding: 24px 18px;
  background: #f8fbff;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.panel-tag {
  display: inline-block;
  color: #5aa0f7;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-panel-copy h3 {
  margin: 8px 0 10px;
  font-size: clamp(18px, 2.5vw, 24px);
  line-height: 1.2;
  color: #1f2b3f;
}

.service-panel-copy p {
  color: #587094;
  margin: 0;
  line-height: 1.7;
  font-size: 16px;
}

#portfolioGrid {
  row-gap: 28px;
}

.section-head {
  text-align: center;
  margin-bottom: 50px;
}

.section-head h2 {
  font-size: clamp(36px, 5vw, 64px);
  margin-bottom: 16px;
}

.section-head p {
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 18px;
}

.filter-btn {
  border: 1px solid transparent;
  background: transparent;
  color: var(--muted);
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.filter-btn.active {
  border-color: var(--line);
  background: var(--panel);
  color: var(--text);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.filter-btn:hover:not(.active) {
  color: var(--text);
}

/* Portfolio Cards */
.portfolio-card {
  display: block;
  height: 500px;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
  position: relative;
  display: flex;
  flex-direction: column;
}

.portfolio-card:hover {
  transform: none;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
  border-color: var(--panel-border);
}

.portfolio-card:focus,
.portfolio-card:focus-visible {
  outline: none;
}

.portfolio-media-wrap {
  height: calc(100% - 86px);
  min-height: 0;
  position: relative;
  overflow: hidden;
  background: #0a192f;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease, filter 0.7s ease;
  filter: brightness(0.95);
}

.portfolio-card:hover .portfolio-media {
  transform: scale(1.03);
  filter: brightness(1.1);
}

.portfolio-media-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-weight: 600;
  font-family: 'Manrope', sans-serif;
}

.video-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  border-radius: 999px;
  padding: 6px 12px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 2;
}

.quick-view {
  position: absolute;
  left: 16px;
  bottom: 16px;
  border: 0;
  background: rgba(6, 17, 31, 0.8);
  color: var(--text);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 16px;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  transform: translateY(10px);
  z-index: 2;
}

.portfolio-card:hover .quick-view {
  opacity: 1;
  transform: translateY(0);
}

.quick-view:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.portfolio-caption {
  padding: 14px 16px 16px;
  text-align: center;
  background: transparent;
  min-height: 86px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.portfolio-title {
  margin: 0;
  font-size: clamp(20px, 1.6vw, 28px);
  color: var(--text);
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.portfolio-category {
  margin: 6px 0 0;
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
}

.skeleton {
  height: 400px;
  border-radius: 24px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border: 1px solid var(--line);
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* Contact Section */

.contact-section {
  padding: 90px clamp(24px, 6vw, 80px) 120px;
  position: relative;
  background:
    linear-gradient(180deg, rgba(4, 14, 30, 0.78), rgba(4, 14, 30, 0.88)),
    url('https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
  border-top: 1px solid rgba(80, 145, 255, 0.2);
  border-bottom: 1px solid rgba(80, 145, 255, 0.2);
}

.contact-shell {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  align-items: stretch;
}

.contact-copy {
  background: rgba(5, 18, 38, 0.72);
  border: 1px solid rgba(72, 138, 255, 0.35);
  border-radius: 26px;
  padding: 36px 34px;
  backdrop-filter: blur(8px);
}

.section-title.left {
  text-align: left;
}

.section-text {
  color: #a8bad8;
  line-height: 1.7;
  font-size: 16px;
}

.contact-points {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-points span {
  color: #cdd9ec;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(161, 189, 226, 0.14);
  border: 1px solid rgba(137, 175, 226, 0.35);
  border-radius: 999px;
  padding: 10px 16px;
}

.contact-points i {
  color: #78b8ff;
}

.contact-card {
  background: rgba(5, 18, 38, 0.78);
  border: 1px solid rgba(72, 138, 255, 0.35);
  border-radius: 26px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  padding: 42px 36px;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}


.btn-block {
  width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  text-align: center;
}

.contact-card .btn-primary {
  background: linear-gradient(90deg, #4b92f2, #2d6ee2);
  border: 1px solid rgba(149, 196, 255, 0.45);
  box-shadow: 0 10px 24px rgba(45, 110, 226, 0.35);
}

.contact-card .btn-ghost {
  background: rgba(22, 42, 72, 0.7);
  border: 1px solid rgba(127, 163, 218, 0.35);
}

.contact-mini-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-mini-grid div {
  border: 1px solid rgba(127, 163, 218, 0.25);
  border-radius: 18px;
  background: rgba(161, 189, 226, 0.08);
  padding: 16px 18px;
}

.contact-mini-grid strong {
  display: block;
  color: #e4edf9;
  font-size: 16px;
}

.contact-mini-grid span {
  color: #a8bad8;
  font-size: 15px;
}

.about-enquiry-form {
  margin-top: 16px;
}

.about-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.about-field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.about-field-group.full {
  margin-top: 12px;
}

.about-field-group label {
  color: #d7e5fb;
  font-size: 13px;
  font-weight: 600;
}

.about-field-group label span {
  color: #78b8ff;
}

.about-field-group input,
.about-field-group select,
.about-field-group textarea {
  width: 100%;
  background: rgba(14, 32, 58, 0.72);
  border: 1px solid rgba(127, 163, 218, 0.35);
  border-radius: 12px;
  color: #e7f0ff;
  padding: 12px 14px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.about-field-group input::placeholder,
.about-field-group textarea::placeholder {
  color: #8ea6c8;
}

.about-field-group input:focus,
.about-field-group select:focus,
.about-field-group textarea:focus {
  border-color: #5ba3ff;
  box-shadow: 0 0 0 4px rgba(73, 142, 245, 0.2);
  background: rgba(14, 32, 58, 0.9);
}

.about-submit-btn {
  width: 100%;
  margin-top: 12px;
  border: 1px solid rgba(149, 196, 255, 0.45);
  border-radius: 999px;
  background: linear-gradient(90deg, #4b92f2, #2d6ee2);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-submit-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(45, 110, 226, 0.35);
}

.form-note {
  margin: 10px 0 0;
  color: #9eb5d6;
  font-size: 13px;
  line-height: 1.5;
}

/* Decorative blob in contact card */
.contact-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: var(--primary);
  filter: blur(80px);
  opacity: 0.2;
  border-radius: 50%;
  pointer-events: none;
}

.contact-card h3 {
  font-size: clamp(36px, 4vw, 56px);
  margin-bottom: 16px;
}

.contact-card p {
  color: var(--muted);
  margin-bottom: 32px;
  font-size: 18px;
  line-height: 1.6;
}

.form-control {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 16px;
  border: 1px solid var(--line);
  padding: 16px 20px;
  color: var(--text);
  transition: all 0.3s ease;
}

.form-control:focus {
  background: rgba(0, 0, 0, 0.4);
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(43, 127, 255, 0.1);
  outline: none;
  color: #fff;
}

.form-control::placeholder {
  color: rgba(151, 172, 200, 0.5);
}

/* Footer */

.footer {
  background: #03080f;
  border-top: 1px solid var(--line);
  padding: 72px clamp(24px, 6vw, 80px) 28px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 36px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 12px;
}

.footer-logo img {
  height: 44px;
  width: auto;
}

.footer h3,
.footer h4 {
  color: var(--text);
  font-family: 'Manrope', sans-serif;
  margin-bottom: 14px;
}

.footer h3 {
  font-size: 24px;
}

.footer h4 {
  font-size: 18px;
}

.footer p,
.footer li a {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  text-decoration: none;
}

.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer li {
  margin-bottom: 6px;
}

.footer a:hover {
  color: var(--text);
}

.footer-bottom {
  grid-column: 1 / -1;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  margin-top: 8px;
}

.footer-bottom p {
  margin: 0;
}


.footer-col h4,
.footer-col h6 {
  font-family: 'Manrope', sans-serif;
  color: var(--text);
  margin-bottom: 20px;
}

.footer-col h4 {
  font-size: 24px;
  font-weight: 800;
}

.footer-col h6 {
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-col p {
  color: var(--muted);
  margin-bottom: 12px;
  font-size: 15px;
}

.newsletter-row {
  display: flex;
  gap: 12px;
}

.newsletter-row .form-control {
  border-radius: 999px;
}

/* Lightbox */
.lightbox-wrap {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1200;
  padding: 20px;
  backdrop-filter: blur(10px);
}

.lightbox-wrap.open {
  display: flex;
  animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.lightbox-wrap img {
  max-width: min(1000px, 95vw);
  max-height: 90vh;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  object-fit: contain;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(10, 18, 30, 0.75);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

.lightbox-count {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10, 18, 30, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
  backdrop-filter: blur(4px);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.1);
}

/* WhatsApp */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 60px;
  height: 60px;
  border-radius: 999px;
  background: #1db954;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  z-index: 999;
  box-shadow: 0 10px 24px rgba(29, 185, 84, 0.3);
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 14px 32px rgba(29, 185, 84, 0.4);
  color: #fff;
}

.scroll-top-btn {
  position: fixed;
  right: 24px;
  bottom: 96px;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(127, 163, 218, 0.35);
  background: rgba(14, 32, 58, 0.9);
  color: #e7f0ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s ease;
}

.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background: #2d6ee2;
  color: #fff;
}

/* GSAP utility classes */
.gsap-reveal {
  visibility: hidden;
}

.gsap-fade {
  visibility: hidden;
}

.line {
  overflow: hidden;
  padding-bottom: 2px;
}

/* For split text */

@media (max-width: 992px) {
  .services-layout {
    grid-template-columns: 1fr;
  }

  .service-menu {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .service-stage {
    grid-column: auto;
  }

  .service-panel.is-active {
    flex-direction: column;
    min-height: auto;
  }

  .service-panel-image img {
    height: 260px;
  }

  .service-panel-copy {
    min-height: auto;
  }

  .footer {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 56px 24px 22px;
  }

  .portfolio-media-wrap {
    min-height: 0;
  }

  .contact-card {
    padding: 40px 24px;
  }

  .contact-shell {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    padding: 24px;
  }

  .about-form-grid {
    grid-template-columns: 1fr;
  }

  .hero-block {
    padding: 120px 0 60px;
  }

  .lightbox-prev {
    left: 12px;
  }

  .lightbox-next {
    right: 12px;
  }
}
