/* =============================================
   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: 1500px !important; /* This is what really controls your width */
  margin: 0 auto !important;
}

/* 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-color: var(--nav-bg);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px #08033a4d;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--primary-color);
}

.nav-links {
  display: flex;
  gap: 25px;
}

.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);
}

/* ----------------------------
   HERO SECTION
   ---------------------------- */
.hero {
  text-align: center;
  background: linear-gradient(135deg, #101f4d, #0c101a) no-repeat center center;
  background-size: 1500px 100%; /* Match max-width value */
  padding: 150px 20px;
  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.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;
}

@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: 80px 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: var(--secondary-color);
  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="M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm0 10.99h7c-.53 4.12-3.28 7.79-7 8.94V12H5V6.3l7-3.11v8.8z"/></svg>');
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Actionable Strategy (King icon - outline only) */
.service:nth-child(3) .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 64 64" fill="none" stroke="white" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"><path d="M32 4v16M24 12h16M20 32h24M24 20h16s4 8 4 12-4 12-4 12H24s-4-8-4-12 4-12 4-12zM20 56h24"/></svg>');
  background-size: 36px;
  background-repeat: no-repeat;
  background-position: center;
}






/* ----------------------------
   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;
}

.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('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
   ---------------------------- */
footer {
  text-align: center;
  font-size: 0.9rem;
  padding: 30px 20px;
  background: #111;
  color: #aaa;
}

/* =============================================
   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: 12px 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 60s linear infinite;
}

.ticker-item {
  display: inline-block;
  margin-right: 40px;
  font-size: 0.9rem;
  font-weight: 500;
}

.ticker-item::before {
  content: "•";
  margin-right: 10px;
  color: #4f6ee6;
}

/* 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(100%); }
  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('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) {
  .hero {
    padding: 100px 20px;
    min-height: 70vh;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .stats-grid {
    flex-direction: column;
  }
  
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

@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);
  }
}