/* =====================
   ROOT VARIABLES
===================== */
:root {
  --primary: #ffffff;              /* white text */
  --accent: #b7ff00;               /* neon green */
  --light: #ffffff;
  --dark: #000000;                 /* black background */
  --gray: #f4f4f4;
  --gradient: linear-gradient(135deg, #b7ff00, #a3ff00);
  --radius: 12px;
  --transition: all 0.35s ease;
  --shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}



/* ✨ Global Image Hover Effect */
img {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: block;
}

img:hover {
  transform: translateY(-8px);  /* 👆 image goes slightly up */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); /* soft shadow */
}


/* =====================
   GLOBAL STYLES
===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--light);
  color: var(--primary);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  transition: var(--transition);
}

/* =====================
   HEADER / NAVIGATION
===================== */
.site-header {
  background: var(--light); /* Black background */
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--black);
}

.logo img {
  width: 150px;
  height: auto;
}

/* =====================
   NAVIGATION LINKS
===================== */
.site-nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

.site-nav a {
  color: var(--black);         /* White text by default */
  font-weight: 600;
  position: relative;
  padding: 8px 14px;
  border-radius: 10px;
  transition: var(--transition);
}

.site-nav a::after {
  display: none;
}

.site-nav a:hover {
  background: var(--accent);     /* neon green background */
  color: var(--dark);            /* black text on hover */
  box-shadow: 0 0 10px var(--accent);
  border-radius: 8px;
}








/* =====================
   HAMBURGER & MOBILE NAV
===================== */





/* =====================
   CTA BUTTON
===================== */
.btn,
.cta-btn {
  background: goldenrod;         /* Black button */
  color: black;            /* Neon text */
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  border: 2px solid var(--accent);
  box-shadow: 0 0 10px transparent;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.btn:hover,
.cta-btn:hover {
  background: var(--accent);       /* Neon background */
  color: var(--dark);              /* Black text */
  box-shadow: 0 0 15px var(--accent);
}


@media (max-width: 900px) {

  .site-nav {
    text-align: center;     /* Center menu items */
  }

  .site-nav ul {
    align-items: center;
  }

  .dropdown-content {
    left: 50%;
    transform: translateX(-50%);
  }

}





/* Utilities for show/hide by breakpoint */
.only-mobile { display: none; }
.only-desktop { display: inline-flex; }

/* Prevent body scroll when menu open */
body.no-scroll { overflow: hidden; }

/* Close button inside mobile menu */
.menu-close {
  display: none;
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 32px;
  line-height: 1;
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--dark);
}

/* ======== HAMBURGER & MOBILE NAV (center open) ======== */




/* Desktop nav (unchanged) */
.site-nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

/* Keep your existing dropdown hover for desktop */



/* visibility helpers */
.desktop-only { display: inline-flex; }
.mobile-only  { display: none; }



/*  

/* prevent background scroll when menu open */
.no-scroll { overflow: hidden; }





/* =====================
   HERO SECTION
===================== */
.agency-hero {
  position: relative;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #000; /* Prevent white flash */
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(50%);
  opacity: 0;
  transition: opacity 0.8s ease;
  z-index: 0;
}

.hero-bg.active {
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--neon-green);
  max-width: 700px;
  padding: 20px;
}


/* =====================
   ANIMATIONS
===================== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===========================
   ABOUT US SECTION
=========================== */
.about-us {
  background: #000;                /* black background */
  color: #fff;                     /* white text */
  padding: 80px 20px;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.about-left {
  flex: 1 1 45%;
}

.about-left img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(183, 255, 0, 0.3);  /* soft neon glow */
  object-fit: cover;
}

.about-right {
  flex: 1 1 50%;
}

.about-right h4 {
  color: goldenrod;                  /* neon green heading */
  font-size: 1.1rem;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 700;
}

.about-right h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  line-height: 1.2;
  color: goldenrod;
}

.about-right p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #ddd;                     /* light gray for readability */
}

.about-points {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.about-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  margin-bottom: 10px;
}

.about-points i {
  color: gold;                 /* check icon in neon green */
}

.about-btn {
  background: goldenrod;
  color: #000;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.about-btn:hover {
  background: #000;
  color: #b7ff00;
  border: 2px solid #b7ff00;
  box-shadow: 0 0 10px #b7ff00;
}

/* ===========================
   SCROLL ANIMATION
=========================== */
.slide-left, .slide-right {
  opacity: 0;
  transition: all 0.8s ease;
  will-change: transform, opacity;
}

.slide-left {
  transform: translateX(-100px);
}

.slide-right {
  transform: translateX(100px);
}

.show {
  opacity: 1;
  transform: translateX(0);
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-left, .about-right {
    flex: 1 1 100%;
  }

  .slide-left {
    transform: translateY(50px);
  }

  .slide-right {
    transform: translateY(50px);
  }
}



/* ============================
   ACCOUNTS & FINANCE SECTION
=========================== */

/* ============================
   ACCOUNTS & FINANCE SECTION
=========================== */

:root {
  --black: #000;
  --white: #fff;
  --green: #b7ff00;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--black);
  color: var(--white);
}



#accounts .container {
  max-width: 1200px;
  margin: 0 auto;
  display: block;                  /* override global flex */
  text-align: center;
}

#accounts .heading-box {
  text-align: center;
  margin-bottom: 50px;
}

#accounts .sub-heading {
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

#accounts .main-heading {
  font-size: 2rem;
  font-weight: 700;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.3;
  color: goldenrod;
}

/* Card Row */
#accounts .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  flex-wrap: nowrap;
}

#accounts .finance-card {
  background-color:black;
  border: 2px solid var(--accent);
  color: var(--white);
  padding: 40px 30px;
  border-radius: 10px;
  width: 300px;
  text-align: center;
  transition: background-color 0.3s ease;
}

