/* PowerTech GCC — New World theme (animations & effects) */

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.7; }
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-zoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.mesh-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: float 18s ease-in-out infinite;
  pointer-events: none;
}

.mesh-blob-1 {
  width: 420px;
  height: 420px;
  background: rgba(66, 68, 151, 0.55);
  top: -10%;
  left: -5%;
  animation-delay: 0s;
}

.mesh-blob-2 {
  width: 360px;
  height: 360px;
  background: rgba(164, 123, 26, 0.35);
  top: 20%;
  right: -8%;
  animation-delay: -6s;
}

.mesh-blob-3 {
  width: 280px;
  height: 280px;
  background: rgba(99, 102, 241, 0.3);
  bottom: 10%;
  left: 30%;
  animation-delay: -12s;
}

.hero-slide-img,
.hero-slide-photo {
  animation: hero-zoom 8s ease-out forwards;
}

/* Hero — lower image visibility (darker overlay) */
.hero-track .hero-panel img,
.hero-slide-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
}

.hero-overlay {
  /* background: linear-gradient(
    115deg,
    rgba(20, 21, 48, 0.92) 0%,
    rgba(30, 31, 69, 0.88) 45%,
    rgba(66, 68, 151, 0.75) 100%
  ); */
  background: linear-gradient(175deg, rgb(37 39 90 / 50%) 0%, rgb(70 71 122 / 20%) 45%, rgb(157 158 213 / 50%) 100%);
  z-index: 1;
}

/* Linktree-style pill navigation */
.nav-shell {
  background: linear-gradient(180deg, #eef0f8 0%, rgba(238, 240, 248, 0.6) 100%);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav-shell.nav-scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(30, 31, 69, 0.06);
}

.nav-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  background: #fff;
  border-radius: 9999px;
  padding: 1.3rem 0.5rem 1.3rem 1rem;
  box-shadow:
    0 4px 6px rgba(30, 31, 69, 0.04),
    0 12px 40px rgba(66, 68, 151, 0.1);
  border: 1px solid rgba(66, 68, 151, 0.08);
}

.nav-pill-link {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.85rem;
  border-radius: 9999px;
  color: #5c5c7a;
  font-weight: 500;
  font-size: 0.875rem;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
  border: none;
  background: transparent;
  cursor: pointer;
  white-space: nowrap;
  font-family: Syne, sans-serif;
}

.nav-pill-link:hover,
.nav-dropdown:hover > .nav-pill-link {
  background: #eef0f8;
  color: #424497;
}

.nav-pill-link.is-active {
  background: #424497;
  color: #fff;
}

.nav-pill-cta {
  padding: 0.55rem 1.25rem;
  border-radius: 9999px;
  background: #424497;
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
  box-shadow: 0 4px 14px rgba(66, 68, 151, 0.35);
}

.nav-pill-cta:hover {
  background: #1e1f45;
  transform: translateY(-1px);
}

.nav-pill-menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  border: 1px solid #e2e4ef;
  background: #fff;
  color: #424497;
}

.nav-dropdown-panel {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.5rem;
  min-width: 220px;
  background: #fff;
  border-radius: 1rem;
  padding: 0.5rem;
  box-shadow: 0 16px 40px rgba(30, 31, 69, 0.12);
  border: 1px solid #e2e4ef;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 60;
}

.nav-dropdown-panel a {
  display: block;
  padding: 0.55rem 1rem;
  border-radius: 0.65rem;
  color: #5c5c7a;
  font-size: 0.875rem;
  text-decoration: none;
  font-family: Syne, sans-serif;
}

.nav-dropdown-panel a:hover {
  background: #eef0f8;
  color: #424497;
}

.nav-dropdown-panel-right {
  left: auto;
  right: 0;
}

.nav-dropdown:hover .nav-dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Footer social */
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.footer-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer-social-btn:hover {
  background: #a47b1a;
  border-color: #a47b1a;
  color: #fff;
  transform: translateY(-2px);
}

.site-footer .border-t .footer-social .footer-social-btn {
  width: 2.25rem;
  height: 2.25rem;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Glass nav */
.nav-glass {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(66, 68, 151, 0.08);
}

.nav-glass.nav-scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 30px rgba(30, 31, 69, 0.08);
}

/* Hero slides */
.hero-track .hero-panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
}

.hero-track .hero-panel.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-track .hero-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Bento cards */
.bento-card {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease;
}

.bento-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(66, 68, 151, 0.15);
}

.bento-card img {
  transition: transform 0.6s ease;
}

.bento-card:hover img {
  transform: scale(1.06);
}

