:root {
  --brand: #1d6fea;
  --brand-deep: #153aaf;
  --background: #fbfdff;
  --foreground: #182235;
  --muted: #667085;
  --surface-2: #f5f9fc;
  --border: #e6edf4;
  --shadow-soft: 0 10px 40px -12px rgba(26, 99, 171, 0.22);
  --shadow-glow: 0 20px 60px -20px rgba(30, 106, 220, 0.42);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--background);
  color: var(--foreground);
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
video {
  max-width: 100%;
}

h1,
h2,
h3,
h4 {
  font-weight: 700;
  letter-spacing: 0;
}

/* .page-main {
  padding-top: 6rem;
} */

.container-xxl {
  max-width: 1320px;
}

.site-header {
  inset: 0 0 auto;
  padding: 1rem 0;
  transition: padding 0.3s ease;
  z-index: 1030;
}

.site-header.is-scrolled {
  padding: 0.5rem 0;
}

.nav-shell {
  border-radius: 1rem;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(29, 111, 234, 0.12);
  box-shadow: var(--shadow-soft);
  backdrop-filter: saturate(180%) blur(16px);
}

.site-header.is-scrolled .nav-shell,
.mobile-menu {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(29, 111, 234, 0.12);
  box-shadow: var(--shadow-soft);
  backdrop-filter: saturate(180%) blur(16px);
}

.brand-mark {
  display: inline-grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  border-radius: 0.75rem;
  color: #fff;
  font-weight: 700;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  box-shadow: var(--shadow-glow);
}

.brand-name {
  color: var(--foreground);
  font-weight: 700;
  letter-spacing: 0;
}

.brand-logo {
  display: block;
  width: auto;
  max-width: 180px;
  max-height: 52px;
  object-fit: contain;
}

.site-header .brand-logo {
  max-height: 44px;
}

.nav-link {
  color: var(--muted);
  border-radius: 0.5rem;
  font-size: 0.9rem;
}

.nav-link:hover,
.nav-link.active {
  color: var(--foreground);
}

.btn-brand,
.filter-btn.active {
  border: 0;
  color: #fff;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  box-shadow: var(--shadow-glow);
}

.btn-brand:hover,
.btn-brand:focus,
.filter-btn.active:hover {
  color: #fff;
  filter: brightness(1.08);
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  border-radius: 999px;
  padding: 0.8rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 700;
}

.btn-glass {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.btn-glass:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
}

.icon-btn {
  display: inline-grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border: 0;
  border-radius: 0.65rem;
  background: transparent;
}

.icon-btn:hover {
  background: #eef4fb;
}

.mobile-menu {
  display: none;
  margin-top: 0.5rem;
  border-radius: 1rem;
  padding: 0.75rem;
}

.mobile-menu.show {
  display: block;
}

.hero-section {
  /* position: relative; */
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.35) 45%,
    rgba(0, 0, 0, 0.7)
  );
}

.hero-content {
  max-width: 960px;
  padding: 7rem 1rem 8rem;
  color: #fff;
  text-align: center;
  animation: rise 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-title {
  margin-top: 1.5rem;
  font-size: 4rem;
  line-height: 1.3;
}

.hero-subtitle {
  max-width: 680px;
  margin: 1.5rem auto 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.25rem;
}

.eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  backdrop-filter: blur(14px);
}

