/* ----------------------------- */
.text-left {
  text-align: left;
}

.text-justify {
  text-align: justify;
}

/* ----------------------------- */
.tab-content img {
  width: 400px;
  height: 350px;
  object-fit: cover;
  border-radius: 5px;
  transition: all 0.3s ease;
}

@media (max-width: 992px) {
  .tab-content img {
    width: 100%;
    height: 100%;
    max-height: 400px;
  }
}

@media (max-width: 768px) {
  .tab-content img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
}

/* ------------------------------ */
.drone-wrapper {
  position: absolute;
  bottom: 0;
  left: 5%;
  z-index: 1;
  /* pointer-events: none; */
  opacity: 0;
  transform: translate(250%, -250%);
  transition:
    transform 3.2s ease-out,
    opacity 1.2s ease-out;
}

/* When section is in view */
.drone-wrapper.in-view {
  opacity: 1;
  transform: translateX(0);
  /* moves to normal position */
}

/* Drone animation motion after entry */
.drone-animation {
  width: 600px;
  height: auto;
  animation: droneFly 8s ease-in-out infinite;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.3));
}

/* Keyframes for smooth drone movement */
@keyframes droneFly {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  25% {
    transform: translate(25px, -20px) rotate(3deg);
  }

  50% {
    transform: translate(0px, -35px) rotate(-3deg);
  }

  75% {
    transform: translate(-25px, -20px) rotate(2deg);
  }

  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}

@media (max-width: 992px) {
  .drone-wrapper {
    right: 5%;
    bottom: 20px;
    transform: translateX(100%);
  }
}

@media (max-width: 768px) {
  .drone-animation {
    width: 180px;
  }

  .drone-wrapper {
    right: 5%;
    bottom: -10px;
    transform: translateX(50%);
    opacity: 0.6;
  }
}

@media (max-width: 1200px) {
  .drone-animation {
    width: 280px;
  }

  .drone-wrapper {
    right: 5%;
    bottom: -10px;
    transform: translateX(50%);
    opacity: 0.6;
  }
}

/* --------------------------- */
.jarallax {
  min-height: 350px;
  transition: all 0.5s ease-in-out;
}

.service-block {
  transition: all 0.5s ease-in-out;
}

.service-block:hover .jarallax {
  opacity: 0;
}

.service-btn {
  transition: all 0.5s ease-in-out;
}

