/* =============================================
   GLOBAL STYLES & VARIABLES
   =============================================  */
  
:root {
  --primary-color: #ffd700;       /* Gold - primary accent */
  --secondary-color: #4f6ee6;     /* Blue - secondary accent */
  --dark-bg: #0f0f0f;             /* Main background */
  --content-bg: #1a1a1a;          /* Content containers */
  --text-light: #fff;             /* Primary text */
  --text-muted: #ccc;             /* Secondary text */
  --nav-bg: #0b183d;              /* Navigation background */
}
 





/* WIDTH CONTROL */

.top-bar-content,
header, 
section,
.hero,
.services-deck,
.services-container,
.stats-container,
.testimonial-grid,
footer {
   max-width: min(100%, 1500px);
  margin: 0 auto;
}

/* background color */ 

/* =============================================
   BASE STYLES
   ============================================= */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: var(--dark-bg);
  color: var(--text-light);
  line-height: 1.6;
}

/* Consistent container styling */
.container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =============================================
   COMPONENT STYLES
   ============================================= */

/* ----------------------------
   NAVIGATION BAR
   ---------------------------- */
.top-bar {
  background: rgb(5, 4, 32);
  color: white;
  padding: 10px 20px;
  box-sizing: border-box;
  box-shadow: none;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 24px;
}



.logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 0;
  text-decoration: none;
}

.site-brand img {
  display: block;
  height: clamp(68px, 7vw, 96px);
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: nowrap;
  margin-left: auto;
  margin-right: 0;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  margin-right: 6px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.language-switcher__option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.language-switcher__option:hover {
  color: #fff !important;
  background: rgba(79, 110, 230, 0.22);
  transform: translateY(-1px);
}

.language-switcher__option.is-active {
  color: #07101e !important;
  background: var(--primary-color);
  box-shadow: 0 10px 22px rgba(255, 215, 0, 0.24);
}

.language-switcher__option.is-active:hover {
  color: #07101e !important;
  background: #ffe14f;
}

.language-switcher__option.is-disabled {
  opacity: 0.38;
  cursor: not-allowed;
}

.language-switcher__option.is-disabled:hover {
  color: rgba(255, 255, 255, 0.72) !important;
  background: transparent;
  transform: none;
}

.nav-links a.active:not(.nav-btn) {
  color: var(--primary-color);
}

.hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: transparent;
  border: 0;
  color: var(--text-light);
  padding: 0;
  line-height: 1;
}

.hamburger-lines {
  display: grid;
  gap: 4px;
}

.hamburger-lines span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hamburger[aria-expanded="true"] .hamburger-lines span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hamburger[aria-expanded="true"] .hamburger-lines span:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] .hamburger-lines span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary-color);
}

.nav-btn {
  background: var(--primary-color);
  color: #000 !important;
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background: #e6c200;
  transform: translateY(-2px);
}

.sup {
  position: fixed;
  right: 16px;
  bottom: 44px;
  z-index: 1002;
}

.sup a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 62px;
  height: 62px;
  padding: 0 18px 0 16px;
  border-radius: 999px;
  background: linear-gradient(160deg, rgba(42, 210, 110, 0.96), rgba(17, 122, 59, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.34), 0 0 0 6px rgba(37, 211, 102, 0.12);
  backdrop-filter: blur(10px);
  text-decoration: none;
  animation: subtleAttention 4s ease-in-out infinite;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.sup img {
  position: static;
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 0;
  filter: brightness(0) invert(1) drop-shadow(0 1px 2px rgba(0, 0, 0, 0.22));
}

.sup-label {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
}

.sup a:hover,
.sup a:focus-visible {
  animation: none;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 22px 36px rgba(0, 0, 0, 0.38), 0 0 0 8px rgba(37, 211, 102, 0.16);
  filter: brightness(1.04);
}

.sup a:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 4px;
}

.mobile-language-switcher {
  display: none;
}

@keyframes subtleAttention {
  0%, 90% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(37, 211, 102, 0));
  }

  95% {
    transform: scale(1.08);
    filter: drop-shadow(0 0 12px rgba(37, 211, 102, 0.9));
  }
}

