/* MODAL BACKDROP */
.jj-logo .logo-img {
  height: 50px;     /* adjust as needed */
  width: auto;
  display: block;
}

.privacy-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  z-index: 9999;
  font-family: "Inter", sans-serif;
}

/* MODAL BOX */
.privacy-content {
  background: #111;
  color: #fff;
  width: 100%;
  max-width: 450px;
  padding: 25px;
  border-radius: 12px;
  position: relative;
  border: 1px solid #333;
}
.privacy-content p {
    color:#fff;
}

/* CLOSE BUTTON */
.close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: transparent;
  border: none;
  font-size: 24px;
  color: #777;
  cursor: pointer;
}

.info-link {
  color: #1dd3ff;
  display: inline-block;
  margin-bottom: 20px;
}

/* HEADINGS */
.privacy-content h2 {
  margin-bottom: 10px;
}

.privacy-content h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}

/* BUTTONS */
.allow-btn {
  width: 100%;
  background: #00e7c8;
  border: none;
  padding: 10px 0;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  margin-bottom: 20px;
  font-weight: 600;
  color: #000;
}

.reject-btn,
.confirm-btn {
  flex: 1;
  padding: 10px 0;
  border-radius: 8px;
  border: 1px solid #444;
  background: transparent;
  color: #eee;
  cursor: pointer;
}

.confirm-btn {
  background: #00e7c8;
  color: #000;
  border: none;
}

.buttons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

/* TOGGLE ROW */
.toggle-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #222;
}

.always-active {
  color: #00ffa6;
  font-size: 14px;
}

/* SWITCH TOGGLE */
.switch {
  position: relative;
  width: 40px;
  height: 20px;
  display: inline-block;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: #444;
  border-radius: 20px;
  transition: 0.3s;
}

.slider::before {
  content: "";
  position: absolute;
  height: 16px;
  width: 16px;
  left: 2px;
  top: 2px;
  background: white;
  border-radius: 50%;
  transition: 0.3s;
}

input:checked + .slider {
  background: #00e7c8;
}

input:checked + .slider::before {
  transform: translateX(20px);
}
.cookie-banner {
  position: fixed;
  bottom: -200px; /* hidden state */
  left: 0;

  width: 100%;
  background: #fff;
  box-shadow: 0 -4px 25px rgba(0,0,0,0.1);
  padding: 25px 20px;
  z-index: 999999;

  display: flex;
  justify-content: center;

  /* animation */
  opacity: 0;
  transition: bottom 0.5s ease, opacity 0.5s ease;
}

.cookie-banner.show {
  bottom: 0;     /* slides up */
  opacity: 1;    /* fades in */
}
.cookie-content {
  max-width: 480px;
  text-align: center;
}

.cookie-content h2 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1b1b1b;
}

.cookie-content p {
  font-size: 0.95rem;
  margin: 15px 0 25px;
  color: #444;
  line-height: 1.6;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions .btn {
  padding: 12px;
  border-radius: 8px;
  font-size: 1rem;
  border: 1px solid #d1d1d1;
  cursor: pointer;
  transition: 0.2s;
}

.btn.accept {
  background: #0d6efd;
  border: none;
  color: #fff;
}

.btn.accept:hover {
  background: #0b5cd6;
}

.btn.custom:hover,
.btn.reject:hover {
  background: #f2f2f2;
}

h1, h2, h3 {
  font-family: "Poppins", "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: -0.5px;
  text-align:left;
}
p {
  font-family: "Inter", sans-serif;
  line-height: 1.7;
  color: #444;
  text-align:left;
}
/* ===== LOGIN BUTTON ===== */
.jj-login-btn {
  background: none;
  border: none;
  color: #111;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.3s ease;
  letter-spacing: 0.5px;
  margin-right:3px;
}

.jj-login-btn:hover {
  color: #5548e0; /* Accent hover color */
}
.jj-nav-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 420px;
  margin: 1rem auto;
}