.text-gradient {
  display: inline-block;
  color: transparent;
  background: linear-gradient(135deg, var(--brand), #5ec7fb);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-box {
  min-height: 6rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.stat-box dt {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.8rem;
  font-weight: 500;
}

.stat-box dd {
  margin: 0.25rem 0 0;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
}

.section-pad {
  padding: 6rem 0;
}

.section-muted {
  background: var(--surface-2);
}

.gradient-sky {
  background:
    radial-gradient(
      60% 50% at 50% 0%,
      rgba(93, 178, 251, 0.34),
      transparent 60%
    ),
    linear-gradient(180deg, #eef8ff 0%, #fff 68%);
}

.glass {
  border: 1px solid rgba(29, 111, 234, 0.12);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-soft);
  backdrop-filter: saturate(180%) blur(16px);
}

.section-kicker {
  color: var(--brand);
  font-size: 0.9rem;
  font-weight: 700;
}

.section-title {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  line-height: 1.2;
}

.section-copy {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.brands-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
}

.brand-marquee {
  overflow: hidden;
}

.brand-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 4rem;
  white-space: nowrap;
  /* animation: marquee 30s linear infinite; */
  margin: auto;
}

.brand-track img {
  width: auto;
  height: 4rem;
  opacity: 0.72;
  transition: opacity 0.2s ease;
}

.brand-track img:hover {
  opacity: 1;
}

@media (max-width: 575.98px) {
  .brand-track {
    display: flex;
    width: max-content;
    align-items: center;
    gap: 4rem;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    margin: auto;
  }

  .brand-track img {
    height: 3rem;
  }
}

.service-card,
.why-card,
.dgca-card,
.blog-card,
.feature-card,
.portfolio-item {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.service-card:hover,
.why-card:hover,
.dgca-card:hover,
.blog-card:hover,
.portfolio-item:hover {
  transform: translateY(-0.25rem);
  box-shadow: var(--shadow-glow);
}

.service-media,
.blog-media,
.feature-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.service-media img,
.blog-media img,
.feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.service-card:hover img,
.blog-card:hover img,
.feature-card:hover img,
.portfolio-item:hover img {
  transform: scale(1.06);
}

.service-icon,
.dgca-icon,
.why-number {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.9rem;
}

.service-icon {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  color: var(--brand);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(29, 111, 234, 0.12);
  backdrop-filter: blur(12px);
}

.service-wide-image {
  width: 100%;
  overflow: hidden;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-soft);
}

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

.why-number,
.dgca-icon {
  color: #fff;
  font-weight: 700;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  box-shadow: var(--shadow-glow);
}

.card-text-muted {
  color: var(--muted);
  line-height: 1.65;
}

.inner-hero {
  position: relative;
  overflow: hidden;
  padding-top: 6rem;
}

.inner-hero-content {
  padding-top: 3rem;
  padding-bottom: 4rem;
}

.media-hero {
  position: relative;
  min-height: 80vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  padding: 9rem 0 6rem;
}

.media-hero > img,
.media-hero > video {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.58),
    rgba(0, 0, 0, 0.38) 45%,
    rgba(0, 0, 0, 0.72)
  );
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-heading {
  font-size: 4rem;
  line-height: 1.2;
}
@media (max-width: 575.98px) {
  .hero-heading {
    font-size: 2.5rem;
  }
}

.hero-lede {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.65;
}

.inner-hero .hero-lede {
  color: var(--muted);
}

/* Single post hero: featured images remain reserved for blog cards. */
.post-hero {
  min-height: 52vh;
  display: grid;
  place-items: center;
}

.post-hero-content {
  position: relative;
  z-index: 1;
  padding-top: 10rem;
  padding-bottom: 6rem;
}

.post-hero.media-hero .post-hero-content,
.post-hero.media-hero .link-brand,
.post-hero.media-hero .section-kicker {
  color: #fff;
}

.post-hero.media-hero .hero-heading {
  color: #fff;
  text-shadow: 0 3px 30px rgba(0, 0, 0, 0.35);
}

@media (max-width: 767.98px) {
  .post-hero { min-height: 48vh; }
  .post-hero-content { padding-top: 7rem; padding-bottom: 3.5rem; }
}

.info-card,
.contact-card,
.timeline-card {
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  background: #fff;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.info-card:hover,
.contact-card:hover,
.timeline-card:hover {
  transform: translateY(-0.25rem);
  box-shadow: var(--shadow-glow);
}

.service-detail-card {
  overflow: hidden;
}

.service-detail-media,
.info-card .card-media {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: 1.25rem;
}

.service-detail-media img,
.info-card .card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.service-detail-card:hover .service-detail-media img,
.info-card:hover .card-media img {
  transform: scale(1.06);
}

.service-detail-card:hover .service-detail-media img {
  transform: scale(1.06);
}

.portfolio-tile {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: #fff;
  cursor: zoom-in;
}

.portfolio-tile img,
.portfolio-tile video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.portfolio-video-placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: inherit;
  place-items: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.2), transparent 30%),
    linear-gradient(135deg, #111827, #14532d);
  color: #fff;
}