/* ----------------------------
   HERO SECTION
   ---------------------------- */
.hero {
  text-align: center;
  background: linear-gradient(135deg, #5c4412, #0c101a) no-repeat center center;
  background-size: cover; /* Match max-width value */
  background-position: center;
  padding: 10px 10px;
  min-height: 20vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;

}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  line-height: 1.3;
  max-width: 800px;
}

.hero p {
  font-size: 1.4rem;
  margin-bottom: 40px;
  max-width: 700px;
}

/* ----------------------------
   BUTTONS
   ---------------------------- */
.btn {
  background: var(--primary-color);
  color: #000;
  padding: 16px 32px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.btn-secondary {
  background: #333;
  color: var(--primary-color);
  padding: 10px 18px;
  margin-top: 10px;
  border-radius: 4px;
  text-decoration: none;
}

/* button activation that shows where you are on the page */

/* Active menu item highlight */
.nav-links a.active {
  color: var(--primary-color) !important; /* Gold text */
  position: relative;
}

.nav-links a.nav-btn.active {
  color: #000 !important;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-color); /* Gold underline */
  animation: fadeIn 0.3s ease-out;
}

.nav-links a.nav-btn.active::after {
  display: none;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scaleX(0); }
  to { opacity: 1; transform: scaleX(1); }
}

/* ----------------------------
   CONTENT SECTIONS
   ---------------------------- */
section {
  padding: 60px 0;
}

h2 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

/* ----------------------------
   SERVICES GRID
   ---------------------------- */

.services {
  padding: 80px 5%;
  background: #0f0f0f;
}

.services h2 {
  text-align: center;
  font-size: 2.2rem;
  color: #ffd700;
  margin-bottom: 60px;
  position: relative;
}

.services h2:after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #4f6ee6;
  margin: 15px auto 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  border: 1px solid rgba(255, 215, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(79, 110, 230, 0.2);
  border-color: rgba(255, 215, 0, 0.3);
}

.card:before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,215,0,0.1) 0%, rgba(255,215,0,0) 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.card:hover:before {
  opacity: 1;
}

.card strong {
  display: block;
  font-size: 1.4rem;
  color: #ffd700;
  margin-bottom: 15px;
}

.card b {
  color: #4f6ee6;
  font-size: 1.3rem;
  display: inline-block;
  margin-top: 20px;
  background: rgba(79, 110, 230, 0.1);
  padding: 8px 16px;
  border-radius: 50px;
}

/* Price Emphasis */
.card b:before {
  content: "₪ ";
}

/* Bundle Notice */
.bundle-notice {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 20px;
  color: #ccc;
  font-style: italic;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
  }
  
  .card {
    padding: 30px 20px;
  }
}


/* ----------------------------
   SERVICES DECK (FEATURES)
   ---------------------------- */
.services-deck {
  background: linear-gradient(135deg, #101f4d, #0c101a) no-repeat center center;
  padding: 50px 0;
  text-align: center;
}

.services-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 40px;
  padding: 0 20px;
}

.service {
  flex: 1 1 300px;
  padding: 20px;
}

/** Circle css here **/

.icon {
  position: relative;
  height: 80px;
  margin-bottom: 20px;
}