/* Gradient text */
.text-gradient {
  background: linear-gradient(135deg, #424497 0%, #6366f1 50%, #a47b1a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Marquee */
.marquee-track {
  display: flex;
  gap: 4rem;
  animation: marquee 35s linear infinite;
  width: max-content;
}

.marquee-track:hover {
  animation-play-state: paused;
}

/* FAQ section */
.faq-section {
  position: relative;
  background: linear-gradient(180deg, #f8f9fc 0%, #eef0f8 50%, #f4f5f9 100%);
  overflow: hidden;
}

.faq-section-glow {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(164, 123, 26, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.faq-image-frame {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(66, 68, 151, 0.15);
}

.faq-side-img {
  width: 100%;
  aspect-ratio: 5/4;
  object-fit: cover;
  display: block;
}

.faq-image-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 0.85rem 1.15rem;
  border-radius: 1rem;
  border-left: 4px solid #a47b1a;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.faq-badge-num {
  display: block;
  font-family: "Syne", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #424497;
  line-height: 1;
}

.faq-badge-text {
  font-size: 0.75rem;
  color: #5c5c7a;
  font-weight: 600;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: #fff;
  border-radius: 1.25rem;
  border: 1px solid rgba(66, 68, 151, 0.08);
  box-shadow: 0 2px 12px rgba(30, 31, 69, 0.04);
  overflow: hidden;
  transition: box-shadow 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}

.faq-item:hover {
  border-color: rgba(66, 68, 151, 0.15);
  box-shadow: 0 8px 28px rgba(66, 68, 151, 0.1);
}

.faq-item.is-open {
  border-color: rgba(66, 68, 151, 0.2);
  box-shadow:
    0 12px 40px rgba(66, 68, 151, 0.14),
    inset 4px 0 0 #424497;
  transform: translateY(-2px);
}

.faq-item-heading {
  margin: 0;
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
  padding: 1.15rem 1.35rem;
  border: none;
  background: transparent;
  cursor: pointer;
  font: inherit;
  color: #1e1f45;
  transition: background 0.2s ease;
}

.faq-trigger:hover {
  background: rgba(238, 240, 248, 0.6);
}

.faq-item.is-open .faq-trigger {
  background: linear-gradient(90deg, rgba(66, 68, 151, 0.06) 0%, transparent 100%);
}

.faq-q-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.85rem;
  background: linear-gradient(135deg, #eef0f8 0%, #e2e4ef 100%);
  color: #424497;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.faq-item.is-open .faq-q-icon {
  background: linear-gradient(135deg, #424497 0%, #32367a 100%);
  color: #fff;
  transform: scale(1.05);
}

.faq-q-text {
  flex: 1;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.45;
  padding-right: 0.5rem;
}

.faq-item.is-open .faq-q-text {
  color: #424497;
}

.faq-chevron {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  background: #eef0f8;
  color: #424497;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s ease;
}

.faq-item.is-open .faq-chevron {
  transform: rotate(180deg);
  background: #a47b1a;
  color: #fff;
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item.is-open .faq-panel {
  max-height: 320px;
}

.faq-panel[hidden] {
  display: block;
  max-height: 0;
}

.faq-item.is-open .faq-panel[hidden] {
  max-height: 320px;
}

.faq-answer {
  padding: 0 1.35rem 1.35rem 4.85rem;
  color: #5c5c7a;
  font-size: 0.9375rem;
  line-height: 1.7;
  border-top: 1px dashed rgba(66, 68, 151, 0.12);
  margin-top: 0;
  padding-top: 1rem;
}

@media (max-width: 640px) {
  .faq-answer {
    padding-left: 1.35rem;
  }

  .faq-q-text {
    font-size: 0.9375rem;
  }

  .faq-q-icon {
    width: 2.25rem;
    height: 2.25rem;
  }

  .faq-q-icon svg {
    width: 16px;
    height: 16px;
  }
}

/* Stat counter */
.stat-value {
  font-variant-numeric: tabular-nums;
}

/* Inner page hero */
.page-hero-inner {
  background: linear-gradient(135deg, #1e1f45 0%, #424497 45%, #32367a 100%);
  position: relative;
  overflow: hidden;
}

.page-hero-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/2023/10/inner-banner-img.jpg") center/cover;
  opacity: 0.2;
}

.page-hero-inner .hero-content {
  position: relative;
  z-index: 1;
}

/* Mobile menu */
.mobile-menu {
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-menu.is-open {
  transform: translateX(0);
}

/* Line accent */
.accent-line {
  width: 48px;
  height: 4px;
  background: linear-gradient(90deg, #a47b1a, #424497);
  border-radius: 2px;
}

/* Shimmer button hover */
.btn-shine {
  position: relative;
  overflow: hidden;
}

.btn-shine::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.25) 50%,
    transparent 60%
  );
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-shine:hover::after {
  opacity: 1;
  animation: shimmer 1.2s ease;
}

/* Portfolio hover */
.portfolio-item .portfolio-overlay {
  opacity: 0;
  transition: opacity 0.35s ease;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-item:hover img {
  transform: scale(1.08);
}

.portfolio-item img {
  transition: transform 0.5s ease;
}

/* Contact location cards */
.location-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.location-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(66, 68, 151, 0.12);
}

.location-card iframe {
  display: block;
}

/* Footer */
.site-footer a {
  text-decoration: none;
}
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.border-stye-class{
    border: 1px solid #333333 !important;
    box-shadow: 5px 5px 0px #333333 !important;
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .mesh-blob,
  .marquee-track,
  .hero-slide-img {
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
