/* Tablet menu drawer (up to 991px) */
@media (max-width: 991px) {
  .hamburger { display: flex !important; }
  .header-join { display: none; }

  .site-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: #ffffff;
    border-left: 1px solid #eaeaea;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 999;
    padding: 80px 0 20px;
    display: block !important;
    visibility: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .site-nav.open { right: 0; visibility: visible; }

  .site-nav ul {
    display: flex !important;
    flex-direction: column;
    gap: 0;
    padding: 0 20px;
    list-style: none;
    margin: 0;
  }

  .site-nav li { border-bottom: 1px solid #f0f0f0; }
  .site-nav li:last-child { border-bottom: none; }

  .site-nav a {
    display: block !important;
    padding: 14px 0;
    color: #111 !important;
    font-size: 15px;
    font-weight: 500;
    border-radius: 0;
    border: none;
    text-decoration: none;
  }

  .site-nav a:hover, .site-nav a:focus {
    background: #f8f9fa;
    color: #111 !important;
    border: none;
    border-radius: 0;
  }

  .site-nav::before {
    content: '';
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: 0; /* below nav content but above page */
    opacity: 0; transition: opacity 0.3s ease;
  }
  .site-nav.open::before { opacity: 1; }

  /* Create a new stacking context so nav scrolls, overlay stays behind */
  .site-nav { position: fixed; z-index: 1000; }
}
#logo-loader {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: black;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
#logo-loader img {
  width: 120px;
  height: auto;
  animation: rotateLogo 1s linear infinite;
}
@keyframes rotateLogo {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.faq-left img {
  margin-top: 32px;
  display: block;
}
.highlight-black-green {
  background: #111;
  color: var(--color-neon);
  padding: 4px 12px;
  border-radius: 8px;
}
img:hover, .image-section img:hover, .about-image img:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 8px 32px 0 #111, 0 2px 8px rgba(0,0,0,0.25);
  transition: transform 0.25s cubic-bezier(.4,2,.3,1), box-shadow 0.25s;
  filter: brightness(1.08) contrast(1.1);
}
.about-btn {
  background: var(--color-primary);
  color: #fff;
  padding: 12px 32px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  display: inline-block;
  margin-top: 24px;
}
.about-btn:hover {
  background: #111;
  color: var(--color-neon);
}
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css");

.highlight-black {
  background: #111;
  color: #fff;
  padding: 4px 12px;
  border-radius: 8px;
}

/* Base CSS for Stackly HTML Template */
:root {
  --color-bg: #0f1222;
  --color-surface: #151935;
  --color-text: #e7e9f3;
  --color-muted: #a3a9c9;
  --color-primary: #6c8cff;
  --color-primary-600: #5678ff;
  --color-accent: #22d1ee;
  --color-neon: #d7ff33; /* Racqon-style neon */
  --hero-height: 100vh;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-md: 0 6px 22px rgba(0,0,0,0.25);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: ui-sans-serif, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--color-text);
  background: radial-gradient(1200px 700px at 80% -10%, rgba(108,140,255,0.12), transparent 60%),
              radial-gradient(800px 600px at 10% -10%, rgba(34,209,238,0.12), transparent 50%),
              var(--color-bg);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { color: var(--color-muted); line-height: 1.7; }

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */

.site-header {
  position: static;
  z-index: 50;
  backdrop-filter: saturate(140%) blur(8px);
  background: rgba(15, 18, 34, 0.7);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo {
  font-weight: 800;
  letter-spacing: 0.4px;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.site-header.light .logo { font-size: 18px; }
.logo img { height: 28px; width: auto; display: block; }
.site-nav ul {
  display: flex;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav a {
  padding: 4px 8px;
  border-radius: 10px;
  color: var(--color-muted);
  font-size: 13px;
}
.site-nav a:hover, .site-nav a:focus {
  color: #fff;
  background: rgba(255,255,255,0.06);
}
/* Hamburger Menu Styles */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background: #111;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: translateX(20px);
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.nav-toggle {
  display: none;
  background: var(--color-surface);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 10px 12px;
  border-radius: 10px;
}


/* Light header with centered navigation */
.site-header.light { background: #ffffff; border-bottom: 1px solid #eaeaea; backdrop-filter: none; }
.site-header.light .logo { color: #111111; }
.site-header.light .site-nav a, .site-header.light .site-nav a:visited { color: #111111; }
.site-header.light .site-nav a:hover, .site-header.light .site-nav a:focus { color: #111; background: rgba(0,0,0,0.06); }

/* Nav hover: small square box effect */
.site-nav a { position: relative; transition: background .2s ease, color .2s ease, border-color .2s ease, border-radius .2s ease; }
.site-header.light .site-nav a:hover, .site-header.light .site-nav a:focus,
.site-header .site-nav a:hover, .site-header .site-nav a:focus {
  border: 2px solid #111111;
  background: #111111;
  color: var(--color-neon);
  border-radius: 0;
}
.site-header.center-nav .container { display: grid; grid-template-columns: auto 1fr auto; align-items: center; }
.site-header.center-nav .site-nav ul { justify-content: center; }

/* Mobile Responsive Design */

/* Tablet and below (768px and below) */
@media (max-width: 768px) {
  .hamburger {
    display: flex !important;
  }
  
  .header-join {
    display: none;
  }
  
  /* Hide the regular navigation */
  .site-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #ffffff;
    border-left: 1px solid #eaeaea;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 999;
    padding: 80px 0 20px;
    display: block !important;
    visibility: hidden;
    overflow-y: auto; /* allow scrolling inside menu */
    -webkit-overflow-scrolling: touch; /* smooth scrolling on iOS */
  }
  
  .site-nav.open {
    right: 0;
    visibility: visible;
  }
  
  .site-nav ul {
    display: flex !important;
    flex-direction: column;
    gap: 0;
    padding: 0 20px;
    list-style: none;
    margin: 0;
  }
  
  .site-nav li {
    border-bottom: 1px solid #f0f0f0;
  }
  
  .site-nav li:last-child {
    border-bottom: none;
  }
  
  .site-nav a {
    display: block !important;
    padding: 16px 0;
    color: #111 !important;
    font-size: 16px;
    font-weight: 500;
    border-radius: 0;
    border: none;
    text-decoration: none;
  }
  
  .site-nav a:hover,
  .site-nav a:focus {
    background: #f8f9fa;
    color: #111 !important;
    border: none;
    border-radius: 0;
  }
  
  /* Overlay for mobile menu */
  .site-nav::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .site-nav.open::before {
    opacity: 1;
  }
}

/* Mobile landscape (640px and below) */
@media (max-width: 640px) {
  .container {
    padding: 0 16px;
  }
  
  .site-header .container {
    padding: 8px 16px;
  }
  
  .logo {
    font-size: 16px;
  }
  
  .logo img {
    height: 24px;
  }
  
  .site-nav {
    width: 100%;
    right: -100%;
  }
  
  .site-nav.open {
    right: 0;
  }
}

/* Small mobile (480px and below) */
@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }
  
  .site-header .container {
    padding: 6px 12px;
  }
  
  .logo {
    font-size: 14px;
  }
  
  .logo img {
    height: 20px;
  }
}

/* Hero */
.hero {
  padding: 80px 0 40px;
}
.hero-static { 
  min-height: var(--hero-height);
  padding: 120px 0; 
  background: #ffffff;
  color: #111111; 
}
.hero-static .muted { color: #555555; }
.title-display { font-size: clamp(48px, 10vw, 128px); line-height: 0.88; letter-spacing: -1.6px; margin: 10px 0; font-weight: 900; text-transform: uppercase; }
.title-display .line { display: inline; }
.highlight-block { display: inline-block; padding: 8px 12px; background: var(--color-neon); color: #111; border-radius: 8px; box-shadow: 0 8px 0 rgba(0,0,0,0.08) inset; }
.hero .eyebrow {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(108,140,255,0.15);
  color: #cdd7ff;
  font-size: 14px;
}
.hero h1 { font-size: 40px; line-height: 1.1; margin: 16px 0 12px; }
.hero p { font-size: 18px; max-width: 720px; }

.cta-group { display: flex; gap: 12px; margin-top: 22px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 12px 16px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.16); background: var(--color-surface); color: #fff; transition: background .2s ease, color .2s ease, border-color .2s ease, border-radius .2s ease; }
.btn.primary { background: linear-gradient(135deg, var(--color-primary), var(--color-primary-600)); border: none; }
.btn.ghost { background: transparent; }
.btn.neon { background: var(--color-neon); color: #111; border: none; font-weight: 800; }
.btn.outline-dark {
  background: var(--color-neon);
  color: #111;
  border: none;
  font-weight: 800;
}
.header-join { padding: 10px 14px; border-radius: 999px; }

/* Button hover: square corners and black background */
.btn:hover, .btn:focus { background: #111111; color: var(--color-neon); border-color: #111111; border-radius: 0; }
.btn.outline-dark:hover, .btn.outline-dark:focus { background: #111111; color: var(--color-neon); border-color: #111111; border-radius: 0; }
.btn.neon:hover, .btn.neon:focus { background: #111111; color: var(--color-neon); border-color: #111111; border-radius: 0; }

/* Media */
.media { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.media video, .media img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* Hero overlay on video */
.hero-overlay { position: relative; padding: 0; }
.hero-overlay .media-full { position: relative; height: var(--hero-height); border-radius: 0; border: none; background: #000; }
.hero-overlay .media-full video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.hero-overlay .overlay { position: absolute; inset: 0; z-index: 2; display: flex; align-items: center; }
.hero-overlay .overlay .scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,0.55), rgba(0,0,0,0.15) 60%, rgba(0,0,0,0)); z-index: 0; }
.hero-overlay .overlay .container { position: relative; z-index: 1; color: #fff; }

/* Video column inside hero without box styling */
.hero-static .grid.cols-2 { align-items: stretch; position: relative; overflow: visible; }
.hero-static .grid.cols-2 > div { min-height: var(--hero-height); display: flex; align-items: center; }
.hero-static .title-display { position: relative; z-index: 2; }
.hero-static .hero-video { height: var(--hero-height); z-index: 1; position: relative; }
.hero-static .hero-video video { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-static .hero-video .overlay { position: absolute; inset: 0; display: flex; align-items: center; z-index: 2; }
.hero-static .hero-video .overlay::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,0.55), rgba(0,0,0,0.15) 60%, rgba(0,0,0,0)); z-index: 0; }
.hero-static .hero-video .overlay .inner { position: relative; z-index: 1; padding: 0 24px; color: #ffffff; }

/* Contact hero: make photo big on the right */
.contact-hero {
  background: #ffffff;
  color: #111;
  padding: 60px 20px;
}

.contact-hero .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap; /* allows text & image to stack on small screens */
  gap: 40px;       /* space between text & image */
}

/* Text Section */
.text-section {
  flex: 1 1 45%;  /* takes 45% width */
}

.text-section .title-display {
  font-size: clamp(50px, 6vw, 80px);
  margin: 10px 10px  10px 20px;
}

.text-section .highlight-block {
  background: #111;
  color: #d6ff33;
  padding: 4px 8px;
}

.text-section .breadcrumb {
  font-size: 16px;
  color:black;
  margin: 0;
}

.text-section .breadcrumb a {
  color: black;
  text-decoration: none;
  transition: color 0.3s;
  margin-left: 20pxs;
}

.text-section .breadcrumb a:hover {
  color:#d6ff33;
}

/* Image Section */
.image-section {
  flex: 1 1 50%; /* takes 50% width */
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-section img {
  width: 50%;   /* adjust as needed */
  height: auto;
  object-fit: cover;
  border-radius: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-hero .container {
    flex-direction: column;
  }

  .text-section, .image-section {
    flex: 1 1 100%;
  }

  .image-section {
    margin-top: 20px;
  }
}



/*CONTACT 2 */
/* Container */
/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #fff;
  color: #111;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Heading */
.contact-header {
  text-align: center;
  margin-bottom: 40px;
}

.subheading {
  font-size: 14px;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.main-heading {
  font-size: 48px;
  font-weight: 800;
  text-transform: uppercase;
  color: #000;
}

.main-heading .highlight {
  background: #000;
  color: #d6ff33;
  padding: 0 12px;
}

/* Layout */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* Left Image */
.contact-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

/* Form */
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
}

.contact-form textarea {
  resize: none;
}

.checkbox {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.submit-btn {
  padding: 14px 24px;
  background: #d6ff33;
  color: #000;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: #000;
  color: #d6ff33;
}


  .contact-image,
  .contact-form-section {
    flex: 1 1 100%;
  }

  .contact-image img {
    margin-bottom: 20px;
  }





/* Promo bar */
.promo-bar { background: var(--color-neon); color: #111; text-align: center; padding: 10px 14px; font-weight: 700; }
.promo-bar a { color: inherit; text-decoration: underline; }

/* Sections */
section { padding: 60px 0; }
.section-header { margin-bottom: 26px; }
.section-header h2 { margin: 0 0 8px; }
.grid { display: grid; gap: 18px; }
.grid.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
/* Hero Mobile Responsive */
@media (max-width: 768px) {
  .hero-static {
    padding: 80px 0 60px;
    min-height: 80vh;
  }
  
  .title-display {
    font-size: clamp(32px, 8vw, 64px);
    line-height: 0.9;
    margin: 20px 0;
  }
  
  .hero p {
    font-size: 16px;
    margin-bottom: 24px;
  }
  
  .cta-group {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 16px;
  }
}

@media (max-width: 640px) {
  .hero-static {
    padding: 60px 0 40px;
    min-height: 70vh;
  }
  
  .title-display {
    font-size: clamp(28px, 7vw, 48px);
    line-height: 0.95;
  }
  
  .hero p {
    font-size: 15px;
  }
  
  .cta-group {
    gap: 10px;
  }
  
  .btn {
    padding: 12px 18px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .hero-static {
    padding: 40px 0 30px;
    min-height: 60vh;
  }
  
  .title-display {
    font-size: clamp(24px, 6vw, 36px);
  }
  
  .hero p {
    font-size: 14px;
  }
}

/* Grid Responsive */
@media (max-width: 900px) {
  .grid.cols-3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .grid.cols-3, .grid.cols-2 { grid-template-columns: 1fr; }
}

.card { background: var(--color-surface); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: 20px; box-shadow: var(--shadow-md); }
.card h3 { margin-top: 0; }
.muted { color: var(--color-muted); }

/* Lists */
.list { list-style: none; padding: 0; margin: 0; }
.list li { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; }

/* Footer */
.site-footer { border-top: 1px solid rgba(255,255,255,0.06); padding: 30px 0; background: rgba(0,0,0,0.12); margin-top: 40px; }
.site-footer .container { display: block; }


/* Footer CTA */
.footer-cta { padding: 30px 0 10px; }
.title-display.center { text-align: center; color: #111; }
.title-display.center .highlight-block { background: #111; color: var(--color-neon); }

/* Footer Grid */
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: start; margin-top: 10px; }
.footer-col { background: transparent; border: 0; border-radius: 0; padding: 0; }
.footer-heading { margin: 0 0 10px; color: #111; font-size: 16px; font-weight: 800; text-transform: uppercase; letter-spacing: .5px; }

.footer-socials li a, .footer-links li a { color: #111; }
.footer-socials { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.footer-links { display: flex; gap: 18px; flex-wrap: nowrap; align-items: center; white-space: nowrap; }

/* Box buttons for footer items */
.footer-links li a {
  display: inline-block;
  padding: 0;
  min-width: 0;
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #111;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .2px;
  text-transform: uppercase;
  transition: color .2s ease;
}

.footer-links li a:hover,
.footer-links li a:focus { color: red; }

.footer-links li a { height: auto; min-width: 0; }

/* Social icons: small, no boxes */
.footer-socials .icon { width: 22px; height: 22px; color: #111; }
.footer-socials a { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 8px; transition: transform .08s ease, color .2s ease; }
.footer-socials a:hover, .footer-socials a:focus { color: var(--color-neon); transform: translateY(-1px); }

/* Simple disclosure/dropdown used on Services and Blog */
.disclosure { margin-top: 16px; }
.disclosure-toggle { display: inline-flex; align-items: center; gap: 8px; background: transparent; border: 2px solid #111; color: #111; padding: 10px 14px; border-radius: 10px; font-weight: 800; cursor: pointer; }
.disclosure-toggle:hover, .disclosure-toggle:focus { background: #111; color: var(--color-neon); border-radius: 0; }
.disclosure-toggle .chevron { transition: transform .2s ease; display: inline-block; }
.disclosure-toggle[aria-expanded="true"] .chevron { transform: rotate(180deg); }
.disclosure-panel { margin-top: 10px; padding: 14px; border: 1px solid #eaeaea; border-radius: 10px; background: #fff; }
.disclosure-panel .list a { color: #111; font-weight: 800; }
.disclosure-panel .list a:hover { color: var(--color-neon); }

/* Footer bottom */
.footer-bottom { margin-top: 18px; padding-top: 14px; border-top: 1px solid #eaeaea; }
.footer-about p { margin: 0; color: #111; }

/* Footer Mobile Responsive */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .site-footer { padding: 24px 0; }
  .footer-cta { padding: 20px 0 6px; }
  .footer-links li a { font-size: 13px; }
}

/* Blog */
.blog-layout { display: grid; grid-template-columns: 3fr 1fr; gap: 20px; }
@media (max-width: 900px) { .blog-layout { grid-template-columns: 1fr; } }
.sidebar .widget { background: var(--color-surface); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-md); padding: 16px; margin-bottom: 16px; }
.post { background: var(--color-surface); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: 18px; }
.post h3 { margin-top: 0; }
.search-input { width: 100%; padding: 12px 14px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.16); background: rgba(0,0,0,0.2); color: #fff; }

/* Tables */
table { width: 100%; border-collapse: collapse; }
th, td { padding: 12px 10px; border-bottom: 1px solid rgba(255,255,255,0.08); text-align: left; }





  .contact-map {
  width: 100%;
  max-width: 700px;
  margin: 40px auto;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  border-radius: 16px;
  overflow: hidden;
}
.contact-map iframe {
  width: 100%;
  height: 450px;
  border: none;
  border-radius: 16px;
  display: block;
}



/*about us  START */

.about-section {
  background: #fff;
  padding: 80px 0;
  font-family: 'Poppins', sans-serif;
  color: #000;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 60px;
  padding: 0 40px;
}

.about-image img {
  width: 500px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.about-content {
  flex: 1;
}

.about-subtitle {
  font-weight: 600;
  color: #999;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.about-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-title span {
  color: #c8ff3d; /* lime green highlight like 2nd image */
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 30px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.about-item h3 {
  color: #000;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.about-item p {
  color: #555;
  font-size: 0.95rem;
}

.about-btn {
  display: inline-block;
  background: #c8ff3d;
  color: #000;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.about-btn:hover {
  background: #000;
  color: #c8ff3d;
}

h3 i {
  color: #c8ff3d; /* neon lime fitness accent */
  margin-right: 10px;
  font-size: 1.3rem;
  vertical-align: middle;
}


body{
  background: #fff;
  color: #000;
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
}

.method-section {
  background: #fff;
  padding: 80px 10%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.method-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  align-items: center;
  gap: 40px;
}

/* Left Section */
.method-left h4 {
  color: #111;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.method-left h4 i {
  color: #c8ff3d;
  margin-right: 8px;
  font-size: 1.1rem;
}

.method-left h2 {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.3;
  color: #111;
}

.method-left h2 span {
  color: #c8ff3d;
  background: #111;
  padding: 2px 8px;
  border-radius: 4px;
}

.method-left p {
  margin: 20px 0 30px;
  color: #333;
  font-size: 1rem;
}

.contact-btn {
  background: #c8ff3d;
  color: #000;
  border: none;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-btn i {
  margin-left: 8px;
}

.contact-btn:hover {
  background: #111;
  color: var(--color-neon);
  transform: translateY(-3px);
}

/* Center Image */
.method-center img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

/* Right Cards */
.method-right {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.card {
  background: #f4f4f4;
  border-radius: 20px;
  padding: 25px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  transition: 0.3s ease;
  border: 1px solid #eee;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.icon {
  background: #c8ff3d;
  color: #000;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
}

.card-content h3 {
  color: #111;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.card-content p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}


@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css");

body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  background-color: #fff;
  color: #000;
}

/* Section Base */
.fitness-goal {
  background-color: #fff;
  color: #000;
  padding: 80px 10%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.goal-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.goal-left {
  flex: 1;
  min-width: 320px;
}

.goal-left h4 {
  font-size: 1rem;
  color: #c8ff3d;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.goal-left h2 {
  font-size: 2.3rem;
  margin-bottom: 25px;
  line-height: 1.3;
}

.goal-left h2 span {
  color: #c8ff3d;
}

.feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 15px;
}

.feature i {
  font-size: 1.5rem;
  color: #c8ff3d;
  flex-shrink: 0;
}

.feature h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.feature p {
  color: #444;
  line-height: 1.5;
}

.goal-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-width: 320px;
}

.image-wrapper {
  position: relative;
  width: 100%;
  max-width: 400px;
}

.image-wrapper img {
  width: 100%;
  border-radius: 12px;
  position: relative;
  z-index: 2;
  display: block;
}

.badge {
  position: absolute;
  background: #000;
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
}

.badge i {
  color: #c8ff3d;
  font-size: 1.2rem;
}

.badge span {
  color: #c8ff3d;
  font-weight: bold;
  font-size: 1rem;
}

.top-badge {
  top: 10%;
  right: -15%;
}

.bottom-badge {
  bottom: 10%;
  left: -15%;
}

@media (max-width: 768px) {
  .goal-container {
    flex-direction: column;
    text-align: center;
  }

  .feature {
    justify-content: center;
  }

  .top-badge,
  .bottom-badge {
    position: static;
    margin-top: 15px;
  }
}


.fitness-journey {
  background: #fff;
  color: #000;
  text-align: center;
  padding: 80px 10%;
}

.fitness-journey h4 {
  color: #c8ff3d;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1rem;
  margin-bottom: 10px;
}

.fitness-journey h2 {
  font-size: 2.5rem;
  margin-bottom: 60px;
}

.fitness-journey h2 span {
  color: #c8ff3d;
}

.journey-container {
  max-width: 1200px;
  margin: 0 auto;
}

.journey-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

/* Left and Right Columns */
.journey-left,
.journey-right {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* Feature Boxes */
.journey-feature {
  text-align: center;
  max-width: 250px;
  margin: 0 auto;
}

.journey-feature i {
  font-size: 2rem;
  color: #c8ff3d;
  margin-bottom: 15px;
}

.journey-feature h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.journey-feature p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
}

/* Center Image */
.journey-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.journey-image img {
  width: 350px;
  max-width: 100%;
  border-radius: 12px; /* slightly rounded corners */
  object-fit: cover;
  display: block;
}

/* Responsive */
@media (max-width: 992px) {
  .journey-content {
    flex-direction: column;
  }

  .journey-image img {
    width: 280px;
    margin: 40px 0;
  }
}



.why-choose {
  background: #fff;
  color: #000;
  padding: 80px 10%;
}

.choose-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 60px;
}

/* ---------- LEFT SECTION ---------- */
.choose-left {
  flex: 1;
  min-width: 320px;
}

.choose-left h4 {
  font-size: 1rem;
  color: #c8ff3d;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.choose-left h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.3;
}

.choose-left h2 span {
  color: #c8ff3d;
}

.choose-left p {
  color: #444;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* ---------- STEPS ---------- */
.choose-steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.circle {
  background: #c8ff3d;
  color: #000;
  font-weight: bold;
  font-size: 1rem;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.circle::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 50px;
  background: #ccc;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
}

.step:last-child .circle::after {
  display: none;
}

.step-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.step-content p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
}

/* ---------- RIGHT SECTION ---------- */
.choose-right {
  flex: 1;
  min-width: 320px;
  position: relative;
}

.image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 15px;
}

.image-grid img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.image-grid img:first-child {
  grid-column: span 2;
  height: 300px;
}

.image-grid img:nth-child(2),
.image-grid img:nth-child(3) {
  height: 200px;
}

/* ---------- CONTACT BADGE ---------- */
.contact-badge {
  position: absolute;
  bottom: 25%;
  right: 10%;
  background: #c8ff3d;
  color: #000;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
  transform: rotate(-15deg);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
  .choose-container {
    flex-direction: column;
  }

  .choose-right {
    order: -1;
  }

  .contact-badge {
    display: none;
  }
}


.faq-section {
  background: #fff;
  color: #000;
  padding: 80px 10%;
}

.faq-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 60px;
}

/* LEFT SIDE SINGLE IMAGE */
.faq-left {
  flex: 0.8;
  min-width: 250px;
  display: flex;
  justify-content: flex-start;
}

.faq-left img {
  width: 250px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

/* RIGHT SIDE CONTENT */
.faq-right {
  flex: 2;
  min-width: 320px;
}

.faq-right h4 {
  font-size: 1rem;
  color: #c8ff3d;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.faq-right h2 {
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 40px;
  line-height: 1.3;
}

.faq-right h2 span {
  color: #c8ff3d;
}

/* FAQ BOX */
.faq-box {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active {
  border-color: #c8ff3d;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-question {
  background: #f7f7f7;
  color: #000;
  font-weight: 700;
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item.active .faq-question {
  background: #c8ff3d;
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  background: #fff;
  padding: 15px 20px;
  border-top: 1px solid #ddd;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  display: block;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .faq-container {
    flex-direction: column;
  }

  .faq-left {
    justify-content: center;
  }

  .faq-left img {
    width: 200px;
    margin-bottom: 30px;
  }
}


/*membership page*/
/* Section base */
.membership-section {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #fff;
  overflow: hidden;
  background-color: #000;
}

/* Background video */
.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Overlay to darken the video */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

/* Main content */
.membership-content {
  position: relative;
  z-index: 3;
  max-width: 600px;
  padding: 0 5%;
  color: #fff;
}

.membership-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 25px;
}

.membership-content h2 span {
  color: #c8ff3d;
}

.membership-content ul {
  list-style: none;
  margin-bottom: 30px;
}

.membership-content ul li {
  font-size: 1.1rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.membership-content ul li i {
  color: #c8ff3d;
}

/* Button */
.membership-btn {
  background: #c8ff3d;
  color: #000;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: 0.3s ease;
}

.membership-btn:hover {
  background: #aefc1a;
}

/* Responsive */
@media (max-width: 768px) {
  .membership-section {
    height: auto;
    padding: 60px 0;
  }

  .membership-content h2 {
    font-size: 1.8rem;
  }
}

/* ABOUT-PAGE END*/


/* SERVICES PAGE START*/

/* === Services Section === */
/* service GRID*/
.services-section {
  background: #fff;
  padding: 80px 10%;
  font-family: "Poppins", sans-serif;
  color: #000;
}

.services-container {
  text-align: center;
}

.services-container h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.services-container h2 span {
  color: #c8ff3d;
  background-color: black;
}

.services-container .intro-text {
  color: #333;
  font-size: 1rem;
  margin-bottom: 50px;
}

/* === Grid Layout === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* === Service Card === */
.service-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

/* === Image Section === */
.service-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

/* === Content === */
.service-content {
  padding: 20px;
  text-align: left;
}

.service-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #000;
}

.read-more {
  color: #000;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s ease;
}

.read-more i {
  color: #c8ff3d;
  transition: 0.3s ease;
}

.read-more:hover {
  color: #c8ff3d;
}

.read-more:hover i {
  transform: translateX(4px);
}

/* === Responsive === */
@media (max-width: 768px) {
  .services-container h2 {
    font-size: 2rem;
  }

  .service-image {
    height: 200px;
  }
}


/* services 1 css means that first content */

/* ==================== SERVICE DETAILS ==================== */
.service-details {
  background: #fff;
  color: #000;
  padding: 80px 10%;
  font-family: "Poppins", sans-serif;
}

.service-container {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* ==================== SIDEBAR ==================== */
.service-sidebar {
  flex: 1;
  min-width: 280px;
  background: #f9f9f9;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);

  /* --- STICKY BEHAVIOR --- */
  position: sticky;
  top: 100px; /* distance from top before sticking */
  align-self: flex-start;
  height: fit-content;
  z-index: 10;
}

.service-sidebar h3 {
  color: #000;
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.service-sidebar ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.service-sidebar ul li {
  margin-bottom: 12px;
}

.service-sidebar ul li a {
  display: block;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 12px 15px;
  text-decoration: none;
  color: #000;
  font-weight: 600;
  transition: all 0.3s ease;
}

.service-sidebar ul li a:hover,
.service-sidebar ul li a.active {
  background: #c8ff3d;
  color: #000;
  border-color: #c8ff3d;
}

/* ==================== QUOTE BOX ==================== */
.quote-box {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 30px;
}

.quote-box img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.quote-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.quote-overlay h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.quote-overlay p {
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.quote-btn {
  background: #c8ff3d;
  color: #000;
  font-weight: 700;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 6px;
  transition: 0.3s ease;
}

.quote-btn:hover {
  background: #b3ff00;
}

/* ==================== RIGHT CONTENT ==================== */
.service-content {
  flex: 2;
  min-width: 300px;
}

.service-image {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 30px;
}

.service-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 12px;
}

.service-text h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #000;
}

.service-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
}

.service-points {
  list-style: none;
  padding: 0;
}

.service-points li {
  margin-bottom: 10px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-points li::before {
  content: "✔";
  color: #c8ff3d;
  font-weight: 700;
}


/* ==================== FITNESS OVERVIEW SECTION ==================== */
.fitness-heading {
  margin-top: 60px;
  text-align: left;
}

.fitness-heading h2 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #000;
}

.fitness-heading h2 span {
  color: #c8ff3d;
  background-color: black;
}

.fitness-heading p {
  color: #333;
  font-size: 1rem;
  margin-bottom: 40px;
  line-height: 1.6;
}

/* ==================== FEATURE BOXES ==================== */
.fitness-features {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-bottom: 60px;
}

.feature-box {
  flex: 1 1 250px;
  background: #f9f9f9;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.feature-box:hover {
  background: #c8ff3d;
  color: #000;
  transform: translateY(-5px);
}

.feature-box i {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #c8ff3d;
}

.feature-box h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #000;
}

.feature-box p {
  font-size: 0.95rem;
  color: #333;
}

/* ==================== VIDEO SECTION ==================== */
.workout-video {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 40px;
}

.workout-video video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: cover;
}



/* ==================== RESPONSIVE ==================== */
@media (max-width: 992px) {
  .fitness-features {
    flex-direction: column;
    gap: 20px;
  }

  .feature-box {
    flex: 1 1 100%;
  }
}

@media (max-width: 768px) {
  .fitness-heading h2 {
    font-size: 1.8rem;
  }

  .feature-box h4 {
    font-size: 1rem;
  }

  .feature-box p {
    font-size: 0.9rem;
  }
}


/* ==================== RESPONSIVE ==================== */
@media (max-width: 992px) {
  .service-container {
    flex-direction: column;
  }

  .service-sidebar {
    position: static; /* disable sticky on small screens */
    width: 100%;
  }
}





/* ================= BLOG SECTION ================= */
/* ================= BLOG SECTION ================= */
.blog-section {
  background: #fff;
  color: #000;
  padding: 80px 10%;
  font-family: "Poppins", sans-serif;
}

.blog-heading {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 50px;
  color: #000;
}

/* === Blog Grid Layout === */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 cards per row */
  gap: 30px;
}

/* === Blog Card === */
.blog-card {
  background: #f9f9f9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.blog-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #000;
  padding: 20px 20px 10px;
  line-height: 1.5;
}

/* === Blog Link === */
.blog-link {
  display: inline-block;
  margin: 0 20px 20px;
  font-weight: 700;
  color: #000;
  text-decoration: none;
  transition: 0.3s ease;
}

.blog-link i {
  margin-left: 6px;
  color: #c8ff3d;
}

.blog-link:hover {
  color: #c8ff3d;
}

/* === Responsive Design === */
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 per row on tablet */
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr; /* 1 per row on mobile */
  }

  .blog-heading {
    font-size: 1.8rem;
  }

  .blog-card h3 {
    font-size: 1rem;
  }
}




/* ================= BLOG 1 ================= */
.blog-single {
  background: #fff;
  color: #000;
  font-family: "Poppins", sans-serif;
  padding: 80px 10%;
}

/* --- Header --- */
.blog-header {
  text-align: center;
  margin-bottom: 30px;
}

.blog-header h1 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.blog-meta {
  font-size: 0.95rem;
  color: #555;
}

.blog-meta i {
  color: #c8ff3d;
  margin-right: 5px;
}

/* --- Highlight Bar --- */
.blog-highlight-bar {
  background: #c8ff3d;
  color: #000;
  text-align: center;
  font-weight: 700;
  padding: 10px 0;
  font-size: 0.9rem;
  margin-bottom: 40px;
}

.blog-highlight-bar span {
  margin: 0 10px;
}

/* --- Blog Content --- */
.blog-content {
  max-width: 900px;
  margin: 0 auto;
}

.blog-image img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.blog-content p {
  line-height: 1.7;
  color: #333;
  margin-bottom: 20px;
  font-size: 1rem;
}

/* --- Blockquote --- */
blockquote {
  background: #c8ff3d;
  color: #000;
  padding: 20px 25px;
  border-radius: 10px;
  margin: 30px 0;
  font-weight: 700;
  font-size: 1rem;
  position: relative;
}

blockquote p {
  margin: 0;
}

blockquote::before {
  content: "❝";
  font-size: 2rem;
  color: #000;
  position: absolute;
  top: 10px;
  left: 15px;
}

/* --- Headings --- */
.blog-content h2 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-top: 40px;
  margin-bottom: 15px;
  color: #000;
}

/* --- Lists --- */
.blog-content ul {
  padding-left: 20px;
  margin-bottom: 25px;
}

.blog-content ul li {
  margin-bottom: 10px;
  color: #333;
  line-height: 1.6;
}

/* --- Tags --- */
.blog-tags {
  margin-top: 30px;
}

.blog-tags span {
  background: #c8ff3d;
  color: #000;
  font-weight: 700;
  padding: 6px 15px;
  border-radius: 25px;
  margin-right: 10px;
  display: inline-block;
}

.blog-tags span:hover{

  color:black;


}

/* --- Responsive --- */
@media (max-width: 768px) {
  .blog-header h1 {
    font-size: 1.6rem;
  }

  .blog-highlight-bar {
    font-size: 0.8rem;
  }

  .blog-content h2 {
    font-size: 1.3rem;
  }

  blockquote {
    font-size: 0.9rem;
  }
}



/* ================= BLOG 2 ================= */
.blog-single {
  background: #fff;
  color: #000;
  font-family: "Poppins", sans-serif;
  padding: 80px 10%;
}

/* --- Header --- */
.blog-header {
  text-align: center;
  margin-bottom: 30px;
}

.blog-header h1 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.blog-meta {
  font-size: 0.95rem;
  color: #555;
}

.blog-meta i {
  color: #c8ff3d;
  margin-right: 5px;
}

/* --- Highlight Bar --- */
.blog-highlight-bar {
  background: #c8ff3d;
  color: #000;
  text-align: center;
  font-weight: 700;
  padding: 10px 0;
  font-size: 0.9rem;
  margin-bottom: 40px;
}

.blog-highlight-bar span {
  margin: 0 10px;
}

/* --- Blog Content --- */
.blog-content {
  max-width: 900px;
  margin: 0 auto;
}

.blog-image img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.blog-content p {
  line-height: 1.7;
  color: #333;
  margin-bottom: 20px;
  font-size: 1rem;
}

/* --- Blockquote --- */
blockquote {
  background: #c8ff3d;
  color: #000;
  padding: 20px 25px;
  border-radius: 10px;
  margin: 30px 0;
  font-weight: 700;
  font-size: 1rem;
  position: relative;
}

blockquote p {
  margin: 0;
}

blockquote::before {
  content: "❝";
  font-size: 2rem;
  color: #000;
  position: absolute;
  top: 10px;
  left: 15px;
}

/* --- Headings --- */
.blog-content h2 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-top: 40px;
  margin-bottom: 15px;
  color: #000;
}

/* --- Lists --- */
.blog-content ul {
  padding-left: 20px;
  margin-bottom: 25px;
}

.blog-content ul li {
  margin-bottom: 10px;
  color: #333;
  line-height: 1.6;
}

/* --- Tags --- */
.blog-tags {
  margin-top: 30px;
}

.blog-tags span {
  background: #c8ff3d;
  color: #000;
  font-weight: 700;
  padding: 6px 15px;
  border-radius: 25px;
  margin-right: 10px;
  display: inline-block;
}

/* --- Social Icons --- */
.blog-socials {
  margin-top: 30px;
}

.blog-socials a {
  background: #c8ff3d;
  color: #000;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  margin-right: 10px;
  transition: 0.3s ease;
}

.blog-socials a:hover {
  background: #000;
  color: #c8ff3d;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .blog-header h1 {
    font-size: 1.6rem;
  }

  .blog-highlight-bar {
    font-size: 0.8rem;
  }

  .blog-content h2 {
    font-size: 1.3rem;
  }

  blockquote {
    font-size: 0.9rem;
  }
}


/* ================= BLOG 3 ================= */
.blog-single {
  background: #fff;
  color: #000;
  font-family: "Poppins", sans-serif;
  padding: 80px 10%;
}

/* --- Header --- */
.blog-header {
  text-align: center;
  margin-bottom: 30px;
}

.blog-header h1 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.blog-meta {
  font-size: 0.95rem;
  color: #555;
}

.blog-meta i {
  color: #c8ff3d;
  margin-right: 5px;
}

/* --- Highlight Bar --- */
.blog-highlight-bar {
  background: #c8ff3d;
  color: #000;
  text-align: center;
  font-weight: 700;
  padding: 10px 0;
  font-size: 0.9rem;
  margin-bottom: 40px;
}

.blog-highlight-bar span {
  margin: 0 10px;
}

/* --- Blog Content --- */
.blog-content {
  max-width: 900px;
  margin: 0 auto;
}

.blog-image img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.blog-content p {
  line-height: 1.7;
  color: #333;
  margin-bottom: 20px;
  font-size: 1rem;
}

/* --- Blockquote --- */
blockquote {
  background: #c8ff3d;
  color: #000;
  padding: 20px 25px;
  border-radius: 10px;
  margin: 30px 0;
  font-weight: 700;
  font-size: 1rem;
  position: relative;
}

blockquote p {
  margin: 0;
}

blockquote::before {
  content: "❝";
  font-size: 2rem;
  color: #000;
  position: absolute;
  top: 10px;
  left: 15px;
}

/* --- Headings --- */
.blog-content h2 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-top: 40px;
  margin-bottom: 15px;
  color: #000;
}

/* --- Lists --- */
.blog-content ul {
  padding-left: 20px;
  margin-bottom: 25px;
}

.blog-content ul li {
  margin-bottom: 10px;
  color: #333;
  line-height: 1.6;
}

/* --- Tags --- */
.blog-tags {
  margin-top: 30px;
}

.blog-tags span {
  background: #c8ff3d;
  color: #000;
  font-weight: 700;
  padding: 6px 15px;
  border-radius: 25px;
  margin-right: 10px;
  display: inline-block;
}



/* --- Responsive --- */
@media (max-width: 768px) {
  .blog-header h1 {
    font-size: 1.6rem;
  }

  .blog-highlight-bar {
    font-size: 0.8rem;
  }

  .blog-content h2 {
    font-size: 1.3rem;
  }

  blockquote {
    font-size: 0.9rem;
  }
}


/* ================= BLOG 4 ================= */
.blog-single {
  background: #fff;
  color: #000;
  font-family: "Poppins", sans-serif;
  padding: 80px 10%;
}

/* --- Header --- */
.blog-header {
  text-align: center;
  margin-bottom: 30px;
}

.blog-header h1 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.blog-meta {
  font-size: 0.95rem;
  color: #555;
}

.blog-meta i {
  color: #c8ff3d;
  margin-right: 5px;
}

/* --- Highlight Bar --- */
.blog-highlight-bar {
  background: #c8ff3d;
  color: #000;
  text-align: center;
  font-weight: 700;
  padding: 10px 0;
  font-size: 0.9rem;
  margin-bottom: 40px;
}

.blog-highlight-bar span {
  margin: 0 10px;
}

/* --- Blog Content --- */
.blog-content {
  max-width: 900px;
  margin: 0 auto;
}

.blog-image img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.blog-content p {
  line-height: 1.7;
  color: #333;
  margin-bottom: 20px;
  font-size: 1rem;
}

/* --- Blockquote --- */
blockquote {
  background: #c8ff3d;
  color: #000;
  padding: 20px 25px;
  border-radius: 10px;
  margin: 30px 0;
  font-weight: 700;
  font-size: 1rem;
  position: relative;
}

blockquote p {
  margin: 0;
}

blockquote::before {
  content: "❝";
  font-size: 2rem;
  color: #000;
  position: absolute;
  top: 10px;
  left: 15px;
}

/* --- Headings --- */
.blog-content h2 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-top: 40px;
  margin-bottom: 15px;
  color: #000;
}

/* --- Lists --- */
.blog-content ul {
  padding-left: 20px;
  margin-bottom: 25px;
}

.blog-content ul li {
  margin-bottom: 10px;
  color: #333;
  line-height: 1.6;
}

/* --- Tags --- */
.blog-tags {
  margin-top: 30px;
}

.blog-tags span {
  background: #c8ff3d;
  color: #000;
  font-weight: 700;
  padding: 6px 15px;
  border-radius: 25px;
  margin-right: 10px;
  display: inline-block;
}


/* --- Responsive --- */
@media (max-width: 768px) {
  .blog-header h1 {
    font-size: 1.6rem;
  }

  .blog-highlight-bar {
    font-size: 0.8rem;
  }

  .blog-content h2 {
    font-size: 1.3rem;
  }

  blockquote {
    font-size: 0.9rem;
  }
}


/* Blog single - white background, black text, neon accent */
.blog-single {
  background: #fff;
  color: #000;
  padding: 80px 10%;
  font-family: "Poppins", sans-serif;
}

/* Header */
.blog-header { text-align: center; margin-bottom: 20px; }
.blog-header h1 { font-size: 2.2rem; font-weight:800; margin-bottom:8px; }
.blog-meta { color:#555; font-size:0.95rem; }
.blog-meta i { color:#c8ff3d; margin-right:6px; }

/* Highlight bar */
.blog-highlight-bar {
  background: #c8ff3d;
  color: #000;
  text-align:center;
  font-weight:700;
  padding:10px 0;
  margin: 20px 0 40px;
}
.blog-highlight-bar span { margin:0 10px; }

/* Content */
.blog-content { max-width:900px; margin:0 auto; }
.blog-image img { width:100%; border-radius:12px; margin-bottom:26px; box-shadow:0 6px 18px rgba(0,0,0,0.08); }

.blog-content p { color:#333; line-height:1.7; margin-bottom:18px; font-size:1rem; }
.blog-content h2 { font-size:1.5rem; font-weight:800; margin-top:30px; margin-bottom:12px; color:#000; }

.blog-content ul { padding-left:20px; margin-bottom:18px; }
.blog-content ul li { margin-bottom:10px; color:#333; line-height:1.6; }

/* Blockquote style reused */
blockquote {
  background:#c8ff3d;
  color:#000;
  padding:18px 22px;
  border-radius:10px;
  margin:26px 0;
  font-weight:700;
  position:relative;
}
blockquote::before { content:"❝"; font-size:1.8rem; position:absolute; left:12px; top:8px; color:#000; }

/* Tags & Socials */
.blog-tags { margin-top:24px; }
.blog-tags span {
  background:#c8ff3d;
  color:#000;
  padding:6px 14px;
  border-radius:25px;
  margin-right:10px;
  display:inline-block;
  font-weight:700;
}
.blog-socials { margin-top:18px; }
.blog-socials a {
  display:inline-flex; align-items:center; justify-content:center;
  width:36px;height:36px;border-radius:50%;
  background:#c8ff3d;color:#000;margin-right:8px;text-decoration:none;
}
.blog-socials a:hover { background:#000; color:#c8ff3d; }

/* Responsive */
@media (max-width: 992px) {
  .blog-header h1 { font-size:1.8rem; }
}
@media (max-width: 768px) {
  .blog-single { padding:50px 6%; }
  .blog-header h1 { font-size:1.6rem; }
}




/* Blog Single Page 6 */
.blog-single {
  background: #fff;
  color: #000;
  font-family: "Poppins", sans-serif;
  padding: 80px 10%;
}

/* Header */
.blog-header {
  text-align: center;
  margin-bottom: 30px;
}
.blog-header h1 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.blog-meta {
  font-size: 0.95rem;
  color: #555;
}
.blog-meta i {
  color: #c8ff3d;
  margin-right: 5px;
}

/* Highlight Bar */
.blog-highlight-bar {
  background: #c8ff3d;
  color: #000;
  text-align: center;
  font-weight: 700;
  padding: 10px 0;
  font-size: 0.9rem;
  margin-bottom: 40px;
}
.blog-highlight-bar span {
  margin: 0 10px;
}

/* Blog Content */
.blog-content {
  max-width: 900px;
  margin: 0 auto;
}
.blog-image img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.blog-content p {
  line-height: 1.7;
  color: #333;
  margin-bottom: 20px;
  font-size: 1rem;
}

/* Blockquote */
blockquote {
  background: #c8ff3d;
  color: #000;
  padding: 20px 25px;
  border-radius: 10px;
  margin: 30px 0;
  font-weight: 700;
  font-size: 1rem;
  position: relative;
}
blockquote p {
  margin: 0;
}
blockquote::before {
  content: "❝";
  font-size: 2rem;
  color: #000;
  position: absolute;
  top: 10px;
  left: 15px;
}

/* Headings */
.blog-content h2 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-top: 40px;
  margin-bottom: 15px;
  color: #000;
}

/* Lists */
.blog-content ul {
  padding-left: 20px;
  margin-bottom: 25px;
}
.blog-content ul li {
  margin-bottom: 10px;
  color: #333;
  line-height: 1.6;
}

/* Tags */
.blog-tags {
  margin-top: 30px;
}
.blog-tags span {
  background: #c8ff3d;
  color: #000;
  font-weight: 700;
  padding: 6px 15px;
  border-radius: 25px;
  margin-right: 10px;
  display: inline-block;
}

/* Social Media */
.blog-socials {
  margin-top: 30px;
}
.blog-socials a {
  background: #c8ff3d;
  color: #000;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  margin-right: 10px;
  transition: 0.3s ease;
}
.blog-socials a:hover {
  background: #000;
  color: #c8ff3d;
}

/* Responsive */
@media (max-width: 768px) {
  .blog-header h1 {
    font-size: 1.6rem;
  }
  .blog-highlight-bar {
    font-size: 0.8rem;
  }
  .blog-content h2 {
    font-size: 1.3rem;
  }
  blockquote {
    font-size: 0.9rem;
  }
}




/* updated the header and footer css */


/* ================================
   🔹 PROMO BAR
   ================================ */
.promo-bar {
  background: #d7ff00; /* neon green */
  color: #000;
  text-align: center;
  font-weight: 700;
  padding: 10px 0;
  letter-spacing: 1px;
  font-size: 14px;
}

/* ================================
   🔹 HEADER BASE
   ================================ */
.site-header {
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  position: relative;
  z-index: 100;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 700;
  font-size: 20px;
  text-decoration: none;
  color: #000;
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.site-nav a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  transition: color 0.3s ease;
}

.site-nav a:hover {
  color: #d7ff00; /* green hover effect */
}

/* ================================
   🔹 JOIN STACKLY BUTTON
   ================================ */
.btn.neon.header-join {
  background: #d7ff00;
  color: #000;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn.neon.header-join:hover {
  background: #000;
  color: #d7ff00;
}


/* ================================
   🔹 DROPDOWN MENU
   ================================ */
.dropdown {
  position: relative;
}

.dropbtn {
  cursor: pointer;
  display: inline-block;
  /* No fixed width - let it size naturally like other nav items */
}

/* Hidden by default */
.dropdown-content {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: fit-content; /* Size based on content */
  white-space: nowrap; /* Prevent text wrapping */
  z-index: 99;
  transition: all 0.3s ease;
}

/* Shown when active */
.dropdown-content.show-dropdown {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Dropdown items */
.dropdown-content li {
  border-bottom: 1px solid #f2f2f2;
}

.dropdown-content li:last-child {
  border-bottom: none;
}

.dropdown-content a {
  display: block;
  padding: 8px 12px;
  color: #000;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 13px !important;   /* match nav link size */
}



.dropdown-content a:hover {
  background: #d7ff00;
  color: #000;
}


@media (max-width: 768px) {
  .dropdown-content a {
    color: #111 !important;
    padding: 12px 20px !important;
    font-size: 13px !important;  /* match on mobile too */
  }
}


@media (max-width: 768px) {
  .site-nav .dropdown-content a {
    font-size: 13px !important;
  }
}




/* ================================
   🔹 HAMBURGER (Mobile)
   ================================ */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background: #000;
}

/* ================================
   🔹 RESPONSIVE DESIGN
   ================================ */

@media (max-width: 768px) {
  .site-nav ul {
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    display: none;
    padding: 20px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .site-nav.open ul {
    display: flex;
  }

  /* Mobile dropdown styles */
  .dropdown-content {
    position: static !important;
    display: none !important;
    opacity: 1 !important;
    transform: none !important;
    box-shadow: none !important;
    background: rgba(0,0,0,0.05) !important;
    margin: 5px 0 0 0 !important;
    padding: 0 !important;
    border-radius: 8px !important;
  }

  .dropdown-content.show-dropdown {
    display: block !important;
  }

  .dropdown-content li {
    border-bottom: 1px solid rgba(0,0,0,0.1) !important;
  }

  .dropdown-content a {
    color: #111 !important;
    padding: 12px 20px !important;
  }

  .hamburger {
    display: flex;
  }
}




/* ================================
   🔹 TEAM SECTION
   ================================ */
.team-section {
  background: white; /* White background */
  padding: 80px 0;
  text-align: center;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  color: #000;
  margin-bottom: 60px;
}

.section-title .highlight {
  color: #d7ff00; /* Neon green */
  background-color: black;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 per row */
  gap: 30px;
  justify-items: center;
}

.team-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  width: 100%;
  max-width: 280px;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.team-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}



/* ================================
   🔹 RESPONSIVE DESIGN
   ================================ */
@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

/* testimonals*/


.testimonials-section {
  background-color:white;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.section-title {
  font-size: 2.2rem;
  color: #d7ff00; /* neon green */
  margin-bottom: 40px;
  font-weight: 700;
  background-color: black;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  justify-content: center;
  align-items: stretch;
}

.testimonial-card {
  background-color: black;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 0 10px rgba(57, 255, 20, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(57, 255, 20, 0.4);
}

.client-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 3px solid #d7ff00;
}

.testimonial-text {
  font-size: 0.95rem;
  color: #ddd;
  margin-bottom: 15px;
  line-height: 1.6;
}

.client-role {
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.stars {
  color: #39ff14;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

/* Responsive layout */
@media (max-width: 768px) {
  .testimonial-card {
    padding: 20px;
  }
  .section-title {
    font-size: 1.8rem;
  }
}


/* Section Styling */
.pricing-section {
  background-color: #ffffff; /* white background */
  color: #000; /* black text */
  padding: 60px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

/* Section Title */
.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color:  #d7ff00; /* neon green */
  margin-bottom: 50px;
  text-transform: uppercase;
}

/* Pricing Grid Layout */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  justify-content: center;
  align-items: start;
}

/* Pricing Card */
.pricing-card {
  background: #f8f8f8;
  border: 2px solid  black;
  border-radius: 15px;
  padding: 30px 20px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(57, 255, 20, 0.4);
}

/* Highlighted Card */
.highlight {
  background: #eaffea;
  border-color:  #d7ff00;
}

/* Ribbon Label */
.ribbon {
  background-color:  #d7ff00;
  color: #000;
  font-weight: 600;
  padding: 6px 15px;
  border-radius: 0 0 8px 8px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* Headings */
.pricing-card h3 {
  font-size: 1.1rem;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.price {
  font-size: 2.5rem;
  color: #000;
  margin: 10px 0 25px;
}

.price span {
  font-size: 1rem;
  color:  black;
}

/* Features List */
.features {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
  text-align: left;
}

.features li {
  margin-bottom: 10px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
}

.features li::before {
  content: "➤";
  color:  #d7ff00;
  font-size: 1rem;
  margin-right: 8px;
}

/* Button */
.btn {
  display: inline-block;
  background-color:  #d7ff00;
  color: #000;
  font-weight: 600;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: black;
  color: var(--color-neon);
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }
  .price {
    font-size: 2rem;
  }
}



/* ===== GALLERY SECTION ===== */
.gallery-section {
  background-color: #ffffff; /* white background */

  text-align: center;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
}

.section-title {
  font-size: 2.2rem;
  color: #d7ff00; /* neon green */
  margin-bottom: 40px;
  font-weight: 700;
}

/* Grid layout for 3x3 images */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns */
  grid-template-rows: repeat(3, auto); /* 3 rows */
  gap: 20px;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Each image item */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  border: 2px solid #d7ff00;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.4s ease;
}

/* Hover effect */
.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item:hover {
  box-shadow: 0 0 15px rgba(57, 255, 20, 0.5);
  transform: translateY(-5px);
}



/* Remove black box behind section headings */
.gallery-section .section-title,
.gallery-section h2,
.gallery-section h3 {
  background: black !important;
  color: #d7ff00!important;  /* keep your neon green color */
  display: inline-block;
  padding: 0;
  box-shadow: none;
}

/* Remove pseudo-elements that create the dark box */
.gallery-section .section-title::before,
.gallery-section .section-title::after,
.gallery-section h3::before,
.gallery-section h3::after {
  content: none !important;
  background: none !important;
}

/* Responsive design */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet */
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr; /* 1 column on mobile */
  }
}



/* ===== VIDEO GALLERY SECTION ===== */
.video-gallery-section {
  background-color:white; /* dark background like Fitwell */
  color: #fff;
  text-align: center;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
}

.section-title {
  font-size: 2.2rem;
  color:  #d7ff00; /* neon green */
  margin-bottom: 40px;
  font-weight: 700;
  background-color: black;
}

/* 3x3 Grid Layout */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, auto);
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Video styling */
.video-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  background-color: #101935;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.video-item video {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 15px;
  object-fit: cover;
}

/* Hover effect */
.video-item:hover {
  border-color:  #d7ff00;
  box-shadow: 0 0 15px rgba(57, 255, 20, 0.5);
  transform: translateY(-4px);
}



/* Remove dark box / background from section headings */
.video-gallery-section .section-title,
.gallery-section .section-title,
.testimonials-section .section-title {
  background: none !important;
  color:black !important; /* keep neon green */
  box-shadow: #d7ff00 !important;
  display: inline-block;
  padding: 0 !important;
  position: relative;
  z-index: 2;
}

/* Remove pseudo-elements that create background blocks */
.video-gallery-section .section-title::before,
.video-gallery-section .section-title::after,
.gallery-section .section-title::before,
.gallery-section .section-title::after,
.testimonials-section .section-title::before,
.testimonials-section .section-title::after {
  content: none !important;
  background: none !important;
  display: none !important;
}


/* Responsive */
@media (max-width: 992px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns for tablets */
  }
}

@media (max-width: 600px) {
  .video-grid {
    grid-template-columns: 1fr; /* 1 column for mobile */
  }
}




/* faq */

/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --neon-green: #b7ff00;
  --text-black: #000;
  --bg-white: #fff;
  
}

body {
  font-family: Arial, sans-serif;
  background: var(--bg-white);
  color: var(--text-black);
  line-height: 1.6;
}

/* Hero Section */
.contact-hero {
  padding: 60px 20px;
  background: var(--light-gray);
}

.hero-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.text-section .title-display {
  font-size: 64px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
}

.text-section .highlight-block {
  background: var(--neon-green);
  color: var(--text-black);
  padding: 6px 14px;
  border-radius: 8px;
}


/* FAQ Section Container */
.faq-section {
  display: flex;
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  gap: 30px;
}

/* Sidebar */
.sidebar {
  position: sticky;
  top: 20px;
  width: 280px;
  background: var(--light-gray);
  padding: 20px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  height: fit-content;
}

.sidebar-btn {
  background: transparent;
  color: var(--text-black);
  padding: 12px;
  border: 2px solid var(--neon-green);
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  text-align: left;
  font-weight: 600;
  transition: 0.3s;
}

.sidebar-btn:hover {
  background: var(--neon-green);
  color: var(--text-black);
}

/* Quote box */
.quote-box {
  margin-top: 20px;
  text-align: center;
}

.quote-box img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}

.quote-box p {
  font-size: 13px;
  color: var(--text-black);
}

.quote-box h4 {
  font-size: 14px;
  margin: 10px 0;
}

.quote-btn {
  display: inline-block;
  background: var(--neon-green);
  color: var(--text-black);
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
}
.quote-btn:hover{
  background: var(--color-bg);
  color: var(--neon-green);
 
}

/* FAQ Content */
.faq-content {
  flex: 1;
}

.faq-content h2 {
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 900;
  text-transform: uppercase;
}

.faq-content h2 span {
  color: var(--neon-green);
}

.faq-item {
  background: var(--bg-white);
  color: var(--text-black);
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
  border: 2px solid var(--light-gray);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.faq-question {
  background: var(--bg-white);
  border: none;
  width: 100%;
  text-align: left;
  padding: 15px;
  font-weight: 600;
  cursor: pointer;
  outline: none;
  font-size: 16px;
}

.faq-question:hover {
  background: var(--neon-green);
  color: var(--text-black);
}

.faq-answer {
  background: var(--light-gray);
  padding: 0 15px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 15px;
}


/* ------------------------------
   FAQ PAGE LAYOUT — SIDEBAR + CONTENT
------------------------------- */
.faq-section {
  display: flex;
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  gap: 30px;
  align-items: flex-start;
}

/* Sidebar */
.sidebar {
  position: sticky;
  top: 20px;
  width: 280px;
  background:white;
  
  padding: 20px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  height: fit-content;
}

.sidebar-btn {
  background: transparent;
  border: 2px solid black;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  text-align: left;
  transition: 0.3s;
}

.sidebar-btn:hover {
  background: black;
  color: #b7ff00;
}

/* FAQ Content */
.faq-content {
  flex: 1;
}

.faq-content section {
  margin-bottom: 40px;
}

.faq-content h2 {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.faq-content h2 span {
  color: #b7ff00;
  background-color: black;
  
}

.faq-item {
  background: white;
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
  border: 2px solid #eee;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.faq-question {
  background: white;
  border: none;
  width: 100%;
  text-align: left;
  padding: 15px;
  font-weight: 600;
  cursor: pointer;
}

.faq-question:hover {
  background: #b7ff00;
  color: #000;
}

.faq-answer {
  background: #f0f0f0;
  padding: 0 15px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 15px;
}

/* Responsive */
@media (max-width: 992px) {
  .faq-section {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    position: relative;
  }
}


/* Responsive */
@media (max-width: 992px) {
  .faq-section {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    position: relative;
  }

  .text-section .title-display {
    font-size: 48px;
  }
}

@media (max-width: 600px) {
  .text-section .title-display {
    font-size: 34px;
  }

  .faq-question {
    font-size: 14px;
  }
}



/* 404 page */
:root {
  --neon-green: #b7ff00;
  --text-black: #000;
  --bg-white: #ffffff;
}

:root {
  --neon-green: #b7ff00;
  --text-black: #000;
  --bg-white: #ffffff;
}



.error-section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.error-content {
  text-align: center;
  max-width: 500px;
  padding: 20px;
}

.error-image {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.error-heading {
  font-size: 2rem;
  font-weight: 800;
  color: var(--neon-green);
  background-color: #000;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.error-subtext {
  font-size: 1rem;
  color: var(--text-black);
  margin-bottom: 25px;
}

.home-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 30px;
  background: var(--neon-green);
  color: var(--text-black);
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.home-btn:hover {
  background: var(--text-black);
  color: var(--neon-green);
  box-shadow: 0 0 10px var(--neon-green);
}

.arrow-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.home-btn:hover .arrow-icon {
  transform: translateX(5px);
}

@media (max-width: 600px) {
  .error-heading {
    font-size: 1.5rem;
  }
}

.error-section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.error-content {
  text-align: center;
  max-width: 500px;
  padding: 20px;
}

.error-image {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.error-heading {
  font-size: 2rem;
  font-weight: 800;
  color: var(--neon-green);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.error-subtext {
  font-size: 1rem;
  color: var(--text-black);
  margin-bottom: 25px;
}

.home-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 30px;
  background: var(--neon-green);
  color: var(--text-black);
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.home-btn:hover {
  background: var(--text-black);
  color: var(--neon-green);
  box-shadow: 0 0 10px var(--neon-green);
}

.arrow-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.home-btn:hover .arrow-icon {
  transform: translateX(5px);
}

@media (max-width: 600px) {
  .error-heading {
    font-size: 1.5rem;
  }
}



@media (max-width: 768px) {
  /* Make all nav links including “Home” 13px */
  .site-nav a {
    font-size: 13px !important;
  }

  /* Make dropdown items the same size too */
  .site-nav .dropdown-content a {
    font-size: 13px !important;
  }
}