.portfolio-video-placeholder i {
  display: grid;
  width: 4rem;
  height: 4rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 2.2rem;
  line-height: 1;
}

.portfolio-tile:hover img {
  transform: scale(1.06);
}

.portfolio-tile:hover video,
.portfolio-item:hover video {
  transform: scale(1.06);
}

.portfolio-media-button {
  width: 100%;
  padding: 0;
  border: 0;
  color: inherit;
  text-align: inherit;
}

.portfolio-media-badge {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.38rem 0.68rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
  backdrop-filter: blur(6px);
}

.icon-round {
  display: inline-grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border-radius: 1rem;
  color: #fff;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  box-shadow: var(--shadow-glow);
}

.contact-form .form-control {
  min-height: 2.85rem;
  border-color: var(--border);
  border-radius: 0.8rem;
  background: var(--background);
  font-size: 0.95rem;
}

.contact-form .form-control:focus {
  border-color: rgba(29, 111, 234, 0.45);
  box-shadow: 0 0 0 0.22rem rgba(29, 111, 234, 0.16);
}

.blog-article {
  max-width: 860px;
}

.blog-article p,
.blog-article li {
  color: var(--muted);
  line-height: 1.8;
}

.blog-article h2,
.blog-article h3,
.blog-article h4 {
  margin-top: 2rem;
}

.blog-article img {
  width: 100%;
  border-radius: 1.25rem;
  box-shadow: var(--shadow-soft);
}

.post-sidebar-inner {
  display: grid;
  gap: 1.5rem;
  position: sticky;
  top: 7rem;
}

