/* =========================
   HEADER SECTION
========================= */

.header-section {
  position: fixed;
  width: 100%;
  z-index: 50;
}

/* Gradient overlay behind header */
.header-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.65) 50%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: -1;
}

/* MULTI-COLOR LOGO GLOW */
.header-logo {
  position: relative;
}

.header-logo-glow {
  position: absolute;
  inset: -28px;
  z-index: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(0, 255, 157, 0.45), transparent 65%),
    radial-gradient(circle at 100% 0%, rgba(0, 200, 255, 0.4), transparent 65%),
    radial-gradient(circle at 50% 100%, rgba(160, 100, 255, 0.35), transparent 65%);
  filter: blur(28px);
  animation: logoGlowShift 10s ease-in-out infinite alternate;
}

@keyframes logoGlowShift {
  0% {
    transform: translate(-10px, -8px) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: translate(5px, 0px) scale(1.05);
    opacity: 1;
  }
  100% {
    transform: translate(10px, 10px) scale(1);
    opacity: 0.9;
  }
}

/* NAV MENU (DESKTOP) */
.header-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem; /* <<< CONTROL MENU SPACING HERE */
}

.header-nav-item {
  position: relative;
  color: #ffffff;
  font-weight: 300;
  padding: 4px 0;
  transition: color 0.3s ease;
}

.header-nav-item::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 50%;
  height: 2px;
  width: 0%;
   transform: translateX(-50%);
  background: #00ff9d;
  transition: width 0.35s ease;
}

.header-nav-item:hover {
  color: #00ff9d;
}

.header-nav-item:hover::after {
  width: 100%;
}

.header-nav-item.active {
  color: #00ff9d;
  font-weight: 600;
}

.header-nav-item.active::after {
  width: 100%;
}

/* SOCIAL ICONS */
.header-social-icon {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1); /* force white */
  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.header-social-icon:hover {
  opacity: 1;
  transform: translateY(-1px);
}

/* MOBILE NAV */
#mobileMenu{
	background-color:rgba(0,0,0,0.1);
}
.header-mobile-nav {
  width: 100%;
}

.header-mobile-item {
  display: block;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: color 0.3s ease;
}

.header-mobile-item.active {
  color: #00ff9d;
}






/* =========================
   HERO SECTION
========================= */

.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
}

/* VIDEO BACKGROUND */
.hero-section-video-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-section-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY */
.hero-section-overlay {
  background: rgba(0, 0, 0, 0.45);
}
/* Custom Font: Orbitron */
@font-face {
  font-family: "Customfont";
  src: url("assets/font/EurostileExtendedBlack.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}



/* CONTENT */
.hero-section-content {
  position: relative;
  padding-top: 120px; /* to avoid header overlap on mobile */
}

.hero-title {
  font-size: 60px;
  color: #ffffff;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 38px;
  }
}

/* Apply custom Orbitron font to hero titles */
.hero-title,
.hero-title-line,
.hero-title-fantastic,
.hero-title-effects {
  font-family: "Customfont", sans-serif;
  letter-spacing: 1px;
}

/* "FANTASTIC" – subtle glow */
.hero-title-fantastic {
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.55);
}

/* "VISUAL EFFECTS" – animated gradient */
.hero-title-effects {
  background: linear-gradient(
      90deg,
      #00ff9d,
      #00c3ff,
      #00ff9d,
      #9d70ff
  );
  background-size: 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: heroGradientMove 6s ease-in-out infinite;
}

@keyframes heroGradientMove {
  0% { background-position: 0% }
  50% { background-position: 100% }
  100% { background-position: 0% }
}

/* SUBTITLE */
.hero-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 550px;
}

/* CTA BUTTON */
.hero-cta-btn {
  padding: 14px 38px;
  font-size: 17px;
  font-weight: 600;
  border-radius: 50px;
  background: linear-gradient(90deg, #00ff9d, #00c3ff);
  color: #000;
  transition: 0.3s ease;
}

.hero-cta-btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}



/* =========================
   LATEST UPDATES & EVENTS
========================= */

.updates-section {
  background-color: #05080a; /* very dark bg */
}

/* Container tweaked for layout breathing */
.updates-container {
  padding-top: 10px;
}

/* Header row: title left, filters right */
.updates-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

/* Title styling to match UI */
.updates-section-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #00ff9d; /* neon green */
}