.jj-nav-btn {
  display: inline-block;
  text-align: center;
  padding: 0.75rem 1rem;
  border: 2px solid #00e0c6;
  background: #00e0c6;
  border-radius: 10px;
  color: #222;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.jj-nav-btn:hover {
 
  transform: translateY(-2px);
}
h1, h2, h3 {
  font-family: "Poppins", "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: -0.5px;
}
p {
  font-family: "Inter", sans-serif;
  line-height: 1.7;
  color: #444;
}
 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Poppins", sans-serif;
    }

    :root {
      --accent: #6c63ff;
      --accent-dark: #5548e0;
    }

    body {
      background: #fff;
      color: #222;
      overflow-x: hidden;
    }

  /* ===== HEADER ===== */
.jj-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 1.2rem;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  font-family: "Poppins", sans-serif;
}

.jj-logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent, #6c63ff);
}

.jj-header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}




/* ===== HAMBURGER ICON ===== */
.jj-menu-btn {
  background: none;
  border: none;
  font-size: 1.7rem;
  color: #111;
  cursor: pointer;
  transition: transform 0.4s ease, color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  position: relative;
}




.jj-menu-btn i {
  position: absolute;
  transition: all 0.35s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.jj-menu-btn .fa-xmark {
  transform: rotate(-90deg) scale(0.5);
  opacity: 0;
}

.jj-menu-btn.active .fa-bars {
  transform: rotate(90deg) scale(0.5);
  opacity: 0;
}

.jj-menu-btn.active .fa-xmark {
  transform: rotate(0deg) scale(1);
  opacity: 1;
}

/* ===== NAV MENU (DStudio Style) ===== */
.jj-nav-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 270px;
  height: 100vh;
  background: #fff;
  color: #111;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem 1.5rem;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  z-index: 9999;
  overflow-y: auto;
}

.jj-nav-menu.active {
  transform: translateX(0);
}

/* ===== MENU HEADER ===== */
.jj-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  letter-spacing: 1px;
  color: #111;
  margin-bottom: 2rem;
}

.jj-menu-header h2 {
  font-size: 1.3rem;
}

.jj-close-btn {
  font-size: 1.8rem;
  cursor: pointer;
  transition: opacity 0.3s;
  color: #111;
}

.jj-close-btn:hover {
  opacity: 0.6;
}

/* ===== NAV LINKS ===== */
.jj-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