.service-block:hover .service-btn {
  color: var(--dark-color);
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.service-wrapper {
  position: relative !important;
  width: 100% !important;
  min-height: 70vh !important;
  overflow: hidden !important;
}

.col-nopadd {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.service-image-thumbs {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  z-index: 0 !important;
}

.service-image-thumb {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity 0.6s ease-in-out !important;
}

.service-image-thumb.active {
  opacity: 1 !important;
}

.home-service-box {
  position: relative !important;
  z-index: 1 !important;
  color: #fff !important;
  padding: 40px !important;
  height: 70vh !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  background: rgba(0, 0, 0, 0.1) !important;
  backdrop-filter: blur(0px) !important;
  transition: all 0.4s ease !important;
}

.home-service-box:hover {
  backdrop-filter: blur(4px) !important;
  transform: scale(1.02) !important;
}

.home-service-box .title {
  font-size: 28px !important;
  font-weight: 700 !important;
  margin-bottom: 10px !important;
}

.home-service-box p {
  max-height: 0 !important;
  opacity: 0 !important;
  overflow: hidden !important;
  transition: all 0.4s ease !important;
  margin-bottom: 0 !important;
}

.home-service-box:hover p {
  max-height: 120px !important;
  opacity: 1 !important;
}

.home-service-box span.count-static,
.home-service-box span.count-absolute {
  font-size: 36px !important;
  font-weight: 800 !important;
  position: absolute !important;
  top: 40px !important;
  left: 40px !important;
  transition: all 0.4s ease !important;
}

.home-service-box span.count-static {
  opacity: 0 !important;
  transform: scale(0.1) !important;
}

.home-service-box:hover span.count-static {
  opacity: 1 !important;
  transform: scale(1) !important;
}

.home-service-box:hover span.count-absolute {
  opacity: 0 !important;
  transform: scale(4) !important;
}

@media (max-width: 767px) {
  .home-service-box {
    height: auto !important;
    padding: 25px !important;
    border-radius: 12px !important;
    margin-bottom: 20px !important;
  }

  .service-image-thumbs {
    display: none !important;
  }
}

/* ---------Creations Section-------- */
.latest-creations {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.latest-creations h1 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--bs-heading-color, #1f2a2e);
  margin-bottom: 10px;
}

.latest-creations p {
  font-size: 0.9rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

/*----Gallery Layout-----*/
.gallery {
  display: flex;
  align-items: stretch;
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  height: 400px;
  margin: 50px auto 0;
  overflow: hidden;
}

/* Each card */
.gallery-item {
  position: relative;
  flex: 1 1 20%;
  /* 5 equal parts */
  height: 100%;
  min-width: 0;
  max-width: none;
  overflow: hidden;
  border-radius: 10px;
  transition:
    flex 0.8s ease,
    transform 0.6s ease;
  will-change: flex, transform;
  cursor: pointer;
}

/* Image inside */
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.gallery:hover .gallery-item:not(:hover) {
  flex: 0.5 1 0%;
}

.gallery-item:hover {
  flex: 3 1 0%;
  transform: scale(1.02);
  z-index: 2;
}

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

/* Overlay */
.overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.overlay h2 {
  font-size: 1.4rem;
  margin-bottom: 5px;
}

.overlay p {
  font-size: 0.9rem;
  color: #ddd;
  line-height: 1.4;
}

@media (max-width: 992px) {
  .gallery {
    flex-direction: column;
    height: auto;
    gap: 16px;
  }

  .gallery-item {
    width: 100%;
    height: 300px;
    flex: 1 1 auto;
  }

  .gallery:hover .gallery-item:not(:hover),
  .gallery-item:hover {
    flex: 1 1 auto;
    transform: none;
  }
}

/* ----------------------------------- */
.about-image {
  background-image: url("../images/backgrounds/services_aerial.png");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  min-height: 100%;
}

@media (max-width: 991px) {
  .about-image {
    height: 300px;
  }
}

/* ------------------------------------ */

.get-in-touch .contact-info h5 {
  color: var(--bs-heading-color, #1f2a2e);
}

.get-in-touch .contact-info a {
  transition: color 0.3s ease;
}

.get-in-touch .contact-info a:hover {
  color: var(--bs-primary, #ffffff);
}

.get-in-touch .form-control {
  border: none;
  border-bottom: 2px solid #222;
  border-radius: 0;
  background-color: transparent;
}

.get-in-touch .form-control:focus {
  box-shadow: none;
  border-color: var(--bs-primary, #ffffff);
}

.get-in-touch .btn {
  background-color: var(--bs-primary, #ffffff);
  color: #fff;
  border: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  transition: all 0.3s ease;
}

.get-in-touch .btn:hover {
  background-color: #ffffff;
  transform: translateY(-2px);
}

/* ----------------------------------- */

.slider-container {
  width: 100%;
  height: 80vh;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.now-showing {
  position: absolute;
  top: 20px;
  left: 20px;
  color: #980000;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

.now-showing::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #980000;
  border-radius: 50%;
}

.accordion-slider {
  display: flex;
  height: 100%;
  position: relative;
}

.slide {
  flex: 1;
  position: relative;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  filter: grayscale(1);
}

.slide:hover {
  filter: grayscale(0);
}

.slide.active {
  flex: 2.5;
  filter: grayscale(0);
}

.slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 80%);
}

.slide-content {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  color: white;
  z-index: 2;
}

.slide.active .slide-content {
  bottom: 80px;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.slide-number {
  font-size: 64px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1;
  position: absolute;
  bottom: 30px;
  left: 30px;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.active .slide-number {
  bottom: auto;
  top: -50px;
  font-size: 48px;
  left: 0;
}

.drone-brand {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 5px;
  transform: rotate(-90deg);
  transform-origin: left bottom;
  position: absolute;
  bottom: 100px;
  left: 30px;
  white-space: nowrap;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.active .drone-brand {
  transform: rotate(0deg);
  position: static;
  transform-origin: unset;
}

.drone-name {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0s;
}

.slide.active .drone-name {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.drone-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0s;
}

.slide.active .drone-subtitle {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.drone-specs {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0s;
}

.slide.active .drone-specs {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.spec-row {
  display: flex;
  /* justify-content: space-between; */
  margin-bottom: 6px;
  font-size: 14px;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.active .spec-row {
  opacity: 1;
  transform: translateX(0);
}

.slide.active .spec-row:nth-child(1) {
  transition-delay: 0.6s;
}

.slide.active .spec-row:nth-child(2) {
  transition-delay: 0.65s;
}

.slide.active .spec-row:nth-child(3) {
  transition-delay: 0.7s;
}

.slide.active .spec-row:nth-child(4) {
  transition-delay: 0.75s;
}

.spec-label {
  color: white;
  font-weight: 600;
}

.spec-value {
  color: white;
  font-weight: 500;
}

.performance-badges {
  display: flex;
  gap: 12px;
  margin-top: 15px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0s;
}

.slide.active .performance-badges {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.8s;
}

.badges {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.active .badges {
  opacity: 1;
  transform: scale(1);
}

.slide.active .badges:nth-child(1) {
  transition-delay: 0.85s;
}

.slide.active .badges:nth-child(2) {
  transition-delay: 0.9s;
}

.slide.active .badges:nth-child(3) {
  transition-delay: 0.95s;
}

.badges-icon {
  width: 8px;
  height: 8px;
  background: #980000;
  border-radius: 50%;
}

.add-button {
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: 32px;
  height: 32px;
  background: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s ease;
  z-index: 3;
}

.add-button::before,
.add-button::after {
  content: "";
  position: absolute;
  background: #980000;
  transition: all 0.4s ease;
}

.add-button::before {
  width: 12px;
  height: 2px;
}

.add-button::after {
  width: 2px;
  height: 12px;
  transform: rotate(0deg);
}

.slide.active .add-button::before {
  transform: rotate(0deg);
}

.slide.active .add-button::after {
  opacity: 0;
  transform: scale(0);
}

.navigation-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.1);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 4;
  backdrop-filter: blur(2px);
}

.nav-prev {
  left: 20px;
}

.nav-next {
  right: 20px;
}

.navigation-arrows:hover {
  background: rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .slider-container {
    height: auto;
    min-height: 70vh;
  }

  .accordion-slider {
    flex-direction: column;
  }

  .slide {
    flex: unset;
    min-height: 70vh;
  }

  .slide.active {
    flex: unset;
  }
}

/* ------------------------------------ */

.equal-height-row {
  display: flex;
  flex-wrap: wrap;
}

.equal-height-row > [class*="col-"] {
  display: flex;
  flex-direction: column;
}

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

.service-list {
  list-style-type: disc;
  /* padding-left: 2rem; */
  margin: 0;
}

.service-list li {
  margin-bottom: 0.9rem;
  line-height: 1.7;
  text-align: justify;
}

/* ------------------------------------------ NEW Header -------------------------------------------- */

html {
  scroll-behavior: smooth;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: 160px;
  background: transparent;
  border-bottom: 2px solid transparent;
  box-shadow: none;
  transition:
    background 0.38s ease,
    border-color 0.38s ease,
    box-shadow 0.38s ease,
    height 0.5s ease;
}

header.scrolled {
  background: rgb(161, 20, 20);
  height: 140px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

/* ── NAV CONTAINER ── */
.nav-container {
  max-width: 1750px;
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* ════════════════════════════════════════
       LOGO — dual image crossfade
════════════════════════════════════════ */
.logo {
  text-decoration: none;
  flex-shrink: 0;
}
.logo-wrap {
  position: relative;
  width: 200px;
  height: 120px;
}
.logo-wrap img {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 120px;
  width: auto;
  transition: opacity 0.38s ease;
}
/* at top = transparent → show white logo */
.logo-wrap .logo-dark {
  opacity: 1;
}
.logo-wrap .logo-white {
  opacity: 0;
}
/* scrolled → show dark logo */
header.scrolled .logo-wrap .logo-dark {
  opacity: 0;
}
header.scrolled .logo-wrap .logo-white {
  opacity: 1;
}

/* ════════════════════════════════════════
       CENTER NAV
════════════════════════════════════════ */
nav {
  display: flex;
  align-items: center;
  gap: 2px; /* gap handled by padding on each link */
}

/* All nav links — ALWAYS WHITE, no overrides allowed */
.nav-link,
header .nav-link,
header nav .nav-link,
header.scrolled .nav-link,
header.scrolled nav .nav-link {
  font-size: 15.5px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff !important;
  text-decoration: none !important;
  padding: 8px 18px;
  white-space: nowrap;
  position: relative;
  transition: color 0.2s;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 18px;
  right: 18px;
  height: 2px;
  background: rgb(161, 20, 20);
  border-radius: 1px;
  transform: scaleX(0);
  transition: transform 0.24s ease;
}
.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

/* ── SERVICES ITEM ──
Key fix: extend the hover zone so the gap between
the nav and the dropdown box is bridged by a
transparent pseudo-element — no more losing hover.
── */
.services-item {
  position: static;
}

/* The clickable label — it's an <a> tag so it navigates AND triggers dropdown */
.services-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.services-trigger .chev {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 2.5;
  transition:
    transform 0.3s ease,
    stroke 0.2s;
  flex-shrink: 0;
}
.services-item:hover .chev {
  transform: rotate(180deg);
  stroke: rgb(161, 20, 20);
}

/* ════════════════════════════════════════
MEGA DROPDOWN
FIX: max-height limits the dropdown to the visible viewport below the
header, and overflow: hidden on .mega-wrap ensures nothing bleeds out.
The sidebar and content area each scroll independently via overflow-y: auto.
════════════════════════════════════════ */
.mega-wrap {
  position: fixed;
  top: 160px;
  left: 0;
  width: 100%;
  max-height: calc(100vh - 160px);
  padding: 0 32px 24px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s;
  z-index: 999;
  overflow-y: auto;
}
.mega-wrap.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: all;
}

/* THE BOX */
.mega-box {
  max-width: 1700px;
  background: rgb(161, 20, 20);
  margin: 0 auto;
  display: flex;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
  min-height: 0;
}

/* ── SIDEBAR ── */
.mega-sidebar {
  width: 350px;
  flex-shrink: 0;
  background: rgb(161, 20, 20);
  padding: 30px;
  overflow-y: auto;
  max-height: calc(
    100vh - 160px - 24px
  );
}
.sidebar-link {
  display: flex;
  align-items: center;
  padding: 18px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  /* text-transform: uppercase; */
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  border-radius: 10px;
  transition:
    background 0.15s,
    color 0.15s,
    border-color 0.15s;
  cursor: pointer;
}
.sidebar-link svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: rgba(255, 255, 255, 0.45);
  stroke-width: 2.5;
  flex-shrink: 0;
  transition: stroke 0.15s;
}
.sidebar-link:hover,
.sidebar-link.active {
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  border-left-color: #fff;
}
.sidebar-link:hover svg,
.sidebar-link.active svg {
  stroke: #fff;
}

/* ── CONTENT AREA ── */
.mega-content {
  flex: 1;
  background: var(--red);
  padding: 30px 24px 26px;
  overflow-y: auto;
  min-height: 0;
  max-height: calc(
    100vh - 160px - 24px
  ); 
}
.service-panel {
  display: none;
}
.service-panel.active {
  display: block;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.service-card {
  background: transparent;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none !important;
  color: #ffffff !important;
  display: block;
  transition: transform 0.22s ease;
}
.service-card:hover,
.service-card:focus,
.service-card:active,
.service-card:visited {
  color: #ffffff !important;
  text-decoration: none !important;
  transform: translateY(-4px);
}

/* Image container — rounded corners, clips zoom */
.card-img-wrap {
  width: 100%;
  height: 170px;
  overflow: hidden;
  border-radius: 10px;
  background: #b00d26;
  display: block;
}
.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 10px;
  transition: transform 0.35s ease;
}
.service-card:hover .card-img-wrap img {
  transform: scale(1.05);
}

/* Emoji placeholder (used when no real image) */
.card-img-placeholder {
  width: 100%;
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.15);
}

/* Text sits on the red background — no white box */
.card-body {
  padding: 12px 4px 6px;
  background: transparent;
}
.card-title {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff !important;
  letter-spacing: 0.3px;
  margin-bottom: 8px;
}
.card-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.82) !important;
  line-height: 1.55;
}

.panel-show-more {
  margin-top: 16px;
  text-align: right;
}
.show-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Rajdhani", sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;

  padding: 8px 22px;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.show-more-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff !important;
}
.show-more-btn svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.5;
}
.service-card:hover .card-title,
.service-card:focus .card-title {
  color: #ffffff !important;
}
.service-card:hover .card-desc,
.service-card:focus .card-desc {
  color: rgba(255, 255, 255, 0.82) !important;
}

/* ════════════════════════════════════════
       RIGHT GROUP — contact + Get Quote
    ════════════════════════════════════════ */
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.nav-contact {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #ffffff;
  text-decoration: none;
  font-size: 15.5px;
  white-space: nowrap;
  transition: color 0.2s;
}
.nav-contact:hover {
  color: rgba(255, 255, 255, 0.75);
}
.nav-contact svg.fill-icon {
  width: 15px;
  height: 15px;
  fill: rgb(161, 20, 20);
  flex-shrink: 0;
}
.nav-contact svg.stroke-icon {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: rgb(161, 20, 20);
  stroke-width: 2;
  flex-shrink: 0;
}

/* GET QUOTE BUTTON */
.nav-cta {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  background: rgb(161, 20, 20);
  border: 2px solid rgb(161, 20, 20);
  padding: 8px 20px;
  border-radius: 4px;
  text-decoration: none;
  flex-shrink: 0;
  transition:
    background 0.22s ease,
    color 0.22s ease;
  white-space: nowrap;
}
.nav-cta:hover {
  background: transparent;
  color: #fff;
}

/* ════════════════════════════════════════
       HAMBURGER
    ════════════════════════════════════════ */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: none;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ════════════════════════════════════════
       MOBILE MENU
    ════════════════════════════════════════ */
.mobile-menu {
  display: none;
  position: fixed;
  top: 160px; /* sits flush below the fixed header */
  left: 0;
  right: 0;
  bottom: 0; /* stretches to bottom of screen */
  background: #161616;
  z-index: 1050;
  overflow-y: auto;
  padding-top: 8px; /* small breathing room at top of menu list */
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.open {
  transform: translateX(0);
}

.mob-link {
  display: block;
  padding: 16px 28px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ccc;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition:
    color 0.2s,
    background 0.2s;
}
.mob-link:hover {
  color: #fff;
  background: rgba(200, 16, 46, 0.1);
}

.mob-svc-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.mob-svc-toggle svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  transition: transform 0.3s;
}
.mob-svc-toggle.open svg {
  transform: rotate(180deg);
}

.mob-svc-list {
  display: none;
  background: var(--red);
}
.mob-svc-list.open {
  display: block;
}
.mob-svc-item {
  display: block;
  padding: 11px 28px 11px 40px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    color 0.2s,
    background 0.2s;
}
.mob-svc-item::before {
  content: "→ ";
}
.mob-svc-item:hover {
  color: #fff;
  background: rgba(0, 0, 0, 0.15);
}

.mob-cta-wrap {
  padding: 24px 28px;
}
.mob-cta {
  display: block;
  text-align: center;
  background: var(--red);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 15px;
  border-radius: 5px;
  text-decoration: none;
}
.mob-contact {
  padding: 8px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mob-contact a {
  color: #888;
  font-size: 13.5px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mob-contact a svg {
  width: 15px;
  height: 15px;
  fill: var(--red);
}

@keyframes bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(7px);
  }
}
.scroll-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(18px, 3vw, 36px);
  letter-spacing: 2px;
  color: #2a2a2a;
  border-top: 1px solid #1a1a1a;
}
.scroll-section:nth-child(odd) {
  background: #0d0d0d;
}
.scroll-section:nth-child(even) {
  background: #111;
}
.scroll-section span {
  color: rgb(161, 20, 20);
}

/* ════════════════════════════════════════
       RESPONSIVE
    ════════════════════════════════════════ */
@media (max-width: 1280px) {
  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .nav-contact {
    display: none;
  }
}
@media (max-width: 1024px) {
  :root {
    --nav-h: 120px;
  }
  nav,
  .nav-right {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .mobile-menu {
    display: block;
  }
  .mega-wrap {
    display: none;
  }
}
@media (max-width: 860px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .nav-container {
    padding: 0 20px;
  }
  .cards-grid {
    grid-template-columns: 1fr;
  }
}

.mega-content::-webkit-scrollbar {
  width: 4px;
}
.mega-content::-webkit-scrollbar-track {
  background: transparent;
}
.mega-content::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 4px;
}

/* ↓ FIX: matching scrollbar style for sidebar */
.mega-sidebar::-webkit-scrollbar {
  width: 4px;
}
.mega-sidebar::-webkit-scrollbar-track {
  background: transparent;
}
.mega-sidebar::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 4px;
}

/* ══════════════════════════════
       COMING SOON FULL PAGE
    ══════════════════════════════ */
.cs-page {
  min-height: 100vh;
  background: #0a0a0a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
}

/* animated dot-grid background */
.cs-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(200, 16, 46, 0.18) 1px,
    transparent 1px
  );
  background-size: 36px 36px;
  animation: gridDrift 30s linear infinite;
}
@keyframes gridDrift {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 72px 72px;
  }
}

/* large red glow */
.cs-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(200, 16, 46, 0.14) 0%,
    transparent 65%
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: glowPulse 5s ease-in-out infinite;
}
@keyframes glowPulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.18);
    opacity: 0.6;
  }
}