.sidebar-card {
  padding: 1.75rem;
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.sidebar-title {
  margin-bottom: 1.25rem;
  font-size: 1.35rem;
}

.recent-posts-card {
  overflow: hidden;
  background: linear-gradient(145deg, #fff 35%, #f3f8ff);
}

.recent-posts-card .sidebar-title { margin-bottom: 1.5rem; }

.recent-post-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.recent-post-list li + li { border-top: 1px solid var(--border); }
.recent-post-list a {
  display: grid;
  grid-template-columns: 2.4rem 1fr;
  gap: .8rem;
  align-items: start;
  padding: 1.15rem 0;
  color: var(--foreground);
  font-weight: 700;
  line-height: 1.45;
  transition: color .2s ease, transform .2s ease;
}
.recent-post-list li:first-child a { padding-top: 0; }
.recent-post-list li:last-child a { padding-bottom: 0; }
.recent-post-list a:hover { color: var(--brand); transform: translateX(.25rem); }
.recent-post-number {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  border-radius: .75rem;
  background: rgba(29, 111, 234, .1);
  color: var(--brand);
  font-size: .75rem;
  font-weight: 800;
}
.recent-post-list strong { display: block; }
.recent-post-list small {
  display: flex;
  justify-content: space-between;
  margin-top: .55rem;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 600;
}

#floatBtnWrp .whatsapp-svg {
  flex: 0 0 auto;
  width: 2.4rem;
  height: 2.4rem;
  color: #fff;
}

.author-avatar {
  width: 88px;
  height: 88px;
  margin-bottom: 1.25rem;
  border-radius: 50%;
  object-fit: cover;
}

.author-bio p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

/* Hotel & Resort Shoot template */
.hotel-hero { min-height: 78vh; }
.hotel-feature-card { transition: transform .25s ease, box-shadow .25s ease; }
.hotel-feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-glow); }
.hotel-package { padding: 2rem; border: 1px solid var(--border); border-radius: 1.5rem; background: #fff; box-shadow: var(--shadow-soft); }
.hotel-package.is-featured { border: 2px solid var(--brand); transform: translateY(-8px); }
.hotel-package ul { display: grid; gap: .7rem; min-height: 12rem; padding: 1.25rem 0; list-style: none; color: var(--muted); }
.hotel-package li i, .hotel-check-list i { margin-right: .55rem; color: var(--brand); }
.hotel-reasons i { color: #fff; }
.hotel-addons { padding: 1.4rem 1.6rem; border: 1px solid var(--border); border-radius: 1.25rem; background: #fff; color: var(--muted); }
.hotel-check-list { display: grid; gap: .65rem; padding: 0; list-style: none; color: var(--muted); }
.hotel-coverage-card { overflow: hidden; padding: 0; transition: transform .25s ease, box-shadow .25s ease; }
.hotel-coverage-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-glow); }
.hotel-coverage-image { width: 100%; height: 300px; object-fit: cover; }
.hotel-benefits-section { position: relative; overflow: hidden; }
.hotel-benefits-section::before { content: ""; position: absolute; width: 360px; height: 360px; top: -180px; right: -120px; border-radius: 50%; background: radial-gradient(circle, rgba(29,111,234,.16), transparent 68%); pointer-events: none; }
.hotel-reasons { position: relative; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.15rem; }
.hotel-reason-card { display: flex; align-items: center; gap: 1rem; min-height: 108px; padding: 1.4rem; border: 1px solid rgba(29,111,234,.14); border-radius: 1.35rem; background: linear-gradient(145deg, #fff, #f6faff); box-shadow: var(--shadow-soft); font-weight: 700; transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.hotel-reason-card:hover { transform: translateY(-5px); border-color: rgba(29,111,234,.45); box-shadow: var(--shadow-glow); }
.hotel-reason-icon { display: grid; flex: 0 0 auto; width: 3rem; height: 3rem; place-items: center; border-radius: 1rem; background: linear-gradient(135deg, var(--brand), var(--brand-deep)); color: #fff; font-size: 1.15rem; box-shadow: 0 10px 24px rgba(29,111,234,.25); }
.hotel-step > span { color: var(--brand); font-size: 1.15rem; font-weight: 900; }
@media (max-width: 767.98px) { .hotel-hero { min-height: 68vh; } .hotel-package.is-featured { transform: none; } .hotel-reasons { grid-template-columns: 1fr; } }

@media (max-width: 991.98px) {
  .blog-article { max-width: none; }
  .post-sidebar-inner { position: static; }
}

.link-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--brand);
  font-weight: 700;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.portfolio-item {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  color: inherit;
  text-align: left;
  cursor: zoom-in;
}

.portfolio-item img,
.portfolio-item video {
  width: 100%;
  height: auto;
  transition: transform 0.7s ease;
}

.portfolio-item .portfolio-video-placeholder {
  aspect-ratio: 3 / 2;
}

.portfolio-video-thumb {
  display: block;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  background: #08111f;
}

.filter-btn {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  color: var(--foreground);
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.filter-btn:hover {
  background: #eef4fb;
}

.about-photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 2rem;
  box-shadow: var(--shadow-glow);
}

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

.pilot-card {
  position: absolute;
  right: -1rem;
  bottom: -1.5rem;
  max-width: 220px;
  border: 1px solid rgba(29, 111, 234, 0.12);
  border-radius: 1rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  border: 1px solid var(--border);
  border-radius: 0.8rem;
  padding: 0.85rem 1rem;
  background: #fff;
  font-size: 0.9rem;
  font-weight: 700;
}

.location-sectors-section {
  background: linear-gradient(180deg, #f7fbff 0%, #eef7ff 55%, #f5f8ff 100%);
}

.location-sectors-section .section-kicker {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.location-sectors-section .section-title {
  max-width: 32rem;
  margin: 0 auto;
}

.location-sectors-section .sector-pill {
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid rgba(45, 106, 201, 0.16);
  border-radius: 1.5rem;
  padding: 1.1rem 1.35rem;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 22px 50px rgba(14, 46, 112, 0.08);
  color: #14253b;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.location-sectors-section .sector-pill:hover {
  transform: translateY(-4px);
  border-color: rgba(17, 82, 255, 0.22);
  background: #fff;
  box-shadow: 0 24px 56px rgba(17, 82, 255, 0.12);
}

.location-sectors-section .sector-pill i {
  width: 2.25rem;
  height: 2.25rem;
  min-width: 2.25rem;
  display: grid;
  place-items: center;
  border-radius: 1rem;
  color: #1c4dd6;
  background: rgba(45, 106, 201, 0.14);
  font-size: 1.05rem;
}

.location-sectors-section .row > div {
  display: flex;
}

.location-sectors-section .row > div .sector-pill {
  width: 100%;
}

.cert-wrap {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  background: #fff;
  padding: 1.5rem;
  box-shadow: var(--shadow-glow);
}

.cert-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.verified-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  color: #fff;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  box-shadow: var(--shadow-glow);
  font-size: 0.78rem;
  font-weight: 700;
}

.glass-chip {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid rgba(29, 111, 234, 0.12);
  border-radius: 0.8rem;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(16px);
  font-size: 0.8rem;
  font-weight: 700;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  padding: clamp(2.5rem, 6vw, 4rem);
  color: #fff;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  box-shadow: var(--shadow-glow);
}

.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background: radial-gradient(50% 60% at 80% 0%, #fff, transparent 60%);
}

.cta-panel > * {
  position: relative;
}

.map-frame {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

.accordion-item {
  overflow: hidden;
  border: 1px solid var(--border) !important;
  border-radius: 1rem !important;
  box-shadow: var(--shadow-soft);
}

.accordion-button {
  gap: 1rem;
  color: var(--foreground);
  font-weight: 700;
}

.accordion-button:not(.collapsed) {
  color: var(--foreground);
  background: #fff;
  box-shadow: none;
}

.accordion-button:focus {
  border-color: transparent;
  box-shadow: 0 0 0 0.2rem rgba(29, 111, 234, 0.18);
}

.footer {
  /* margin-top: 6rem; */
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, #fff, var(--surface-2));
}

.social-link {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
}

.social-link:hover {
  background: #eef4fb;
}

@keyframes whatsapp-ping {
  75%,
  to {
    opacity: 0;
    transform: scale(1.9);
  }
}

#floatBtnWrp.floatBtn {
  position: fixed;
  right: 1.25rem;
  bottom: 1.875rem;
  z-index: 1090;
}

#floatBtnWrp.floatBtn a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 4.25rem;
  border-radius: 999px;
  padding: 0.95rem 1.55rem;
  color: #fff;
  background: linear-gradient(90deg, #20bd5a 0%, #0d7a6d 55%);
  box-shadow: 0 16px 35px -18px rgba(13, 122, 109, 0.8);
}

#floatBtnWrp.floatBtn a:hover {
  color: #fff;
}

#floatBtnWrp.floatBtn img,
#floatBtnWrp.floatBtn svg {
  flex: 0 0 auto;
  width: 1.85rem;
  height: 1.85rem;
  object-fit: contain;
}

#floatBtnWrp.floatBtn .position-absolute.animate {
  position: absolute !important;
  inset: 0;
  pointer-events: none;
}

#floatBtnWrp.floatBtn .bnrtp_circle {
  position: absolute;
  inset: -0.15rem;
  display: inline-block;
  border-radius: 999px;
  background-color: rgba(37, 211, 102, 0.34);
}