.circle-icon {
  width: 70px;
  height: 70px;
  background-color: green;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

/* The icons inside the circles here */

.circle-icon {
  position: relative; /* Needed for pseudo-elements */
}

/* Clarity & Confidence (Eye icon) */
.service:nth-child(1) .circle-icon::before {
  content: "";
  position: absolute;
  width: 32px;
  height: 32px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M12 6a9.77 9.77 0 0 1 8.82 5.5 9.77 9.77 0 0 1-8.82 5.5 9.77 9.77 0 0 1-8.82-5.5A9.77 9.77 0 0 1 12 6zm0-2C7 4 2.73 7.11 1 11.5 2.73 15.89 7 19 12 19s9.27-3.11 11-7.5C21.27 7.11 17 4 12 4zm0 5a2.5 2.5 0 0 1 0 5 2.5 2.5 0 0 1 0-5z"/></svg>');
}


/* Secure Foundations (Shield icon) */
.service:nth-child(2) .circle-icon::before {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  background-image: url('data:image/svg+xml;utf8,\ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white">\<path d="M2 4h20v4H2V4zm0 6h9v4H2v-4zm11 0h9v4h-9v-4zM2 16h9v4H2v-4zm11 0h9v4h-9v-4z"/>\</svg>'); 
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Lightbulb icon - classic */
.service:nth-child(3) .circle-icon::before {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M9 21c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-1H9v1zm3-19C8.14 2 5 5.14 5 9c0 2.38 1.19 4.47 3 5.74V17c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-2.26c1.81-1.27 3-3.36 3-5.74 0-3.86-3.14-7-7-7z"/></svg>');
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-size: contain;
}







/* ----------------------------
   STATISTICS SECTION
   ---------------------------- */
.stats-container {
  margin-top: 60px;
  text-align: center;
}

.stats-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: var(--primary-color);
}

/* ----------------------------
   TESTIMONIALS
   ---------------------------- */
.testimonials {
  background: linear-gradient(135deg, #101f4d, #0c101a) no-repeat center center;
  padding: 80px 0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 0 20px;
}

.testimonial-card {
  background: #2a2a2a;
  border-radius: 10px;
  padding: 30px;
  border: 1px solid var(--secondary-color);
}

/* ======================
   PROCESS SECTION (HOW IT WORKS)
   ====================== */
.process {
  background: #1a1a1a;
  border-radius: 12px;
  padding: 60px 40px;
  margin: 60px auto;
  max-width: 800px;
  position: relative;
  overflow: hidden;
  width: 90%;
}

.process:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #4f6ee6, #ffd700);
}

.process h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #ffd700;
  font-size: 2rem;
  margin-top: -40px; /* Moves the title UP */
}

.process ol {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
}

.process li {
  position: relative;
  padding: 25px 25px 25px 60px;
  margin-bottom: 20px;
  background: #2a2a2a;
  border-radius: 8px;
  counter-increment: step-counter;
  transition: transform 0.3s ease;
  border-left: 3px solid #4f6ee6;
}

.process li:hover {
  transform: translateX(10px);
  background: #333;
}

.process li:before {
  content: counter(step-counter);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: #ffd700;
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.process li:last-child {
  margin-bottom: 0;
}


/* ======================
   BOOKING SECTION
   ====================== */
.contact {
  background: #1a1a1a;
  border-radius: 12px;
  padding: 60px 5%;
  max-width: 1500px;
  margin: 60px auto;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.contact h2 {
  text-align: center;
  color: #ffd700;
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.contact > p {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
  color: #ccc;
}

/* WhatsApp CTA Button */
.whatsapp-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 50px;
}

.whatsapp-btn {
  background: #25D366;
  color: white !important;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url('../images/whatsapp-icon.svg') no-repeat center;
}

/* Form Styling */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: #2a2a2a;
  padding: 40px;
  border-radius: 8px;
  border-top: 3px solid #ffd700;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  color: #ffd700;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 25px;
  background: #3a3a3a;
  border: 1px solid #444;
  border-radius: 6px;
  color: white;
  font-size: 1rem;
  transition: border 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #ffd700;
}

.btn-submit {
  background: #ffd700;
  color: #000;
  border: none;
  padding: 16px 32px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background: #e6c200;
  transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .contact {
    padding: 40px 5%;
  margin: 40px auto;
  }
  
  .contact-form {
    padding: 30px;
  }
}

/* ----------------------------
   FORM ELEMENTS
   ---------------------------- */
input, textarea {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  background: #2a2a2a;
  border: 1px solid #444;
  border-radius: 5px;
  color: white;
}

/* ----------------------------
   FOOTER
   ---------------------------- */
.site-footer {
  position: relative;
  max-width: none;
  margin: 84px 0 0;
  padding: 0 20px 84px;
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 215, 0, 0.14), transparent 24%),
    radial-gradient(circle at 88% 10%, rgba(79, 110, 230, 0.2), transparent 22%),
    linear-gradient(180deg, #10141f 0%, #090b12 62%, #050608 100%);
  border-top: 1px solid rgba(255, 215, 0, 0.16);
  color: #d4dcf5;
  overflow: hidden;
}