#accounts .finance-card:hover {
  background-color: goldenrod;
  color: var(--dark);
}

#accounts .icon {
  font-size: 2rem;
  margin-bottom: 15px;
}

#accounts .finance-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

#accounts .finance-card p {
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  #accounts .card-wrapper {
    flex-wrap: wrap;
  }

  #accounts .finance-card {
    width: 100%;
    max-width: 350px;
  }
}



/* ============================
   HERO VIDEO SECTION
============================ */
.hero-section {
  position: relative;
  width: 100%;
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: left;
  padding: 0 20px;
  background: url('../images/client.jpg') no-repeat center center/cover;
  background-size: cover;
  z-index: 0;
}


.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}




.hero-subtitle {
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-bottom: 15px;
  font-weight: 600;
}

.hero-title {
  font-size: 2.5rem;
  line-height: 1.3;
  margin-bottom: 20px;
  font-weight: 800;
}

.hero-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #ddd;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
}



/* CTA BUTTON */
.cta-btn {
  background: #fff;
  color: #000;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.cta-btn:hover {
  background: #b7ff00;
  color: #000;
  box-shadow: 0 0 10px #b7ff00;
}

/* Play Button */
.play-btn {
  background: #fff;
  color: #000;
  font-size: 1.5rem;
  border: none;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.play-btn:hover {
  background: #b7ff00;
  transform: scale(1.1);
}

/* ============================*/
  
.video-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.video-popup.active {
  display: flex;
}

.video-wrapper {
  position: relative;
  width: 80%;
  max-width: 800px;
}

.video-wrapper iframe {
  width: 100%;
  height: 450px;
  border-radius: 8px;
}

.close-btn {
  position: absolute;
  top: -40px;
  right: -10px;
  font-size: 2rem;
  cursor: pointer;
  color: #fff;
}

@media (max-width: 768px) {
  .video-wrapper iframe {
    height: 300px;
  }
}


/* ========================
   FEATURES SECTION
========================= */


/* ===== Features Section ===== */
.features-section {
  background:black;
  color: goldenrod;
  padding: 80px 20px;
  text-align: center; /* ✅ Centers text inside this section */
}


.features-section .container {
  display: block;            /* ✅ fixes vertical alignment */
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}



/* Subheading */
.features-section .section-subtitle {
  font-size: 16px;
  color: #b7ff00; /* Neon green */
  margin-bottom: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-align: center; /* ✅ Ensures center alignment */
}

/* Main Heading */
.features-section .section-title {
  font-size: 32px;
  margin-bottom: 50px;
  font-weight: 800;
  line-height: 1.3;
  text-align: center; /* ✅ Centers the heading text */
}

/* Grid Layout */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Feature Card */
.feature-card {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 14px;
  overflow: hidden;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card img {
  width: 100%;
  display: block;
}

.feature-card .card-content {
  padding: 20px;
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
}

.feature-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}

/* Hover Effect */
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}



/* ===== Responsive Design ===== */
@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .features-section .section-title {
    font-size: 26px;
  }
}




:root{
  --neon: #b7ff00;
  --text: #000;
  --bg: #fff;
}

.why-choose-us {
  background: var(--bg);
  color: var(--text);
  padding: 80px 20px;
}

.why-choose-us-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.why-choose-us-image {
  flex: 1 1 45%;
}
.why-choose-us-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 14px;
  display: block;
}

.why-choose-us-content {
  flex: 1 1 45%;
}
.why-choose-us-content h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 20px;
  border-left: 5px solid var(--neon);
  padding-left: 10px;
}
.why-choose-us-content p {
  margin-bottom: 20px;
  line-height: 1.6;
}
.why-choose-us-content ul {
  list-style: none;
  padding: 0;
}
.why-choose-us-content ul li {
  margin-bottom: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Scroll animation initial state */
.reveal-left,
.reveal-right {
  opacity: 0;
  transform: translateX(0);
  transition: all 0.8s ease;
}

.reveal-left {
  transform: translateX(-100px);
}
.reveal-right {
  transform: translateX(100px);
}

.reveal-active {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive */
@media (max-width: 768px) {
  .why-choose-us-container {
    flex-direction: column;
    text-align: center;
  }
  .why-choose-us-content h2 {
    text-align: center;
    border-left: none;
    border-bottom: 3px solid var(--neon);
    padding-bottom: 8px;
  }
}



.testimonial-section {
  background:goldenrod;
  color:black;
  padding: 100px 20px;
}

.testimonial-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.testimonial-left {
  flex: 1 1 40%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-icon {
  font-size: 300px;
  font-weight: 900;
  color: black;
  position: absolute;
  top: 0;
  left: 0;
  line-height: 0.7;
  z-index: 0;
}

.client-images {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 1;
}

.client-main {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 5px solid #fff;
  object-fit: cover;
}

.client-small {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 4px solid #fff;
  object-fit: cover;
}

.testimonial-right {
  flex: 1 1 50%;
}

.testimonial-subtitle {
  color: #ff6600;
  font-weight: 600;
  margin-bottom: 10px;
}

.testimonial-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 20px;
  color: black;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.7;
  color: black;
  margin-bottom: 30px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-author img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
}

.testimonial-author h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.testimonial-author span {
  font-size: 14px;
  color: #ff6600;
}

@media (max-width: 900px) {
  .testimonial-container {
    flex-direction: column;
    text-align: center;
  }
  .testimonial-left {
    justify-content: center;
  }
  .quote-icon {
    font-size: 200px;
    left: 50%;
    transform: translateX(-50%);
  }
  .testimonial-author {
    justify-content: center;
  }
}



/* ===============================
   TEAM SECTION
=============================== */
/* ===============================
   TEAM SECTION FIXED OVERLAY
=============================== */

:root {
  --neon-green: #b7ff00;
  --black: #000;
  --white: #fff;
}

/* Container */
.team-section {
  background-color: black;
  padding: 80px 20px;
  text-align: center;
}

.team-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
  color:goldenrod;
}

.team-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: var(--neon-green);
  margin: 10px auto 0;
}

/* Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Card */
.team-card {
  background: goldenrod;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

/* Image */
.team-image {
  position: relative;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.team-card:hover .team-image img {
  transform: scale(1.1);
  color: goldenrod;
}

/* FIXED Overlay */
.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(183, 255, 0, 0.25);  /* transparent neon */
  opacity: 0;
  transition: opacity 0.4s ease;
}

.team-card:hover .image-overlay {
  opacity: 1;
}

/* Social Icon */
.social-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: var(--neon-green);
  color: var(--black);
  font-size: 1.2rem;
  padding: 10px;
  border-radius: 50%;
  transition: transform 0.4s ease;
}

.team-card:hover .social-icon {
  transform: translate(-50%, -50%) scale(1);
}

/* Info */
.team-info {
  padding: 20px;
  color: #000;
}

.team-info h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.team-info p {
  font-size: 0.95rem;
  color: #555;
}

/* Reveal Animations (optional) */
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  animation: slideInLeft 1s ease forwards;
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  animation: slideInRight 1s ease forwards;
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .team-title {
    font-size: 2rem;
  }
}




/* ===========================
         FOOTER STYLES
=========================== */
.footer {
  background:palegoldenrod;
  color: black;
  padding: 70px 20px 30px;
  font-family: "Poppins", sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 800;
  color: black;
  text-decoration: none;
  margin-bottom: 15px;
}

.footer-logo img {
  width: 150px;
  height: 150px;
  object-fit: contain;
}


.footer-col h4 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 2px;
  background:red;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: black;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: black;
}

.footer-col p {
  color:black;
  font-size: 14px;
  line-height: 1.6;
}

/* Newsletter */
.footer-newsletter {
  display: flex;
  margin-top: 10px;
  margin-bottom: 20px;
}

.footer-newsletter input {
  padding: 10px;
  flex: 1;
  border: none;
  border-radius: 30px 0 0 30px;
  outline: none;
}

.footer-newsletter button {
  background: red;
  border: none;
  color: #000;
  padding: 0 15px;
  border-radius: 0 30px 30px 0;
  cursor: pointer;
  transition: background 0.3s;
}

.footer-newsletter button:hover {
  background: red;
}

/* Social Icons */
.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  background: #222;
  color: #fff;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.social-links a:hover {
  background: red;
  color: #000;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #222;
  margin-top: 40px;
  font-size: 14px;
  color:black;
}

.footer-bottom a {
  color: red;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .footer-newsletter {
    flex-direction: column;
  }
  .footer-newsletter input, 
  .footer-newsletter button {
    border-radius: 30px;
    margin-bottom: 10px;
    width: 100%;
  }
  .social-links {
    justify-content: center;
  }
}




/* ==========================
   Scroll Reveal Animations
=========================== */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Optional Stagger Timing */
.footer-col:nth-child(1) { transition-delay: 0.1s; }
.footer-col:nth-child(2) { transition-delay: 0.3s; }
.footer-col:nth-child(3) { transition-delay: 0.5s; }
.footer-col:nth-child(4) { transition-delay: 0.7s; }
.footer-bottom { transition-delay: 0.9s; }




/* ==========================
   PAGE HERO IMAGE FADE
=========================== */
.page-hero {
  position: relative;
  width: 100%;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 0;
}

.page-hero-bg.active {
  opacity: 1;
}

.page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 85, 0, 0.35);
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color:white;
}

.page-hero-content h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.page-hero-content p {
  font-size: 1rem;
  color: greenyellow;
}

@media (max-width: 768px) {
  .page-hero {
    height: 40vh;
  }

  .page-hero-content h1 {
    font-size: 2rem;
  }

  .page-hero-content p {
    font-size: 0.9rem;
  }
}


/* ==========================
   OUR FEATURES SECTION
=========================== */
.features-section {
  background:black; /* dark background */
  padding: 80px 20px;
  font-family: "Poppins", sans-serif;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Heading aligned right */
.features-header {
 
  margin-bottom: 40px;
  display: block;
  align-items: center;
}

.features-header h2 {
  color: goldenrod;
  font-size: 2.2rem;
  font-weight: 800;
  position: relative;
  display: inline-block;
}

.features-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  right: 0;
  width: 80px;
  height: 3px;
  background: #b7ff00;
}

/* Grid Layout */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.feature-card {
  background: linear-gradient(135deg, #1c1c1c, #2b2b2b);
  color: #fff;
  padding: 30px 20px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: all 0.4s ease;
  border: 1px solid #2f2f2f;
}

.feature-card:hover {
  transform: translateY(-10px);
  background: linear-gradient(135deg, #ff6600, #b7ff00);
  color: #000;
  box-shadow: 0 10px 25px rgba(255, 102, 0, 0.5);
}

/* Icons */
.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #b7ff00;
  transition: color 0.3s ease;
}

.feature-card:hover .feature-icon {
  color: #000;
}

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ccc;
}

.feature-card:hover p {
  color: #000;
}



/* ==========================
   Scroll Reveal Animations
=========================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .features-header {
    text-align: center;
  }

  .features-header h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
}




/* ==========================
   OUR SERVICES SECTION
=========================== */
.our-services {
  background: #000;
  color: #fff;
  padding: 80px 20px;
  font-family: "Poppins", sans-serif;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Header */
.services-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.services-header p {
  color: #b7ff00;
  font-size: 1rem;
  margin-bottom: 50px;
}

/* Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.service-card {
  background: #111;
  border: 1px solid #222;
  border-radius: 14px;
  overflow: hidden; /* hides corners of image */
  transition: all 0.4s ease;
  text-align: center;
  padding-bottom: 25px;

}