#floatBtnWrp.floatBtn .animate-ping {
  animation: whatsapp-ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

#floatBtnWrp.floatBtn .availability {
  position: absolute;
  top: -0.35rem;
  right: 0.25rem;
  z-index: 2;
  width: 1.05rem;
  height: 1.05rem;
  border: 1px solid #20bd5a;
  border-radius: 999px;
  background: #fff;
}

#floatBtnWrp.floatBtn .availability::after {
  content: "";
  position: absolute;
  top: 0.22rem;
  left: 0.22rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: #20bd5a;
}

.hoverEffect {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.hoverEffect:hover {
  transform: scale(1.03);
}

.chatTxtWrp {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.1;
}

.chatTxt {
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0.92;
}

.wtstxt {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  place-items: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
}

.lightbox.show {
  display: grid;
}

.lightbox img,
.lightbox video,
.lightbox iframe {
  max-width: 95vw;
  max-height: 90vh;
  border-radius: 1rem;
  box-shadow: var(--shadow-glow);
}

.lightbox video,
.lightbox iframe {
  width: min(95vw, 1200px);
  aspect-ratio: 16 / 9;
  background: #000;
}

.lightbox iframe {
  border: 0;
}

.lightbox-close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@media (min-width: 576px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  .nav-shell {
    padding-inline: 1.5rem;
  }

  .portfolio-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  /* .page-main {
    padding-top: 5.5rem;
  } */

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

  .hero-section {
    min-height: 88vh;
  }

  .hero-content {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .section-pad {
    padding: 4.5rem 0;
  }

  .service-wide-image {
    height: min(450px, 66.666vw);
    min-height: 220px;
  }

  .pilot-card {
    right: 0.75rem;
  }

  #floatBtnWrp.floatBtn {
    right: 0.9rem;
    bottom: 1rem;
  }

  #floatBtnWrp.floatBtn a {
    min-height: 3.55rem;
    padding: 0.75rem 1rem;
  }

  #floatBtnWrp.floatBtn img,
  #floatBtnWrp.floatBtn svg {
    width: 1.55rem;
    height: 1.55rem;
  }

  .chatTxt {
    font-size: 0.72rem;
  }

  .wtstxt {
    font-size: 0.9rem;
  }
}