.site-footer::before,
.site-footer::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(12px);
}

.site-footer::before {
  width: 360px;
  height: 360px;
  top: -140px;
  left: -90px;
  background: rgba(255, 215, 0, 0.08);
}

.site-footer::after {
  width: 320px;
  height: 320px;
  right: -110px;
  bottom: 26px;
  background: rgba(79, 110, 230, 0.12);
}

.footer-shell {
  position: relative;
  z-index: 1;
  max-width: 1500px;
  margin: 0 auto;
}

.footer-topbar {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: 18px;
  align-items: center;
  padding: 20px 24px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(16, 26, 52, 0.92), rgba(10, 12, 18, 0.97));
  border: 1px solid rgba(255, 215, 0, 0.16);
  border-radius: 26px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
}

.footer-topbar::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.05), transparent 48%);
  pointer-events: none;
}

.footer-topbar-copy {
  display: grid;
  gap: 8px;
  align-content: start;
  max-width: 760px;
}

.footer-eyebrow,
.footer-section-label {
  margin: 0;
  color: #8fa6ff;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-topbar h2 {
  margin: 0;
  max-width: 24ch;
  color: #fff;
  font-size: clamp(1.45rem, 1.95vw, 2.2rem);
  line-height: 1.08;
  text-wrap: balance;
}

.footer-topbar-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.footer-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.footer-button-primary {
  background: linear-gradient(135deg, #ffd24a, #ffe887);
  color: #111;
  box-shadow: 0 14px 30px rgba(255, 215, 0, 0.18);
}

.footer-button-secondary {
  border-color: rgba(127, 148, 255, 0.32);
  background: rgba(79, 110, 230, 0.12);
  color: #e7ecff;
}

.footer-button:hover {
  transform: translateY(-2px);
}

.footer-button-primary:hover {
  background: #ffe14f;
}

.footer-button-secondary:hover {
  border-color: rgba(255, 215, 0, 0.45);
  background: rgba(255, 215, 0, 0.08);
  color: #fff6c5;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) minmax(230px, 0.95fr) minmax(210px, 0.85fr) minmax(210px, 0.8fr);
  gap: 16px;
  text-align: left;
  align-items: start;
}

.footer-panel {
  position: relative;
  min-width: 0;
  padding: 22px 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 12px 28px rgba(0, 0, 0, 0.16);
  overflow: hidden;
}

.footer-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.18), transparent 62%);
  pointer-events: none;
}

.footer-brand-heading {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo-shell {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  padding: 8px;
  background: linear-gradient(160deg, rgba(255, 215, 0, 0.14), rgba(79, 110, 230, 0.12));
  border: 1px solid rgba(255, 215, 0, 0.18);
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);
}

.footer-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
}

.footer-panel h3 {
  margin: 0;
  color: #fff;
  font-size: 1.14rem;
  line-height: 1.18;
}

.footer-brand-copy {
  margin: 0;
  max-width: 34ch;
  color: #bfc8e8;
  font-size: 0.94rem;
  line-height: 1.7;
}

.footer-trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.footer-trust-list span,
.site-footer .social-links a,
.footer-inline-link {
  border-radius: 999px;
}

.footer-trust-list span {
  padding: 8px 12px;
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.14);
  color: #fff0a6;
  font-size: 0.8rem;
}

.site-footer .social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 0;
}

.site-footer .social-links a,
.footer-inline-link,
.site-footer .footer-contact a {
  color: #dbe2ff;
  text-decoration: none;
  transition: transform 0.25s ease, color 0.25s ease, border-color 0.25s ease, background-color 0.25s ease, opacity 0.25s ease;
}

.site-footer .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  background: rgba(79, 110, 230, 0.09);
  border: 1px solid rgba(79, 110, 230, 0.25);
  font-size: 0.84rem;
}

.footer-panel-head {
  display: grid;
  gap: 6px;
}

.footer-contact,
.footer-links,
.footer-legal {
  display: grid;
  gap: 12px;
  align-content: start;
}