/* Image */
.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.service-card:hover img {
  transform: scale(1.05); /* zoom effect on hover */
}

/* Text */
.service-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.95rem;
  color: #ccc;
  padding: 0 10px;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(183, 255, 0, 0.3);
  border-color: #b7ff00;
}

.service-card:hover p {
  color: #fff;
}


.service-card a{

     color:greenyellow;
}

/* Responsive */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card img {
    height: 180px;
  }
}



/* 404 css*/



/* ============================
   404 PAGE SECTION STYLES
============================ */
.error-page {
  background: #000;                  /* Black background */
  color: #fff;
  min-height: 100vh;                /* Full screen height */
  display: flex;                    /* Centering */
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
}

.error-container h1 {
  font-size: 10rem;
  font-weight: 800;
  color: #b7ff00;                   /* Neon green */
  text-shadow: 0 0 25px #b7ff00;
  margin-bottom: 20px;
}

.error-container h2 {
  font-size: 2rem;
  color: #b7ff00;
  margin-bottom: 15px;
}

.error-container p {
  font-size: 1rem;
  color: #ccc;
  max-width: 500px;
  margin: 0 auto 30px;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #b7ff00;
  color: #000;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.back-btn:hover {
  background: #000;
  color: #b7ff00;
  border: 2px solid #b7ff00;
  box-shadow: 0 0 10px #b7ff00;
}

/* ✨ Scroll reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 600px) {
  .error-container h1 {
    font-size: 6rem;
  }
  .error-container h2 {
    font-size: 1.5rem;
  }
}




/* 🌟 Hero Section */
.about-hero {
  position: relative;
  height: 60vh;
  background: url('../images/stackly1.jpg') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.about-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}
.about-hero .hero-content {
  position: relative;
  z-index: 1;
}
.about-hero h1 {
  font-size: 3rem;
  color: var(--light);
}
.about-hero h1 span {
  color: var(--neon);
}
.about-hero p {
  color: #ccc;
  font-size: 1.2rem;
  margin-top: 10px;
}

/* 🧑 About Section */
.about-section {
  background: var(--dark);
  color: var(--light);
  padding: 80px 20px;
}
.about-section .container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
}
.about-left img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(183, 255, 0, 0.3);
}
.about-right h2 {
  color: var(--neon);
  margin-bottom: 20px;
  font-size: 2rem;
}
.about-right p {
  color: #ccc;
  margin-bottom: 15px;
  line-height: 1.7;
}
.about-right ul {
  list-style: none;
  padding: 0;
}
.about-right li {
  margin-bottom: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--light);
}
.about-right i {
  color: var(--neon);
}

/* 🚀 Mission & Vision */
.mission-vision {
  background: W;
  padding: 80px 20px;
  text-align: center;
}
.mission-vision .container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.mv-card {
  background: #000;
  padding: 30px;
  border-radius: 12px;
  transition: 0.3s;
  box-shadow: 0 0 15px rgba(183,255,0,0.1);
}
.mv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 25px rgba(183,255,0,0.4);
}
.mv-card i {
  font-size: 2.5rem;
  color: var(--neon);
  margin-bottom: 15px;
}
.mv-card h3 {
  color: var(--neon);
  margin-bottom: 10px;
}
.mv-card p {
  color: #ccc;
  line-height: 1.6;
}

/* 🏆 Core Values */
.core-values {
  background: var(--dark);
  color: var(--light);
  padding: 80px 20px;
}
 
.core-values h2 {
  color: var(--neon);
  margin-bottom: 40px;
  text-align: center;
  display: block;
}
.values-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.value-card {
  background: #111;
  padding: 30px;
  border-radius: 12px;
  transition: 0.3s;
}
.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 25px rgba(183,255,0,0.4);
}
.value-card i {
  font-size: 2rem;
  color: var(--neon);
  margin-bottom: 15px;
}
.value-card h3 {
  color: var(--neon);
  margin-bottom: 10px;
}
.value-card p {
  color: #ccc;
}

/* ✨ Scroll Reveal */
.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}
.reveal-left { transform: translateX(-100px); }
.reveal-right { transform: translateX(100px); }
.reveal.active,
.reveal-left.active,
.reveal-right.active {
  opacity: 1;
  transform: translate(0);
}

/* Responsive */
@media (max-width: 992px) {
  .mission-vision .container {
    grid-template-columns: 1fr 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .mission-vision .container,
  .values-grid {
    grid-template-columns: 1fr;
  }
}




:root {
  --white: #ffffff;
  --black: #000000;
  --neon: #b7ff00;
  --card-bg: #1a1a1a;
}

body {
  background: var(--black);
  font-family: "Poppins", sans-serif;
}

.blog-grid-section {
  padding: 80px 20px;
  max-width: 1300px;
  margin: 0 auto;
}

.blog-grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* Blog Card */
.blog-card {
  background: var(--card-bg);
  border-radius: 15px;
  overflow: hidden;
  border: 2px solid transparent;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
}

.blog-card:hover {
  border-color: var(--neon);
  box-shadow: 0 0 25px rgba(183, 255, 0, 0.4);
  transform: translateY(-6px);
}

/* Image */
.blog-img {
  height: 260px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-img img {
  transform: scale(1.05);
}

/* Content */
.blog-info {
  padding: 25px;
}

.blog-info h4 {
  color: var(--neon);
  font-size: 0.9rem;
  margin-bottom: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-info h2 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--white);
}

.blog-info p {
  font-size: 0.95rem;
  color: #ccc;
  margin-bottom: 12px;
  line-height: 1.5;
}

.blog-info .date {
  font-size: 0.85rem;
  color: #888;
}

/* Responsive */
@media (max-width: 900px) {
  .blog-grid-container {
    grid-template-columns: 1fr;
  }

  .blog-img {
    height: 220px;
  }
}





:root {
  --neon: #b7ff00;
  --black: #000000;
  --white: #ffffff;
}

/* CTA BANNER */
.cta-banner {
  background: palevioletred;
  padding: 80px 20px;
  text-align: center;
  color: var(--black);
}

.cta-banner-content .cta-subtext {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--black);
}