/* ── Utility classes extracted from inline styles ── */

/* Max-width constraints */
.mw-460 {
  max-width: 460px;
}
.mw-680 {
  max-width: 680px;
}
.mw-720 {
  max-width: 720px;
}
.mw-760 {
  max-width: 760px;
}
.mw-780 {
  max-width: 780px;
}
.mw-900 {
  max-width: 900px;
}
.mw-920 {
  max-width: 920px;
}
.mw-960 {
  max-width: 960px;
}
.mw-980 {
  max-width: 980px;
}

/* Inline style: width/height for dot separators */
.dot-sep {
  width: 0.45rem;
  height: 0.45rem;
}

.about-tab-nav .nav-link {
  border: 1px solid var(--border);
  color: var(--muted);
  background: #fff;
  border-radius: 999px;
  padding: 0.7rem 1.15rem;
  font-weight: 700;
}

.about-tab-nav .nav-link.active {
  color: #fff;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  box-shadow: var(--shadow-glow);
}

.about-tab-pane {
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  background: #fff;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}

.about-tab-figure img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 1.25rem;
}

.about-journey-section {
  overflow: hidden;
}

.about-timeline {
  position: relative;
  display: grid;
  gap: 4rem;
  max-width: 980px;
  margin-inline: auto;
}

.about-timeline::before {
  content: "";
  position: absolute;
  top: 1rem;
  bottom: 1rem;
  left: 50%;
  width: 2px;
  background: var(--border);
  transform: translateX(-50%);
}

.about-timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 4rem;
  align-items: center;
}

.about-timeline-item:nth-child(even) .about-timeline-card {
  grid-column: 2;
}

.about-timeline-item:nth-child(even) .about-timeline-media {
  grid-column: 1;
  grid-row: 1;
}

.about-timeline-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 2rem;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.about-timeline-period {
  display: inline-flex;
  margin-bottom: 0.8rem;
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  color: #fff;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  font-size: 0.72rem;
  font-weight: 700;
}

.about-timeline-media {
  position: relative;
  display: grid;
  place-items: center;
}

.about-timeline-media img {
  width: min(180px, 52vw);
  aspect-ratio: 1;
  border: 10px solid #fff;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.about-timeline-media span {
  position: absolute;
  top: calc(50% - 4.6rem);
  right: calc(50% - 5.1rem);
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 0 6px rgba(29, 111, 234, 0.12);
}