.jj-nav-links a {
  text-decoration: none;
  color: #111;
  font-size: 1rem;
  letter-spacing: 0.5px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.jj-nav-links a:hover {
  color: #d4af37; /* gold hover */
}

/* ===== DROPDOWN ===== */
.jj-dropdown {
  position: relative;
}

.jj-dropdown-content {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
  margin-left: 0.8rem;
}

.jj-dropdown.active .jj-dropdown-content {
  display: flex;
}

.jj-dropdown-content a {
  font-size: 0.9rem;
  opacity: 0.8;
  transition: opacity 0.3s, color 0.3s;
}

.jj-dropdown-content a:hover {
  opacity: 1;
  color: #fff;
}
/* ===============================
   DESKTOP DROPDOWN (>=1024px)
   =============================== */
@media (min-width: 1024px) {

  /* Parent stays relative for positioning */
  .jj-dropdown {
    position: relative;
  }

  /* Desktop dropdown container */
  .jj-dropdown-content {
    display: none;                   /* Hide by default */
    position: absolute;
    z-index: 999999;
    top: calc(100% + 8px);           /* Spacing below link */
    left: 0;
    background: #fff;
    padding: 0.8rem 1rem;
    min-width: 220px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    flex-direction: column;
    gap: 0.6rem;
    margin: 0;                       /* remove mobile margin */
    z-index: 999;
  }

  /* Show on hover (desktop behavior) */
  .jj-dropdown:hover .jj-dropdown-content {
    display: flex;
  }

  /* Desktop dropdown links */
  .jj-dropdown-content a {
    font-size: 0.95rem;
    padding: 0.3rem 0;
    opacity: 1;
    color: #111;
  }

  .jj-dropdown-content a:hover {
    color: var(--accent-dark, #5548e0);
  }

  /* Remove mobile sidebar indentation */
  .jj-dropdown-content {
    margin-left: 0;
  }
}

/* ===== MENU FOOTER ===== */
.jj-menu-footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #aaa;
}

.jj-socials {
  display: flex;
  gap: 1.5rem;
}

.jj-socials i {
  font-size: 1.2rem;
  cursor: pointer;
  transition: color 0.3s ease;
  color: #aaa;
}

.jj-socials i:hover {
  color: #fff;
}

/* ===== RESPONSIVE ===== */
@media (min-width: 768px) {
  .jj-menu-btn,
  .jj-close-btn {
    display: none;
  }

  .jj-nav-menu {
    position: static;
    width: auto;
    height: auto;
    background: none;
    box-shadow: none;
    flex-direction: row;
    align-items: center;
    transform: none;
    padding: 0;
  }

  .jj-nav-links {
    flex-direction: row;
    gap: 1.5rem;
  }

  .jj-dropdown-content {
    display: none;
    position: absolute;
    background: #111;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    top: 100%;
    left: 0;
    min-width: 200px;
    padding: 0.5rem 1rem;
    border-radius: 6px;
  }

  .jj-dropdown:hover .jj-dropdown-content {
    display: flex;
  }
}
/* ===============================
   DESKTOP NAV + DROPDOWN (>=1024px)
   =============================== */
@media (min-width: 1024px) {

  /* Nav menu inline on desktop */
  .jj-nav-menu {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    box-shadow: none;
    flex-direction: row;
    align-items: center;
    transform: none;
    padding: 0;
    z-index: 10;
  }

  /* Nav links horizontal */
  .jj-nav-links {
    flex-direction: row;
    gap: 2rem;
    align-items: center;
  }

  .jj-nav-links a {
    font-size: 1.05rem;
    color: #111;
    transition: color 0.3s ease;
  }

  .jj-nav-links a:hover {
    color: var(--accent-dark, #5548e0);
  }

  /* Dropdown positioning */
  .jj-dropdown {
    position: relative;
  }

  .jj-dropdown-content {
    display: none;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #fff; /* light background for readability */
    color: #111;
    min-width: 200px;
    padding: 0.6rem 1rem;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    gap: 0.5rem;
  }

  /* Show on hover */
  .jj-dropdown:hover .jj-dropdown-content {
    display: flex;
  }

  .jj-dropdown-content a {
    font-size: 0.95rem;
    padding: 0.3rem 0;
    opacity: 1;
  }

  .jj-dropdown-content a:hover {
    color: var(--accent-dark, #5548e0);
  }
}

/* Larger screens: improve spacing */
@media (min-width: 1024px) {
  .jj-header {
    padding: 1.2rem 3rem;
  }

  .jj-logo {
    font-size: 1.8rem;
  }

  .jj-nav-links a {
    font-size: 1.1rem;
  }
}
@media (min-width: 1024px) {
  .jj-nav-grid {
    max-width: 900px;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
  }

  .jj-nav-btn {
    padding: 0.9rem 1.4rem;
    font-size: 1.05rem;
  }
}


 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Poppins", sans-serif;
    }

    :root {
      --accent: #5548e0;
      --accent-dark: #5548e0;
    }

    body {
      background: #fff;
      color: #222;
      overflow-x: hidden;
      
    }

    /* ===== HEADER ===== */
    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.9rem 1.2rem;
      background: #fff;
      position: sticky;
      top: 0;
      z-index: 10;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    }

    .logo {
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--accent);
    }

    .header-right {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

  .nav-btn {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.nav-btn:hover {
  background: var(--accent-dark);
}

/* ===== HAMBURGER ICON ===== */
.menu-btn {
  background: none;
  border: none;
  font-size: 1.7rem;
  color: var(--accent);
  cursor: pointer;
  transition: transform 0.4s ease, color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 9999;
}

.menu-btn:hover {
  color: var(--accent-dark);
  transform: scale(1.15);
}

/* Bars → X animation */
.menu-btn i {
  position: absolute;
  transition: all 0.35s cubic-bezier(0.68, -0.55, 0.27, 1.55); /* bouncy */
}

.menu-btn .fa-xmark {
  transform: rotate(-90deg) scale(0.5);
  opacity: 0;
}

.menu-btn.active .fa-bars {
  transform: rotate(90deg) scale(0.5);
  opacity: 0;
}

.menu-btn.active .fa-xmark {
  transform: rotate(0deg) scale(1);
  opacity: 1;
}

/* ===== NAV LINKS BASE ===== */
.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
/* === Parent dropdown must be relative === */
.jj-dropdown {
  position: relative;
  z-index: 10000; /* ensures dropdown is on top */
}

/* === Dropdown menu === */
.jj-dropdown-content {
  display: none;             /* hide by default */
  position: absolute;
  top: 100%;                 /* right below parent */
  left: 0;
  min-width: 200px;
  background: #fff;           /* visible background */
  color: #111;                /* readable text */
  padding: 0.6rem 1rem;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  flex-direction: column;
  gap: 0.5rem;
  z-index: 10001;             /* higher than nav */
}

/* === Hover effect (desktop) === */
@media (min-width: 1024px) {
  .jj-dropdown:hover .jj-dropdown-content {
    display: flex;
  }
}

/* === Mobile toggle via .active === */
.jj-dropdown.active .jj-dropdown-content {
  display: flex;
}

/* === Links inside dropdown === */
.jj-dropdown-content a {
  color: #111;
  text-decoration: none;
  font-size: 0.95rem;
  padding: 0.3rem 0;
  transition: color 0.3s;
}

.jj-dropdown-content a:hover {
  color: var(--accent-dark, #5548e0);
}

/* ===== MOBILE VIEW ===== */
@media (max-width: 768px) {
  .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: #fff;
    gap: 1.2rem;
    align-items: center;
    padding: 2rem 0;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: all 0.4s ease;
    z-index: 98;
  }

  /* Animate when active */
  .nav-links.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  /* Hide desktop buttons only on mobile */
  .menu-btn {
    display: flex;
  }

  .header-right .nav-btn,
  .header-right .pricing-icon-btn {
    display: flex;
  }
}

/* ===== DESKTOP VIEW ===== */
@media (min-width: 769px) {
  .nav-links {
    display: flex;
    position: static;
    background: none;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .menu-btn {
    display: none;
  }
}
/* ===== NAV LINKS ICON STYLE ===== */
.nav-links a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--text-dark, #222);
  transition: 0.3s ease;
}

.nav-links a i {
  font-size: 1.1rem;
  color: var(--accent, #6c63ff);
  transition: transform 0.3s ease, color 0.3s ease;
}

.nav-links a:hover i {
  color: var(--accent-dark, #5848ff);
  transform: scale(1.2) rotate(10deg);
}

.nav-links a:hover {
  color: var(--accent-dark, #5848ff);
}

/* MOBILE VERSION SPACING FIX */
@media (max-width: 768px) {
  .nav-links a {
    font-size: 1.2rem;
    gap: 0.7rem;
  }

  .nav-links a i {
    font-size: 1.3rem;
  }
}
.hero {
  background-color: #0b0d10;
  color: #f0f0f0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content:left;
  text-align:left;
  min-height: 100vh;
  padding: 4rem 2rem;
  
}

.hero h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
  margin-top:50px;
}

.hero p {
  color: #b0b0b0;
  max-width: 600px;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 250px;
  text-align:left;
  align-items:left;
}

.btn-primary {
  background-color: #00e0c6 ;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  transition: all 0.2s ease-in-out;
  align-items:left;
  text-align:center;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-secondary {
  border: 1px solid #00e0c6;
  color:#00e0c6 ;
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  transition: all 0.2s ease-in-out;
  text-align:center;
  align-items:center;
  
}

.btn-secondary:hover {
  background-color: #00e0c6;
  color: #000;
}

.hero-animation {
  margin-bottom: 2rem;
  width: 100%;
  max-width: 400px;
}
    /* ===== HERO SECTION ===== */
.about-modern {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
  padding: 80px 20px;
  background:#fff ;
}

.about-image {
  flex: 1 1 400px;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.about-content {
  flex: 1 1 450px;
}

.about-content h4 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  color:red ;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.about-content h2 {
  font-size: 28px;
  font-weight: 800;
  color: #111;
  margin-bottom: 15px;
}

.about-content p {
  color: #333;
  line-height: 1.7;
  font-size: 16px;
  margin-bottom: 25px;
}

.about-checklist {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.about-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #333;
  font-size: 15px;
  margin-bottom: 10px;
}

.about-checklist i {
  color: #4ADE80 ;
  font-size: 18px;
}

.stats {
  display: flex;
  gap: 25px;
  margin-bottom: 25px;
}

.stats div {
  text-align: center;
}

.stats strong {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #333;
}

.stats span {
  font-size: 13px;
  color:#111;
}

.btn-cta {
  display: inline-block;
  background: #00BFA5;
  color: #f2f2f2;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease, background 0.3s ease;
}

.btn-cta:hover {
  transform: scale(1.05);
  
}

.why-jj {
  background: #fff;
  padding: 5rem 2rem;
  text-align: center;
}

.why-container {
  max-width: 1100px;
  margin: 0 auto;
}

.why-jj h2 {
  font-size: 2rem;
  line-height: 1.6;
  color: #111;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.subtitle {
  color: #555;
  font-size: 1rem;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.why-card {
  background: #fff;
  border: 2px solid #dfe3e8;
  padding: 2.5rem 2rem;
  text-align: left;
  transition: all 0.3s ease;
  border-radius: 0;
}

.why-card:hover {
  background: #007bff;
  border-color: #007bff;
}

.why-card:hover h3,
.why-card:hover p,
.why-card:hover i {
  color: #fff;
}

.icon {
  font-size: 3.2rem;
  color: #007bff ;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.why-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 0.6rem;
  transition: color 0.3s ease;
}

.why-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.cta-btc {
  margin-top: 3rem;
  padding: 1rem 2.5rem;
  background: transparent;
  border: 2px solid #f2f2f2;
  color:#000;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-btc:hover {
  background: #00e0c6;
  color: #fff;
}

.testimonial-content {
  padding: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonial-content h5 {
  margin-top: auto; /* THIS forces it to the bottom */
  font-weight: 600;
  color: #1a1a1a;
}
.testimonials {
  text-align: center;
  padding: 60px 20px;
  background: #fff;
  
}
.testimonials h5 {
    text-align:bottom ;
}

.testimonials h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #2d2d2d;
  margin-bottom: 10px;
  position: relative;
}

.testimonials h2 .highlight {
  color: #7a3cff; /* brand purple */
  position: relative;
}

.testimonials h2 .highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 6px;
  background: rgba(122, 60, 255, 0.15);
  border-radius: 6px;
  z-index: -1;
}

.testimonials p {
  font-size: 0.95rem;
  color: #555;
  max-width: 420px;
  margin: 0 auto;
}

.testimonial-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 10px;
  padding-bottom: 20px;
  scrollbar-width: none; /* hide scrollbar */
}

.testimonial-carousel::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  background: #f5f5f5;
  border-radius: 18px;

  flex: 0 0 80%;
  scroll-snap-align: center;
  text-align: left;
  overflow: hidden;
  transition: transform 0.3s ease;
  margin-left:10px;
}

.testimonial-card:hover {
  transform: translateY(-6px);
}

.testimonial-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.testimonial-content {
  padding: 20px;
  position: relative;
}

.testimonial-content p {
  font-size: 0.9rem;
  color: #444;
  margin-bottom: 12px;
}

.testimonial-content h4 {
  font-weight: 600;
  color: #1a1a1a;
  text-align:bottom ;
}

.testimonial-content span {
  font-size: 0.8rem;
  color: #777;
  display: block;
  margin-bottom: 12px;
}

.see-more {
  position: absolute;
  bottom: 18px;
  right: 18px;
  color: #7b61ff;
  font-size: 1.1rem;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.see-more:hover {
  transform: translateX(4px);
}
.highlight{
    color:#6c63ff;
}

/* ====================================
   DESKTOP VIEW — REMOVE CAROUSEL (≥992px)
   ==================================== */
@media (min-width: 992px) {

  /* Turn carousel container into a grid */
  .testimonial-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 cards */
    gap: 30px;
    overflow: visible;  /* remove horizontal scroll */
    scroll-snap-type: none; /* disable snap */
    padding-bottom: 0;
  }

  /* Grid cards behave normally */
  .testimonial-card {
    flex: none; /* stop fixed width */
    width: 100%;
    margin-left: 0;
    transform: none;
  }

  .testimonial-card:hover {
    transform: translateY(-6px);
  }
}

/* ====================================
   LARGE DESKTOP (≥1200px)
   ==================================== */
@media (min-width: 1200px) {
  .testimonial-carousel {
    grid-template-columns: repeat(4, 1fr); /* 4 cards if available */
  }

  .testimonial-card img {
    height: 200px;
  }
}



.footer-github {
  background: #0d1117;
  color: #c9d1d9;
  padding: 60px 20px;   /* ← removed the left/right padding */
  font-family: Arial, sans-serif;
  overflow-x:hidden ;
  
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: space-between;
  margin-bottom: 60px;
}

/* BRAND SECTION */
.footer-brand {
  max-width: 260px;
}

.footer-logo {
  width: 120px;
  margin-bottom: 20px;
}

.newsletter-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
}

.newsletter-text {
  font-size: 13px;
  color: #8b949e;
  margin-bottom: 20px;
}

.subscribe-btl {
  padding: 10px 22px;
  background: transparent;
  border: 1px solid #8b949e;
  color: #ffffff;
  border-radius: 6px;
  cursor: pointer;
}

/* 2x2 COLUMN LAYOUT */
.footer-columns {
  display: grid;
  grid-template-columns: repeat(2, 180px);
  gap: 40px 0px;
}

.footer-col h4 {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #8b949e;
  margin-bottom: 12px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
  color: #c9d1d9;
  text-decoration: none;
}

.footer-col a:hover {
  color: white;
}

/* BOTTOM SECTION */
.footer-bottom {
  
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 13px;
  color: #8b949e;
}

.footer-legal a {
  margin-right: 2px;
  font-size: 13px;
  color: #8b949e;
}

.footer-social a {
  margin-left: 20px;
  margin-right:30px;
  font-size: 18px;
  color: #8b949e;
}

.footer-social a:hover {
  color: white;
}
.metrics-section {
  font-family: "Inter", sans-serif;
  background: #fff;
  color: #111;
  text-align: center;
  padding: 60px 20px;
  position: relative;
  z-index: 1;
}

.metrics-section h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0d1730;
}

.metrics-section p {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 40px;
}

.metrics-section #barGraph {
  max-width: 700px;
  margin: 0 auto;
  perspective: 900px;
  transform-style: preserve-3d;
}

/* 3D effect for bars */
.metrics-section .apexcharts-bar-series .apexcharts-series path {
  filter: drop-shadow(8px 8px 16px rgba(0, 0, 0, 0.2));
  transform: skewY(-4deg) rotateX(10deg);
  transform-origin: bottom;
}

/* Responsive */
@media (max-width: 600px) {
  .metrics-section h2 {
    font-size: 1.4rem;
  }

  .metrics-section p {
    font-size: 0.9rem;
  }
}



.services {
  background: #fff;
  padding: 5rem 2rem;
  text-align: center;
}

.section-title {
  font-size: 2.3rem;
  font-weight: 700;
  color:#111;
  margin-bottom: 0.7rem;
}

.section-subtitle {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  max-width: 600px;
  margin: 0 auto 3rem;
  
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.service-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background: #fff;
  border: 2px solid #dfe3e8;
  padding: 2.5rem 2rem;
  text-align: left;
  height: 240px;
  transition: all 0.3s ease;
  text-decoration: none;
  border-radius: 0;
  box-shadow: none;
}

.service-box:hover {
  background: #007bff;
  border-color: #007bff;
}

.service-box:hover h3,
.service-box:hover p,
.service-box:hover i {
  color: #fff;
}

.service-box i {
  font-size: 3.5rem; /* mas malaki na */
  color: #007bff;
  margin-bottom: 1.2rem;
  transition: color 0.3s ease;
}

.service-box h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.service-box p {
  color: #555;
  font-size: 1rem;
  line-height: 1.5;
  transition: color 0.3s ease;
}
.promo-card {
  width: 320px;
  background: linear-gradient(135deg, #5b21b6, #3b82f6);
  color: #fff;
  border-radius: 8px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(59, 130, 246, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  
  /* ito ang center trick */
  margin: 80px auto;  /* automatic horizontal center */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.promo-card {
  width: 320px;
  background: linear-gradient(135deg, #3300ff, #3d2f80);
  color: #fff;
  border-radius: 8px;
  padding: 20px 12px;
  text-align: center !important;
  box-shadow: 0 6px 18px rgba(59, 130, 246, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.promo-icon {
  width: 50px;
  margin-bottom: 14px;
  
}

.promo-card h2 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.promo-card p {
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 20px;
  color: #f3f4f6;
}

.promo-btn {
  background:#007bff;
  color: #fff;
  border: none;
  padding: 10px 0;
  width: 100%;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.promo-btn:hover {
  transform: scale(1.04);
  background: linear-gradient(90deg, #6d28d9, #2563eb);
}

.promo-note {
  display: block;
  margin-top: 12px;
  font-size: 11px;
  color: #e0e7ff;
}

:root {
  --primary: #0056ff;
  --text-dark: #111;
  --text-light: #666;
  --bg-light: #f8f9fc;
  --white: #fff;
}

/* Section Base */
.collaboration-section {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
}

.collaboration-section h2 {
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.section-desc {
  max-width: 720px;
  margin: 0 auto 50px;
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.6;
}

/* Grid Layout */
.collab-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

/* Card */
.collab-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.collab-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.collab-content {
  padding: 25px;
  text-align: left;
}

.collab-content .tag {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.collab-content h3 {
  margin: 10px 0;
  color: var(--text-dark);
  font-size: 1.1rem;
  line-height: 1.4;
}

.collab-content p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 15px;
  line-height: 1.6;
}

.read-more {
  color: var(--primary);
  font-weight: 500;
  text-decoration: none;
}

.read-more:hover {
  text-decoration: underline;
}

/* Logos Row */
.logos {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
}

.logos img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.logos span {
  color: var(--text-light);
  font-weight: 600;
}

/* CTA */
.cta-box {
  margin-top: 60px;
}

.cta-box h4 {
  color: var(--text-dark);
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.cta-btn {
   background: #fff;
  border: 2px solid #dfe3e8;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
  color:#000;
}

.cta-btn:hover {
    background: #6c63ff;
  color: #fff;
}


.faq-section {
  background: #fff ; /* deep blue */
  color: #000;
  padding: 3rem 1.5rem;
  font-family: "Poppins", sans-serif;
}

.faq-section h2 {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 2rem;
  font-weight: 700;
}

.faq-item {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.faq-item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #111;
  padding: 1.2rem 0;
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question i {
  transition: transform 0.35s ease;
}

.faq-question.active i {
  transform: rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-5px);
  transition: max-height 0.4s ease, opacity 0.3s ease, transform 0.3s ease;
}

.faq-answer p {
  color: #000 !important;
}

.faq-answer.open {
  max-height: 500px;
  opacity: 1;
  transform: translateY(0);
}
@media (min-width: 768px) {
  .faq-section {
    padding: 5rem 3rem;
  }

  .faq-section h2 {
    font-size: 2rem;
  }

  .faq-question {
    font-size: 1.1rem;
  }
}


.card-wrapper {
  text-decoration: none;
  color: inherit;
  display: block;
}

.collab-ready {
  text-align: center!important;
  padding: 70px 20px;
  max-width: 100vw;
  margin: 0 auto;
}

.collab-ready h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 15px;
}

.collab-ready p {
  font-size: 18px;
  color: #555;
  margin-bottom: 35px;
  line-height: 1.5;
}

/* Buttons container */
.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
}

/* PRIMARY BUTTON (like Netlify) */
.cta-primary {
  display: block;
  background: #00BFA5;
  color: #000;
  padding: 14px 20px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: 0.2s ease-in-out;
}

.cta-primary:hover {
  opacity: 0.9;
}

/* SECONDARY BUTTON (outline) */
.cta-secondary {
  display: block;
  padding: 14px 20px;
  border: 2px solid #f5f5f5;
  border-radius: 50px;
  text-decoration: none;
  color: #000;
  font-weight: 600;
  text-align: center;
  transition: 0.2s ease-in-out;
}

.cta-secondary:hover {
  background: #f5f5f5;
}

.jj-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 200px;     /* adjust size */
    width: 100px;
}