.cta-banner-content .cta-title {
  font-size: 2.2rem;
  max-width: 700px;
  margin: 0 auto 20px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--black);
}

.cta-banner-content .cta-button {
  display: inline-block;
  padding: 12px 25px;
  background: orange;
  color: var(--black);
  border: 2px solid var(--black);
  border-radius: 30px;
  font-size: 1rem;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.cta-banner-content .cta-button:hover {
  background: var(--black);
  color: var(--neon);
  border-color: var(--neon);
}

/* BRAND LOGO MARQUEE */
.brand-slider {
  background: var(--black);
  padding: 25px 0;
  overflow: hidden;
  white-space: nowrap;
}

.brand-track {
  display: inline-flex;
  gap: 60px;
  align-items: center;
  animation: snakeScroll 20s linear infinite;
}
.brand-track img {
  height: 60px;
  object-fit: contain;
  /* ✅ Removed filter so logos keep their real colors */
}

.brand-track img:hover {
  /* ✅ Removed hover filter so nothing changes on hover */
}


@keyframes snakeScroll {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .cta-banner-content .cta-title {
    font-size: 1.6rem;
  }

  .brand-track img {
    height: 45px;
  }
}




:root {
  --neon: #b7ff00;
  --black: #000000;
  --white: #ffffff;
  --light-bg: #111111;
}

.pricing-section {
  background: var(--black);
  padding: 80px 20px;
  text-align: center;
}

.pricing-header {
  max-width: 700px;
  margin: 0 auto 50px;
  color: var(--white);
}

.pricing-subtitle {
  color: var(--neon);
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-title {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: var(--white);
}

.pricing-desc {
  font-size: 1rem;
  color: #ccc;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--light-bg);
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 2px solid transparent;
}

.pricing-card:hover {
  transform: translateY(-10px);
  border-color: var(--neon);
  box-shadow: 0 0 20px rgba(183, 255, 0, 0.4);
}

.pricing-card .pricing-top {
  background: var(--black);
  padding: 30px 20px;
  color: var(--white);
}

.pricing-card.active .pricing-top {
  background: var(--neon);
  color: var(--black);
}

.pricing-top .icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.pricing-top h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.pricing-top p {
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.pricing-top h2 {
  font-size: 1.8rem;
  font-weight: 700;
}

.pricing-top h2 span {
  font-size: 1rem;
  font-weight: 500;
}

.features {
  background: #181818;
  text-align: left;
  padding: 20px;
  list-style: none;
  flex-grow: 1;
}

.features li {
  padding: 8px 0;
  font-size: 0.95rem;
  color: #ccc;
}

/* Buttons */
.btn-pricing {
  display: inline-block;
  background: var(--neon);
  color: var(--black);
  padding: 12px 20px;
  margin: 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  border: 2px solid var(--neon);
}

.btn-pricing.dark {
  background: var(--black);
  color: var(--neon);
  border: 2px solid var(--neon);
}

.btn-pricing:hover {
  background: var(--black);
  color: var(--neon);
  border-color: var(--neon);
}

.btn-pricing.dark:hover {
  background: var(--neon);
  color: var(--black);
}

/* Responsive */
@media (max-width: 992px) {
  .pricing-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .pricing-cards {
    grid-template-columns: 1fr;
  }
}




:root {
  --neon: #b7ff00;
  --black: #000000;
  --white: #ffffff;
  --gray: #222;
}

.contact-section {
  background: var(--black);
  padding: 80px 20px;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.contact-info {
  color: var(--white);
}

.contact-info .sub-heading {
  color: var(--neon);
  font-size: 1rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 600;
}

.contact-info .heading {
  font-size: 2rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.contact-info p {
  color: #ccc;
  margin-bottom: 20px;
  line-height: 1.5;
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info ul li {
  margin-bottom: 10px;
  font-size: 1rem;
}

/* Form Box */
.contact-form-box {
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.contact-form-box h3 {
  color: var(--black);
  font-size: 1.4rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.contact-form .form-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  font-size: 1rem;
  border: 2px solid #ccc;
  border-radius: 6px;
  outline: none;
  transition: 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--neon);
  box-shadow: 0 0 10px rgba(183, 255, 0, 0.6);
}

.contact-form textarea {
  resize: none;
}

.btn-contact {
  display: inline-block;
  background: var(--neon);
  color: var(--black);
  padding: 12px 25px;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-contact:hover {
  background: var(--black);
  color: var(--neon);
  border: 2px solid var(--neon);
}






.map-box {
  margin-top: 40px;
  width: 100%;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}




/* ——— Utilities ——— */
.desktop-only { display: inline-flex; }
.mobile-only  { display: none; }
body.no-scroll { overflow: hidden; }

/* Header shell */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--light, #fff);
  box-shadow: 0 4px 20px rgba(0,0,0,.05);
}
.site-header .nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.logo img { width: 150px; height: auto; display: block; }

/* Desktop nav */
.nav-desktop .nav-list {
  list-style: none;
  display: flex;
  gap: 24px;
  align-items: center;
}
.nav-desktop a {
  color: var(--black, #000);
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 8px;
}
.nav-desktop a:hover {
  background: var(--accent, #b7ff00);
  color: var(--dark, #000);
  box-shadow: 0 0 10px var(--accent, #b7ff00);
}



/* CTA button look */
.btn.neon {
  background: var(--dark, #000);
  color: var(--accent, #b7ff00);
  padding: 10px 18px;
  border-radius: 28px;
  border: 2px solid var(--accent, #b7ff00);
  font-weight: 700;
}
.btn.neon:hover {
  background: var(--accent, #b7ff00);
  color: var(--dark, #000);
}

/* Mobile overlay nav (full screen) */
.site-nav {
  position: fixed;
  inset: 0;
  height: 100dvh;                    /* full device viewport height */
  background: var(--light, #fff);
  display: grid;
  place-content: center;
  padding: 96px 24px 32px;           /* space for close button */
  opacity: 0;
  transform: scale(.96);
  pointer-events: none;
  transition: opacity .28s ease, transform .28s ease;
  z-index: 1000;
  overflow: auto;                     /* long menus scroll instead of clipping */
}
.site-nav.open {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.nav-close {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 28px;
  line-height: 1;
  border: 0; background: transparent;
  cursor: pointer;
}
.nav-overlay-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin: 0; padding: 0;
  text-align: center;
}
.site-nav a {
  color: var(--black, #000);
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 8px;
}

/* Mobile dropdown turns into accordion */
.site-nav .dropdown { width: 100%; }
.site-nav .dropdown-content {
  position: static;
  display: none;
  background: transparent;
  box-shadow: none;
  padding-top: 6px;
}
.site-nav .dropdown.open .dropdown-content { display: block; }

/* Breakpoints */
@media (max-width: 900px) {
  .desktop-only { display: none !important; }
  .mobile-only  { display: inline-flex !important; }
}
@media (min-width: 901px) {
  .desktop-only { display: inline-flex !important; }
  .mobile-only  { display: none !important; }
}


/* ===== FINAL NAV FIX (put this at the very end) ===== */

/* Never clip dropdowns */
.site-header,
.site-header .container,
.nav-container {
  position: relative;
  overflow: visible !important;
}

/* Desktop dropdown must float above hero */
.dropdown-content {
  z-index: 10010 !important;
}

/* Mobile overlay MUST be above everything (hero/video/etc.) */
#site-nav.site-nav {
  position: fixed !important;
  inset: 0 !important;                 /* top/right/bottom/left: 0 */
  height: 100dvh !important;
  background: var(--light, #fff) !important;
  display: grid !important;
  place-content: center !important;
  padding: 96px 24px 32px !important;   /* space for ✕ button */
  opacity: 0;
  transform: translateZ(0) scale(.98);  /* new stacking context, no gaps */
  pointer-events: none;
  transition: opacity .28s ease, transform .28s ease;
  z-index: 2147483000 !important;       /* <- ABOVE ANYTHING */
  overflow: auto !important;            /* if list is long, scroll it */
}

/* When open */
#site-nav.site-nav.open {
  opacity: 1;
  transform: translateZ(0) scale(1);
  pointer-events: auto;
}

/* Close button always clickable */
#nav-close {
  position: absolute !important;
  top: 16px !important;
  right: 16px !important;
  font-size: 28px;
  line-height: 1;
  border: 0;
  background: transparent;
  cursor: pointer;
  z-index: 2147483001 !important;
}

/* Mobile list layout */
#site-nav .nav-overlay-list {
  list-style: none;
  display: flex !important;
  flex-direction: column !important;
  gap: 18px !important;
  align-items: center !important;
  text-align: center !important;
  margin: 0;
  padding: 0;
}

/* Mobile accordion behavior (no absolute) */
#site-nav .dropdown { width: 100%; }
#site-nav .dropdown-content {
  position: static !important;
  display: none;
  background: transparent !important;
  box-shadow: none !important;
  padding-top: 6px;
}
#site-nav .dropdown.open .dropdown-content { display: block; }




@media (max-width: 900px) {
  #site-nav .dropdown { width: 100%; }
  #site-nav .dropdown-content {
    position: static !important;
    display: none;
    background: transparent !important;
    box-shadow: none !important;
    padding-top: 6px;
  }
  #site-nav .dropdown.open .dropdown-content { display: block; } /* <- required */
}



/* Force the Home submenu to show inside the mobile overlay */
@media (max-width: 900px) {
  #site-nav .dropdown > .dropdown-content { 
    display: none !important;
    position: static !important;
    background: transparent !important;
    box-shadow: none !important;
    padding-top: 6px;
    margin-top: 6px;
  }
  /* when the LI has .open, show it (wins over any old rules) */
  #site-nav .dropdown.open > .dropdown-content {
    display: block !important;
  }
  /* make sure links look visible */
  #site-nav .dropdown-content a {
    color: #000 !important;
    padding: 10px 12px;
    display: block;
  }
}


/* === Helpers: show/hide by breakpoint === */
.desktop-only { display: none; }
.mobile-only { display: inline-flex; }
@media (min-width: 900px){
  .desktop-only { display: inline-flex; }
  .mobile-only { display: none; }
}

/* === Prevent clipping & stacking (you already added some; this is safe) === */
.site-header,
.site-header .container,
.nav-container { position: relative; overflow: visible !important; }
.dropdown-content { z-index: 10010 !important; }

/* === Desktop dropdown (hover) — no effect on mobile overlay === */
.nav-desktop .nav-list { display:flex; gap:18px; list-style:none; margin:0; padding:0; align-items:center; }
.nav-desktop .nav-list > li { position:relative; }
.nav-desktop a, .nav-desktop .dropbtn {
  padding:10px 12px; border-radius:10px; display:inline-flex; align-items:center; gap:6px;
}
.nav-desktop a:hover { background: rgba(0,0,0,.06); }

/* hide desktop dropdown by default */
.nav-desktop .dropdown > .dropdown-content{
  position:absolute; top: calc(100% + 8px); left:0; min-width:220px;
  list-style:none; margin:0; padding:8px;
  background:#111218; color:#eef1f5;
  border:1px solid rgba(255,255,255,.08); border-radius:14px;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  opacity:0; visibility:hidden; transform: translateY(6px);
  transition: .18s ease;
}
.nav-desktop .dropdown:hover > .dropdown-content{
  opacity:1; visibility:visible; transform: translateY(0);
}
.nav-desktop .dropdown-content a{ display:block; padding:10px 12px; border-radius:10px; color:#b7c0cc; }
.nav-desktop .dropdown-content a:hover{ background: rgba(255,255,255,.06); color:#eef1f5; }

/* === Hamburger animation (matches your HTML) === */
.hamburger {
  width:42px; height:42px; border-radius:12px;
  border:1px solid rgba(0,0,0,.12);
  display:grid; place-items:center; gap:4px; flex-direction:column;
  background:transparent;
}
.hamburger-line {
  width:22px; height:2px; background:#000; border-radius:2px; transition:.2s ease;
}
.hamburger[aria-expanded="true"] .hamburger-line:nth-child(1){ transform: translateY(6px) rotate(45deg); }
.hamburger[aria-expanded="true"] .hamburger-line:nth-child(2){ opacity:0; }
.hamburger[aria-expanded="true"] .hamburger-line:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }

/* === Mobile overlay list card (non-conflicting with your full-screen) === */
#site-nav .nav-overlay-list {
  max-width: 560px; width: min(92vw, 560px);
  background: transparent; /* you already set the page bg to white */
}


/* Hide the hamburger when overlay is open (prevents double X) */
.hamburger[aria-expanded="true"] { visibility: hidden; }

/* Make the close X fixed at top-right and always clickable */
#nav-close{
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 2147483647; /* above everything */
}

/* Center the mobile overlay list and its submenus */
#site-nav .nav-overlay-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  text-align: center;
  width: 100%;
}

/* Remove ul padding in the submenu and center links */
#site-nav .dropdown > .dropdown-content{
  list-style: none;
  margin: 6px 0 0 0;
  padding: 0;
  position: static !important;
  background: transparent !important;
  box-shadow: none !important;
}

/* Make submenu links centered with smaller height */
#site-nav .dropdown-content a{
  display: inline-block;         /* so text-align works cleanly */
  padding: 8px 14px;             /* smaller height */
  line-height: 1.2;
  font-size: 15px;               /* a bit smaller if you like */
  text-align: center;
}

/* Keep desktop dropdown floating above hero */
.nav-desktop .dropdown-content{ z-index: 10010 !important; }

/* Mobile: only show submenu when LI has .open */
@media (max-width:900px){
  #site-nav .dropdown .dropdown-content{ display: none !important; }
  #site-nav .dropdown.open .dropdown-content{ display: block !important; }
}





/* ========== DESKTOP DROPDOWN: smaller & tidy ========== */
.nav-desktop .dropdown-content{
  min-width: 180px;              /* was 220+ */
  padding: 6px;                  /* tighter box */
  border-radius: 10px;
}
.nav-desktop .dropdown-content a{
  font-size: 14px;               /* smaller text */
  padding: 8px 10px;             /* smaller row height */
  line-height: 1.2;
}

/* We'll show menu when .is-open is set by JS (gives us hover delay) */
.nav-desktop .dropdown > .dropdown-content{
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .16s ease, transform .16s ease, visibility 0s .16s;
}
.nav-desktop .dropdown.is-open > .dropdown-content{
  opacity: 1; visibility: visible; transform: translateY(0);
  transition: opacity .16s ease, transform .16s ease;
}

/* ========== MOBILE: center the submenu text ========== */
#site-nav .dropdown-content { text-align: center; }
#site-nav .dropdown-content a { display:block; }

/* ========== CLOSE BUTTON: ensure only one X shows ========== */
.nav-close{ display:none; }                 /* hidden by default */
.site-nav.open .nav-close{ display:block; } /* only when overlay open */

/* Make sure the hamburger turns into X only when expanded */
#hamburger[aria-expanded="true"] .hamburger-line:nth-child(1){ transform: translateY(6px) rotate(45deg); }
#hamburger[aria-expanded="true"] .hamburger-line:nth-child(2){ opacity:0; }
#hamburger[aria-expanded="true"] .hamburger-line:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }








/* ========== DESKTOP DROPDOWN: align, smaller, and "wait" friendly ========== */
.nav-desktop .dropdown { position: relative; }
.nav-desktop .dropdown-content{
  position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 180px;              /* smaller */
  padding: 6px;                  /* tighter padding */
  border-radius: 12px;
  background: #111218;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .15s ease, transform .15s ease, visibility .15s;
  pointer-events: none;          /* prevents flicker when leaving the button */
  z-index: 10010;
}
.nav-desktop .dropdown-content a{
  display:block; padding: 6px 10px;   /* smaller item height */
  font-size: 14px; line-height: 1.25;
  border-radius: 8px; color:#d9dee7;
}
.nav-desktop .dropdown-content a:hover{ background: rgba(255,255,255,.08); }

/* class set by JS to hold the menu open with a tiny delay */
.nav-desktop .dropdown.hover-open > .dropdown-content{
  opacity: 1; visibility: visible; transform: translateY(0);
  pointer-events: auto;
}

/* ========== MOBILE OVERLAY CLEANUP ========== */
/* When menu is open, hide the hamburger so you don’t see two X icons */
body.menu-open #hamburger{ visibility: hidden; }

/* Mobile accordion inside overlay */
@media (max-width: 900px){
  #site-nav .dropdown { width: 100%; }
  #site-nav .dropdown > .dropdown-content{
    position: static !important;
    display: none;
    background: transparent !important;
    box-shadow: none !important;
    padding: 6px 0 8px;
    margin-top: 4px;
  }
  #site-nav .dropdown.open > .dropdown-content{ display:block; }
  #site-nav .dropdown-content a{ color:#000; } /* your white overlay uses dark text */
}

/* Make sure nothing clips over the hamburger */
.site-header, .site-header .container, .nav-container{
  position:relative; overflow:visible !important;
}



.nav-item.has-dropdown { position: relative; }
.nav-item .nav-link { padding: 10px 14px; cursor: pointer; }

.nav-item .dropdown{
  position: absolute;           /* stays anchored under Home */
  top: calc(100% + 6px);
  left: 0;
  min-width: 180px;
  max-height: 240px;            /* compact; scroll if long */
  overflow: auto;
  padding: 6px;
  border-radius: 12px;
  background: #151515;
  box-shadow: 0 12px 28px rgba(0,0,0,.35);
  z-index: 1000;
  opacity: 0; visibility: hidden; transform: translateY(4px);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
}
.nav-item .dropdown a{ display:block; padding:6px 12px; line-height:1.2; color:#f3f3f3; text-decoration:none; border-radius:8px; }
.nav-item .dropdown a:hover{ background:rgba(255,255,255,.06); }

/* OPEN = fixed visible until a click closes it */
.nav-item.open > .dropdown{
  opacity: 1; visibility: visible; transform: translateY(0);
  pointer-events: auto;
  transition: opacity .18s ease, transform .18s ease, visibility 0s;
}

/* remove any hover-open behavior you might have */
@media (hover:hover){ .nav-item.has-dropdown:hover > .dropdown{ opacity:0; visibility:hidden; pointer-events:none; transform:translateY(4px); } }


/* hidden by default */
.dropdown .dropdown-content {
  opacity: 0; visibility: hidden; transform: translateY(4px);
  pointer-events: none;
  position: absolute; top: calc(100% + 6px); left: 0;
  z-index: 1000;
  transition: opacity .18s, transform .18s, visibility 0s linear .18s;
}

/* visible when toggled */
.dropdown.open > .dropdown-content {
  opacity: 1; visibility: visible; transform: translateY(0);
  pointer-events: auto;
  transition: opacity .18s, transform .18s, visibility 0s;
}




/* === FINAL DESKTOP DROPDOWN (≥901px) — no flicker, stays while you move === */
@media (min-width: 901px) {
  .nav-desktop .nav-list > .dropdown { position: relative; }

  .nav-desktop .dropdown > .dropdown-content {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 180px;
    padding: 6px;
    border-radius: 12px;
    background: #151515;
    border: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 12px 28px rgba(0,0,0,.35);
    z-index: 10010;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    pointer-events: none; /* prevents “fast close” flicker gap */
    transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
  }

  .nav-desktop .dropdown:hover > .dropdown-content,
  .nav-desktop .dropdown.hover-open > .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    transition: opacity .18s ease, transform .18s ease, visibility 0s;
  }

  .nav-desktop .dropdown-content a {
    display: block;
    padding: 8px 12px;
    line-height: 1.25;
    color: #f3f3f3;
    border-radius: 8px;
  }
  .nav-desktop .dropdown-content a:hover {
    background: rgba(255,255,255,.08);
  }

  /* make sure nothing clips it */
  .site-header, .site-header .container, .nav-container { overflow: visible !important; }
}




/* Remove outline or border around the hamburger button */
#hamburger {
  outline: none;
  border: none;
  background: none;
  box-shadow: none;
}

/* Also remove it on focus and active states */
#hamburger:focus,
#hamburger:active {
  outline: none;
  box-shadow: none;
}




/* ---------- Header: make logo + hamburger align on one line ---------- */

/* base header row (apply to your header inner wrapper) */
header > .container,
header .site-inner,
header .header-inner {              /* try common wrapper selectors */
  display: flex;
  align-items: center;              /* vertically center items */
  justify-content: space-between;   /* logo left, hamburger right */
  gap: 12px;
  width: 100%;
  box-sizing: border-box;
  padding: 12px 16px;               /* adjust as needed */
}

/* logo: ensure it doesn't exceed header height */
.logo,
.site-logo,
.header-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: inherit;
  height: 50px;                     /* header height */
  line-height: 1;
}
.logo img,
.site-logo img,
.header-logo img {
  max-height: 50px;                 /* keeps image aligned */
  width: auto;
  display: block;
}

/* hamburger: normalize size and remove any absolute offsets */
.hamburger,
#hamburger,
.hamburger-btn,
.mobile-open {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 0;
  padding: 6px;
  border-radius: 8px;
  cursor: pointer;
  position: static !important;      /* override absolute/fixed positioning */
  top: auto !important;
  right: auto !important;
  margin: 0;
}

/* hamburger lines (visual) */
.hamburger-line {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  margin: 3px 0;
  border-radius: 2px;
}

/* mobile-only visibility (adjust breakpoint to your site's) */
@media (max-width: 900px) {
  /* hide desktop nav if present */
  .site-nav:not(.mobile-only) { display: none !important; }

  /* show mobile-only elements */
  .mobile-only { display: block !important; }

  /* make sure header uses the flex row we set above */
  header > .container,
  header .site-inner,
  header .header-inner { padding-left: 14px; padding-right: 14px; }

  /* ensure nav overlay doesn't cover header area (starts under header) */
  .site-nav.mobile-only,
  nav#site-nav {
    position: fixed;
    inset: 0;
    top: 64px;                /* leave header visible (header height) */
    padding-top: 14px;
    overflow: auto;
    background: var(--primary); /* or your overlay color */
    z-index: 120;
  }
}

/* desktop: ensure mobile-only hidden */
@media (min-width: 901px) {
  .mobile-only { display: none !important; }
}