.about-why-card {
  min-height: 180px;
}

@media (max-width: 767.98px) {
  .about-timeline {
    gap: 2rem;
  }

  .about-timeline::before {
    left: 1rem;
  }

  .about-timeline-item {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-left: 2rem;
  }

  .about-timeline-item:nth-child(even) .about-timeline-card,
  .about-timeline-item:nth-child(even) .about-timeline-media {
    grid-column: auto;
    grid-row: auto;
  }

  .about-timeline-card {
    padding: 1.4rem;
  }

  .about-timeline-media {
    justify-content: start;
  }

  .about-timeline-media img {
    width: 120px;
    border-width: 6px;
  }

  .about-timeline-media span {
    left: -1.4rem;
    right: auto;
    top: 50%;
  }
}

/* Inline style: drone image overlay */
.drone-img-overlay {
  width: min(42vw, 220px);
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.28));
}

/* Inline style: map iframe height */
.map-iframe {
  height: 100%;
  min-height: 480px;
}

/* Inline style: brands-strip heading letter-spacing */
.brands-heading {
  letter-spacing: 0.18em;
}

/* Inline style: muted white text in CTA sections */
.text-white-muted {
  color: rgba(255, 255, 255, 0.86);
}

/* Inline style: brand-coloured text */
.text-brand {
  color: var(--brand);
}

/* ── Core Web Vitals: CLS prevention ── */

/* Portfolio images: aspect-ratio lock prevents layout shift while loading */
.portfolio-item img,
.portfolio-item video {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

/* About page portrait: enforce aspect ratio */
.about-photo img {
  aspect-ratio: 1 / 1;
}

/* DGCA cert and portrait images */
img[src*="dgca-cert"] {
  aspect-ratio: 4 / 3;
}
img[src*="saurabh-portrait"] {
  aspect-ratio: 1 / 1;
}

/* Prevent icon font flash causing layout shift */
.bi::before {
  display: inline-block;
  width: 1em;
  line-height: 1;
}

/* content-visibility: auto for off-screen heavy sections (INP/LCP) */
.section-pad:not(:first-of-type),
footer {
  content-visibility: auto;
  contain-intrinsic-size: 0 500px;
}

/* Smooth font render during swap — reduces FOUT flash */
body {
  font-display: optional;
}

.service-wide-image img {
  width: 100%;
  height: 600px;
  aspect-ratio: 3 / 2;
  border-radius: 15px;
  object-fit: cover;
}

.service-detail-media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  height: auto;
  object-fit: cover;
}
.accordion-button:focus:not(:focus-visible) {
  box-shadow: none;
  border-bottom: 1px solid #eaeaea;
}

/* Real estate drone shoot template */
.real-estate-page .re-hero { min-height: 540px; }
.real-estate-page .re-hero::after { background: linear-gradient(90deg, rgba(4,20,31,.82), rgba(4,20,31,.48)); }
.real-estate-page .info-card {
  background: linear-gradient(160deg, rgba(14, 79, 255, 0.14), rgba(15, 34, 99, 0.06));
  border-color: rgba(13, 67, 181, 0.18);
}
.real-estate-page .info-card:hover {
  box-shadow: 0 22px 60px rgba(13, 67, 181, 0.16);
}
.real-estate-page .re-price li,
.real-estate-page .re-check-list li { margin-top: .7rem; }
.real-estate-page .re-feature-image, .real-estate-page .re-certificate { width: 100%; max-height: 390px; object-fit: contain; border-radius: 24px; background: #fff; box-shadow: 0 16px 45px rgba(10,53,88,.12); }
.real-estate-page .re-step { color: var(--bs-primary); font-size: 1.35rem; }
.real-estate-page .re-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.real-estate-page .re-gallery img { width: 100%; aspect-ratio: 1 / .82; object-fit: cover; border-radius: 18px; box-shadow: 0 8px 24px rgba(10,53,88,.1); }
@media (max-width: 767.98px) {
	.real-estate-page .re-hero { min-height: 610px; }
	.real-estate-page .re-gallery { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}