.footer-link-list {
  display: grid;
  gap: 2px;
}

.site-footer .footer-links a,
.site-footer .footer-legal a {
  display: flex;
  align-items: center;
  min-height: 0;
  max-width: 100%;
  padding: 8px 0;
  border-radius: 0;
  background: none;
  border: none;
  color: #e1e6f7;
  font-size: 0.95rem;
}

.site-footer .footer-links a::before,
.site-footer .footer-legal a::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 12px;
  flex-shrink: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary-color), #7b90ff);
  box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.06);
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  margin-top: 0;
  background: rgba(10, 14, 24, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: #111;
  background: var(--primary-color);
  border-radius: 12px;
  font-size: 0.95rem;
}

.contact-method > div {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.contact-label {
  display: block;
  margin: 0;
  color: #92a3dd;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer .footer-contact a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.96rem;
  line-height: 1.45;
  word-break: break-word;
}

.site-footer .footer-contact .contact-link--email {
  display: inline-block;
  max-width: 100%;
  white-space: nowrap;
  word-break: normal;
  overflow-wrap: normal;
  font-size: clamp(0.84rem, 1vw, 0.96rem);
}
.footer-inline-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: 2px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 215, 0, 0.18);
  background: rgba(255, 215, 0, 0.08);
  color: #fff0b3;
  font-size: 0.92rem;
}

.site-footer .social-links a:hover,
.site-footer .footer-links a:hover,
.site-footer .footer-legal a:hover,
.footer-inline-link:hover,
.site-footer .footer-contact a:hover {
  color: #fff3b5;
  opacity: 1;
}

.site-footer .social-links a:hover,
.footer-inline-link:hover,
.site-footer .footer-links a:hover,
.site-footer .footer-legal a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 215, 0, 0.34);
  background: rgba(255, 215, 0, 0.08);
}

.legal-disclaimer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 12px 24px;
  margin-top: 18px;
  padding: 16px 4px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(210, 217, 240, 0.76);
  font-size: 0.84rem;
}

.legal-disclaimer p {
  margin: 0;
  line-height: 1.6;
}

.site-footer--rtl .footer-topbar,
.site-footer--rtl .footer-grid {
  direction: rtl;
}

.site-footer--rtl .footer-topbar-actions {
  justify-content: flex-start;
}

.site-footer--rtl .footer-brand-heading {
  flex-direction: row-reverse;
}

.site-footer--rtl .footer-brand,
.site-footer--rtl .footer-contact,
.site-footer--rtl .footer-links,
.site-footer--rtl .footer-legal,
.site-footer--rtl .legal-disclaimer {
  text-align: right;
}

.site-footer--rtl .contact-method {
  flex-direction: row-reverse;
}

.site-footer--rtl .site-footer .footer-links a::before,
.site-footer--rtl .site-footer .footer-legal a::before {
  margin-right: 0;
  margin-left: 12px;
}

.site-footer--rtl .site-footer .footer-links a:hover,
.site-footer--rtl .site-footer .footer-legal a:hover {
  transform: translateX(-4px);
}

.scroll-top {
  text-align: center;
  margin: -40px 0 10px 0;
  position: fixed;
  bottom: 120px;
  right: 16px;
  z-index: 1001;
}

#scrollToTopBtn {
  width: 58px;
  height: 58px;
  background: rgba(12, 16, 26, 0.94);
  color: var(--primary-color);
  border: 1px solid rgba(255, 215, 0, 0.28);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: 1.2rem;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, opacity 0.4s ease;
}

#scrollToTopBtn.show {
  opacity: 1;
  pointer-events: auto;
}

#scrollToTopBtn.is-scrolling {
  animation: scrollToTopTravel 0.7s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
  background: linear-gradient(180deg, rgba(255, 215, 0, 0.95), rgba(201, 150, 24, 0.95));
  color: #07101e;
  border-color: rgba(255, 215, 0, 0.68);
}

#scrollToTopBtn:hover {
  background: var(--primary-color);
  color: #07101e;
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