/* floating particles */
.cs-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.cs-particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(200, 16, 46, 0.55);
  animation: particleRise linear infinite;
}
@keyframes particleRise {
  0% {
    transform: translateY(110vh) scale(0);
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  92% {
    opacity: 0.8;
  }
  100% {
    transform: translateY(-80px) scale(1.4);
    opacity: 0;
  }
}

/* ── CONTENT ── */
.cs-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 780px;
  animation: contentIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes contentIn {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* logo */
.cs-logo {
  display: inline-block;
  margin-bottom: 36px;
  animation: contentIn 0.85s 0.05s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.cs-logo img {
  height: 52px;
  width: auto;
}

/* badge */
.cs-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(200, 16, 46, 0.1);
  border: 1px solid rgba(200, 16, 46, 0.3);
  border-radius: 50px;
  padding: 7px 20px;
  font-family: "Rajdhani", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c8102e;
  margin-bottom: 26px;
  animation: contentIn 0.85s 0.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.cs-badge-dot {
  width: 6px;
  height: 6px;
  background: #c8102e;
  border-radius: 50%;
  animation: dotBlink 1.5s ease-in-out infinite;
}
@keyframes dotBlink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.15;
  }
}

/* page name */
.cs-page-name {
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(13px, 1.8vw, 16px);
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 12px;
  animation: contentIn 0.85s 0.15s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* main heading */
.cs-heading {
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(44px, 8.5vw, 90px);
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
  letter-spacing: 1px;
  margin-bottom: 6px;
  animation: contentIn 0.85s 0.18s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.cs-heading .accent {
  color: #c8102e;
}

/* animated line */
.cs-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 22px auto 22px;
  animation: contentIn 0.85s 0.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.cs-line-bar {
  height: 2px;
  width: 60px;
  background: linear-gradient(90deg, transparent, #c8102e);
  border-radius: 2px;
}
.cs-line-bar:last-child {
  transform: scaleX(-1);
}
.cs-line-icon {
  width: 8px;
  height: 8px;
  background: #c8102e;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(200, 16, 46, 0.8);
}

/* description */
.cs-desc {
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.75;
  max-width: 500px;
  margin: 0 auto 38px;
  animation: contentIn 0.85s 0.22s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* countdown */
.cs-countdown {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 44px;
  flex-wrap: wrap;
  animation: contentIn 0.85s 0.28s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.cs-box {
  position: relative;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  padding: 20px 22px 15px;
  min-width: 88px;
  text-align: center;
  overflow: hidden;
  transition:
    border-color 0.3s,
    background 0.3s;
}
.cs-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200, 16, 46, 0.06), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.cs-box:hover {
  border-color: rgba(200, 16, 46, 0.4);
  background: rgba(200, 16, 46, 0.04);
}
.cs-box:hover::before {
  opacity: 1;
}
.cs-num {
  font-family: "Rajdhani", sans-serif;
  font-size: 46px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  display: block;
  transition: color 0.3s;
}
.cs-box:hover .cs-num {
  color: #ff3355;
}
.cs-unit {
  font-family: "Rajdhani", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  margin-top: 5px;
  display: block;
}

/* notify form */
.cs-notify {
  animation: contentIn 0.85s 0.34s cubic-bezier(0.22, 1, 0.36, 1) both;
  margin-bottom: 40px;
}
.cs-notify-hint {
  font-family: "Rajdhani", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 14px;
  display: block;
}
.cs-form {
  display: flex;
  max-width: 460px;
  margin: 0 auto;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  transition: border-color 0.3s;
}
.cs-form:focus-within {
  border-color: rgba(200, 16, 46, 0.55);
}
.cs-email {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: none;
  outline: none;
  padding: 14px 18px;
  font-family: "Open Sans", sans-serif;
  font-size: 13.5px;
  color: #fff;
  min-width: 0;
}
.cs-email::placeholder {
  color: rgba(255, 255, 255, 0.25);
}
.cs-submit {
  background: #c8102e;
  border: none;
  padding: 14px 22px;
  font-family: "Rajdhani", sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}
.cs-submit:hover {
  background: #e0162f;
}
.cs-success {
  display: none;
  font-family: "Rajdhani", sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #4ade80;
  margin-top: 14px;
}

/* sub-services pills */
.cs-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  margin-bottom: 44px;
  animation: contentIn 0.85s 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.cs-pills-label {
  width: 100%;
  font-family: "Rajdhani", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
  margin-bottom: 4px;
}
.cs-pill {
  font-family: "Rajdhani", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50px;
  padding: 5px 15px;
  transition: all 0.2s;
}
.cs-pill:hover {
  color: #fff;
  border-color: rgba(200, 16, 46, 0.45);
  background: rgba(200, 16, 46, 0.07);
}

/* actions row */
.cs-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  animation: contentIn 0.85s 0.46s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.cs-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Rajdhani", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  background: #c8102e;
  border: 2px solid #c8102e;
  padding: 11px 26px;
  border-radius: 5px;
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s;
}
.cs-btn-primary:hover {
  background: transparent;
  color: #fff;
}
.cs-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Rajdhani", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.cs-btn-ghost:hover {
  color: #fff;
}
.cs-btn-ghost svg,
.cs-btn-primary svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
}
.cs-btn-ghost:hover svg {
  transform: translateX(-3px);
}
.cs-btn-ghost svg {
  transition: transform 0.2s;
}

/* divider dot */
.cs-actions-sep {
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}

/* progress bar */
.cs-progress-wrap {
  margin: 44px auto 0;
  max-width: 340px;
  animation: contentIn 0.85s 0.52s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.cs-progress-label {
  display: flex;
  justify-content: space-between;
  font-family: "Rajdhani", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.22);
  margin-bottom: 8px;
}
.cs-progress-track {
  height: 3px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 3px;
  overflow: hidden;
}
.cs-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #c8102e, #ff3355);
  border-radius: 3px;
  animation: progressFill 1.8s 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes progressFill {
  from {
    width: 0;
  }
  to {
    width: var(--progress, 65%);
  }
}

@media (max-width: 600px) {
  .cs-box {
    min-width: 72px;
    padding: 14px 14px 10px;
  }
  .cs-num {
    font-size: 36px;
  }
  .cs-actions-sep {
    display: none;
  }
}