/* Filter area */
.updates-filter {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  font-size: 14px;
}

/* Filter buttons */
.updates-filter-item {
  position: relative;
  padding-bottom: 3px;
  cursor: pointer;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  transition: color 0.25s ease;
}

.updates-filter-item::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #00ff9d;
  transform: translateX(-50%);
  transition: width 0.25s ease;
}

.updates-filter-item:hover {
  color: #ffffff;
}

.updates-filter-item.active {
  color: #00ff9d;
}

.updates-filter-item.active::after {
  width: 100%;
}

/* Grid layout */
.updates-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.75rem;
}

@media (max-width: 1024px) {
  .updates-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .updates-grid {
    grid-template-columns: 1fr;
  }
}

/* Card styling – close to design */
.updates-card {
  cursor: pointer;
  background-color: #0b1115;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 280px; /* gives uniform feel */
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease;
}

.updates-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 255, 157, 0.9);
  background-color: #10181d;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
}

/* Thumbnail placeholder */
.updates-card-thumb {
  width: 100%;
  height: auto;
  border-radius: 18px;
  background-color: #262f34; /* light greyish placeholder */
  overflow:hidden;
}

.updates-card-thumb img{
  transition: transform .2s; /* Animation */
  border-radius: 18px;
  
}

.updates-card-thumb img:hover{
  
  transform: scale(1.2);
}
/* Card content */
.updates-card-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.updates-card-date {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
}

.updates-card-title {
  font-size: 25px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
  padding-bottom:10px;
}

.updates-card-description {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
  text-align:justify;
}


/* ========== FEATURED PROJECTS ========== */

.featured-projects-section {
  background: #05080a;
  padding: 4rem 0;
}

.featured-projects-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.featured-projects-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #00ff9d;
  margin-bottom: 14px;
}

/* Layout */
.featured-projects-shell {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Scroll area */
.featured-projects-wrapper {
  flex: 1;
  overflow-x: auto;
  overflow-y: visible;
  scrollbar-width: none;
}
.featured-projects-wrapper::-webkit-scrollbar {
  display: none;
}

/* Track */
.featured-projects-track {
  display: flex;
  align-items: flex-end;
  gap: 0.4rem;
  padding: 18px 80px;
  perspective: 3000px;
  transform-style: preserve-3d;
}

/* Bars – fixed width, no auto-flex scaling */
.featured-projects-item {
  flex: 0 0 72px;           /* fixed bar width */
  height: 260px;
  cursor: pointer;
  transform-style: preserve-3d;
  transition:
    transform 0.15s ease-out,
    box-shadow 0.2s ease-out,
    flex-basis 0.25s ease-out;
  background: #1b1f28;
  border-radius: 3px;
  overflow: hidden;
}

.featured-projects-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(1);
  transition: filter 0.25s ease;
}

/* HOVER: SAME WIDTH, just color + subtle depth (3D handled in JS) */
@media (hover: hover) and (pointer: fine) {
  .featured-projects-item:hover img {
    filter: grayscale(0);
  }
}

/* Center (fisheye focal) tile – stronger depth & color */
.featured-projects-item.is-center {
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7);
}
.featured-projects-item.is-center img {
  filter: grayscale(0);
}

/* CLICKED: expand width and stay colored */
.featured-projects-item.is-expanded {
  flex-basis: 220px;        /* expanded width on click */
}
.featured-projects-item.is-expanded img {
  filter: grayscale(0);
}

/* Arrows */
.featured-projects-arrow {
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.35);
  font-size: 34px;              /* bigger arrow */
  line-height: 1;
  cursor: pointer;
  padding: 0 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.featured-projects-arrow:hover {
  color: rgba(255, 255, 255, 0.85);
  transform: translateY(-1px);
}

/* Mobile */
@media (max-width: 900px) {
  .featured-projects-item {
    flex-basis: 65px;
    height: 220px;
  }
  .featured-projects-item.is-expanded {
    flex-basis: 180px;
  }
  .featured-projects-arrow {
    width: 32px;
    height: 32px;
    font-size: 18px;
  }
}



/* =========================
   OUR SERVICES SECTION
========================= */

.services-section {
  background-color: #05080a; /* same dark bg as other sections */
  padding: 4rem 0;
}

.services-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.services-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #00ff9d;
  margin-bottom: 2rem;
}

/* Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem 2.5rem;
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* Card */
.services-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  text-decoration: none;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.25s ease;
}

.services-item:hover {
  background-color: #0a1216;
  border-color: rgba(0, 255, 157, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.6);
}

/* Icon */
.services-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(66%) sepia(100%) saturate(700%) hue-rotate(90deg) brightness(110%);
  transition: filter 0.2s ease;
}

.services-item:hover .services-icon img {
  filter: brightness(1.2) saturate(140%) invert(72%) sepia(80%) saturate(900%) hue-rotate(90deg);
}

/* Text */
.services-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.services-name {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
}

.services-desc {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}




/* =========================
   SHOWREEL SECTION
========================= */

.showreel-section {
  background-color: #05080a;
  padding: 4rem 0;
}

.showreel-container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 1.5rem;
}


/* Header */
.showreel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
}

.showreel-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #00ff9d;
}

/* Video wrapper */
.showreel-video-wrapper {
  position: relative;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  transition: box-shadow 0.3s ease;
}

/* Hover glow */
.showreel-video-wrapper:hover {
  box-shadow:
    0 0 0 1px rgba(0, 255, 157, 0.4),
    0 0 30px rgba(0, 255, 157, 0.35);
}

/* Video */
.showreel-video {
  width: 100%;
  height: auto;
  display: block;
  background: #000;
}

/* Play button */
.showreel-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

/* Icon animation on click */
.showreel-play-btn.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.showreel-play-icon {
  filter:
    drop-shadow(0 0 12px rgba(0, 255, 157, 0.8))
    drop-shadow(0 0 28px rgba(0, 255, 157, 0.5));
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.showreel-play-btn:active .showreel-play-icon {
  transform: scale(0.9);
}


/* =========================
   LATEST BLOG SECTION
========================= */

.blog-section {
  background-color: #05080a;
  padding: 4rem 0;
}

.blog-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.blog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.blog-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #00ff9d;
}

.blog-view-all {
  font-size: 14px;
  color: #ffffff;
  text-decoration: none;
  position: relative;
  padding-bottom: 3px;
}

.blog-view-all::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #00ff9d;
  transform: translateX(-50%);
  transition: width 0.25s ease;
}

.blog-view-all:hover::after {
  width: 100%;
}

/* Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* Card */
.blog-card {
  display: flex;
  flex-direction: column;
  background-color: #0b1115;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  border-color: rgba(0, 255, 157, 0.8);
}

/* Thumbnail */
.blog-thumbnail {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.blog-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.blog-card:hover .blog-thumbnail img {
  transform: scale(1.05);
}

/* Content */
.blog-content {
  padding: 1.25rem 1.25rem 1.5rem;
}

.blog-date {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.4rem;
}

.blog-card-title {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.blog-excerpt {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}



/* ================= FOOTER ================= */

.footer-section {
  background: radial-gradient(
    ellipse at top,
    rgba(0, 255, 157, 0.06),
    rgba(0, 0, 0, 0.9)
  );
  padding: 4rem 0 2rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Grid */
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr 1.2fr;
  gap: 2.5rem;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Brand */
.footer-logo span img {
	width:150px;
}

 

.footer-desc {
  margin-top: 0.8rem;
  font-size: 14px;
  line-height: 1.6;
  max-width: 320px;
  color: rgba(255, 255, 255, 0.6);
  text-align:justify;
}

/* Headings */
.footer-heading {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
}

/* Links */
.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 0.5rem;
  font-size: 14px;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #00ff9d;
}

.footer-contact span {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

/* Socials */
.footer-socials {
  display: flex;
  gap: 12px;
  margin-bottom: 1rem;
}

.footer-socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer-socials a:hover {
  color: #000;
  background: #00ff9d;
  border-color: #00ff9d;
}

/* Newsletter */
.footer-newsletter-form {
  display: flex;
  align-items: center;
  margin-top: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  padding: 6px;
}

.footer-newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 14px;
  padding: 0.6rem 0.8rem;
}

.footer-newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer-newsletter-form button {
  background: #00ff9d;
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  cursor: pointer;
  font-size: 16px;
  color: #000;
  transition: transform 0.2s ease;
}

.footer-newsletter-form button:hover {
  transform: translateX(2px);
}

/* Bottom bar */
.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #00ff9d;
}