@keyframes scrollToTopTravel {
  0% {
    transform: translateY(0) scale(1);
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.3);
  }

  50% {
    transform: translateY(-8px) scale(1.08);
    box-shadow: 0 20px 32px rgba(0, 0, 0, 0.34);
  }

  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.3);
  }
}

.page-shell {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px 100px;
  box-sizing: border-box;
}

.content-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  padding: 32px;
}

.content-card h1 {
  margin-top: 0;
}

.content-card a {
  color: var(--secondary-color);
}

.content-card ul {
  padding-left: 20px;
}

/* =============================================
   PAGE-SPECIFIC STYLES
   ============================================= */

/* ----------------------------
   INDEX PAGE BACKGROUNDS
   ---------------------------- */
.index-page {
  position: relative;
  overflow-x: hidden;
}

.index-page::before,
.index-page::after {
  content: '';
  position: fixed;
  top: 0;
  height: 71%;
  width: calc((100% - min(1500px, 100%))/2);
  z-index: -1;
  background-size: cover;
}


/* ======================
   NEWS TICKER COMPONENT
   ====================== */
.news-ticker {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(12, 16, 26, 0.9); /* Dark semi-transparent */
  color: #ffd700;
  padding: 5px 0;
  border-top: 1px solid #4f6ee6;
  z-index: 999;
  overflow: hidden;
  backdrop-filter: blur(3px);
}

.ticker-content {
  display: inline-block;
  white-space: nowrap;
  animation: ticker 100s linear infinite;
  padding-left: 100%; /* ← THIS LINE for seamless looping and i swear to god idk how its working */
  
}

.ticker-item {
  display: inline-block;
  margin-right: 40px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Make ticker links gold/yellow like the text */
.news-ticker a {
  color: #ffd700; /* Gold/yellow */
  text-decoration: none; /* Optional: remove underline */
}

.news-ticker a:hover {
  text-decoration: underline; /* Optional: underline on hover */
}

@keyframes ticker {
  0% { transform: translateX(0); } /* ← CHANGE from 100% to 0% */
  100% { transform: translateX(-100%); }
}

/* Pause on hover */
.news-ticker:hover .ticker-content {
  animation-play-state: paused;
}


/* ----------------------------
   FLOATING TOKENS
   ---------------------------- */
.token-bg {
  position: fixed;
  top: 71%;
  left: 0;
  width: 100%;
  height: 29%;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.token {
  position: absolute;
  width: 24px;
  height: 24px;
  background: var(--primary-color);
  border-radius: 50%;
  animation: float-up 15s linear infinite;
}

@keyframes float-up {
  0% { transform: translateY(100%) rotate(0deg); opacity: 0; }
  10% { opacity: 0.7; }
  90% { opacity: 0.7; }
  100% { transform: translateY(-100%) rotate(360deg); opacity: 0; }
}

/* the 5 service pages start from here */

/* Quick Consult Page Styles */
.service-hero {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  text-align: center;
  padding: 80px 20px;
  color: white;
}

.service-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #ffd700;
}

.subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 20px;
}

.price {
  font-size: 1.8rem;
  color: #4f6ee6;
  margin: 20px 0;
}

.cta-button {
  background: #4f6ee6;
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(79, 110, 230, 0.3);
}

.service-details {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
}

.benefits-list {
  margin: 30px 0;
  list-style-type: none;
}

.benefits-list li {
  background: url('../images/check-icon.svg') no-repeat left center;
  padding-left: 30px;
  margin: 15px 0;
}

.examples-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.example-card {
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.1);
  padding: 20px;
  border-radius: 8px;
  transition: all 0.3s;
}

.example-card:hover {
  background: rgba(255, 215, 0, 0.1);
}

.booking-cta {
  text-align: center;
  margin: 60px 0;
}

.faq {
  max-width: 800px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.faq-item {
  margin-bottom: 20px;
}

.faq-item h3 {
  color: #ffd700;
}

/* Remove link highlights */
a.card {
  color: inherit;       /* Keeps original text color (no purple) */
  text-decoration: none; /* Removes underline */
}

/* Optional: Ensure hover/focus states don't change color */
a.card:hover,
a.card:focus {
  color: inherit;
}

/*///////////////////////////////////////
/////////////////////////////////////////
/* Getting Started Page style bruv */

/* overall text center */


/* Center all section headings */
.learning-points h2,
.session-details h2,
.cta-section h2 {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Center the booking button */
.cta-section {
  text-align: center;
}

.cta-button {
  display: inline-block; /* Ensures margin:auto works */
  margin: 0 auto; /* Centers the button */
}

.service-hero {
  background: linear-gradient(135deg, #0f0c29, #1a1a2e);
  text-align: center;
  padding: 80px 20px;
  color: white;
}

.learning-points {
  padding: 60px 0;
  background: #0f0f0f;
}

.feature-card {
  background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.feature-card .icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.steps {
  counter-reset: step;
  max-width: 700px;
  margin: 0 auto;
}

.steps li {
  position: relative;
  padding-left: 60px;
  margin-bottom: 30px;
  list-style: none;
}

.steps li:before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  background: #4f6ee6;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.guarantee {
  color: #aaa;
  font-style: italic;
  margin-top: 20px;
}

/* centering the statistic stuff for security check */

.warning-section .container {
  text-align: center; /* Centers all text content */
}

.warning-card {
  display: inline-block; /* Makes the card shrink-to-fit */
  text-align: left; /* Keeps list items left-aligned inside card */
  margin: 0 auto; /* Centers the card itself */
}

.warning-list {
  display: inline-block; /* Proper alignment for lists */
  text-align: left; /* List items stay left-aligned */
  padding-left: 0; /* Remove default padding */
}

.warning-list li {
  list-style-position: inside; /* Aligns bullets with text */
}

/* =============================================
   RESPONSIVE ADJUSTMENTS
   ============================================= */
@media (max-width: 768px) {
  .top-bar-content {
    flex-direction: row;
  }

  .hero {
    padding: 100px 20px;
    min-height: 70vh;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .stats-grid {
    flex-direction: column;
  }
  
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: rgba(5, 4, 32, 0.98);
    position: absolute;
    top: 84px;
    right: 20px;
    padding: 16px;
    border-radius: 10px;
    min-width: 200px;
    z-index: 1002;
  }

  .nav-links.show {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .contact-method {
    justify-content: flex-start;
  }

  .site-brand img {
    height: 74px;
  }

  .content-card {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 80px 15px;
  }
  
  .nav-links {
    gap: 15px;
  }
}

/** =============================================
   CRYPTO GRAPH BACKGROUND ANIMATIONS - GROW AND FADE
   ============================================= */
body {
  position: relative;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

.crypto-graphs-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: -2;
  overflow: hidden;
}

.crypto-graph {
  position: absolute;
  width: 5px;             /* candle width */
  height: 50px;           /* final candle height */
  opacity: 0;
  transform: scaleY(0);   /* start collapsed */
}

/* Green candles grow from bottom */
.graph-green {
  background: linear-gradient(to top, rgba(0, 255, 0, 0.3), rgba(0, 255, 0, 0.1));
  border-left: 2px solid rgba(50, 255, 50, 0.8);
  bottom: 0;
  transform-origin: bottom;  /* grow from bottom */
  animation: growAndFade 2s forwards;
}

/* Red candles grow from top */
.graph-red {
  background: linear-gradient(to bottom, rgba(255,0,0,0.3), rgba(255,0,0,0.1));
  border-left: 2px solid rgba(255,50,50,0.8);
  top: 0;
  bottom: auto;
  transform-origin: top;     /* grow from top */
  animation: growAndFade 2s forwards;
}

/* Grow and then fade out without moving */
@keyframes growAndFade {
  0%   { transform: scaleY(0); opacity: 0; }
  70%  { transform: scaleY(1); opacity: 1; } /* fully grown and visible */
  100% { transform: scaleY(1); opacity: 0; } /* fade out */
}





/* Responsive scaling */
@media (max-width: 768px) {
  .crypto-graph { transform: scale(0.7); }
}

@media (max-width: 480px) {
  .crypto-graph { transform: scale(0.5); }
}

@media (max-width: 480px) {
  .crypto-graph {
    transform: scale(0.5);
  }
}