/* Global Styles */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1.4;
}
/* Two-path cards */
.card-grid{display:flex;gap:20px;justify-content:flex-start;flex-wrap:wrap;margin-top:10px;}
.info-card{display:block;width:280px;background:#FEFEFB;border:1px solid #ddd;border-radius:14px;box-shadow:0 4px 12px rgba(0,0,0,.12);padding:16px 28px;text-align:center;color:inherit;text-decoration:none;transition:.15s;cursor:pointer;}
.info-card:hover{transform:translateY(-3px);box-shadow:0 8px 24px rgba(0,0,0,.18);}
.card-img{width:161px;height:161px;object-fit:cover;border-radius:10px;margin:0 auto 14px;display:block;}
.card-title{margin:4px 0 8px;font-size:1.05rem;font-weight:700;color:var(--jsi-text);}
.card-text{margin:0;font-size:.95rem;line-height:1.6;color:var(--jsi-muted);}




.feedback-intro {
  margin-bottom: 2em;
  font-size: 1em;
  color: #444;
  max-width: 750px;
}

.feedback-list {
  list-style: decimal;
  list-style-position: outside;
  padding-left: 1.5em;
}

.feedback-list li {
  margin-bottom: 1.5em;
}

.feedback-text {
  font-style: italic;
  display: inline;
}

.feedback-meta {
  font-size: 80%;
  color: #666;
}

.faq-nav ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: flex;
  flex-direction: column; /* Stack items vertically */
  gap: 10px; /* Optional: space between items */
}
.faq-nav ul li a {
  text-decoration: none;
  color: #6395A8; /* Matching the call-to-action button color */
  font-weight: 600;
}

.faq-nav ul li a:hover {
  text-decoration: underline;
}

.faq-section {
  margin-top: 30px;
  margin-bottom: 30px;
}

/* Header with background image */
header {
  position: relative;
  background: url('bg5.png') center/cover no-repeat, black;
  height: 350px;
  color: white;
}


/* Navigation Container */
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 10px;
  left: 20px;
  right: 20px;
  z-index: 1000;
}

/* Logo and Company Name on the Left */
.logo-container {
  display: flex;
  align-items: center;
  }

.white-link {
  color: white;
  text-decoration: none;
  
}

.white-link:hover {
  text-decoration: underline;
  }

.company-logo {
   /* Adjust size as needed */
  
  margin-right: 10px;
}

.company-name-header {
  font-size: 0.9rem;
  color: white;
  opacity: 80%;
}

/* Hamburger Menu Container on the Right */
.menu-container {
  display: flex;
  align-items: center;
  position: relative; /* So that the flyout is positioned relative to this container */
}

/* Hide the checkbox toggle */
#menu-toggle {
  display: none;
}

/* Hamburger Icon */
.menu-icon {
  font-size: 1.5rem;
  cursor: pointer;
  color: white;
}

/* Flyout Menu */
.menu {
  position: absolute;
  top: 40px;
  right: 0;
  background: rgba(0, 0, 0, 0.9);
  padding: 10px;
  border-radius: 5px;
  display: none;
}

/* Show the flyout menu when the checkbox is checked */
#menu-toggle:checked + .menu-icon + .menu {
  display: block;
}

.menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu li {
  margin: 10px 0;
}

.menu li a {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
}

/* Highlight the active menu item */
.menu li.active a {
  font-weight: bold;
}

/* Additional Header Text (below the nav) */
.header-text {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 840px;
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
  text-align: left;
}

.header-line {
  display: flex;
  gap: 10px;
  font-size: 1.4rem;
  align-items: center;
  margin-bottom: 7px;
}

.company-name {
  font-weight: 200;
  font-size: 0.9rem;
}

.divider {
  color: #ccc;
  opacity: 0.7;
  font-size: 1rem;
}

.tagline {
  color: #EEB656;
  font-size: 0.9rem;
  font-weight: 600;
}

.tagline2 {
  color: #f6f6f6;
  font-size: 1.6rem;
  font-weight: 600;
  opacity: 0.8;
}
  
  /* Headings and Text */
  h2 {
    font-size: 1.6rem;
    font-weight: 600;
  }
  
  h3 {
    font-size: 1.2rem;
    margin-bottom: 0px;
    margin-top: 30px;
    font-weight: 800;
    color: #181818;
  }
  
  p {
    font-size: 1.2rem;
    font-weight: 300;
    margin-block-start: 0.2em;
    margin-block-end: 1.2em;
    color: #272727;
  }
  
  /* Call-to-Action Button */
.cta-button {
  background: #e4e4ea;
  color: #12171d;
  padding: 8px 8px;
  border: 1px solid #c7c7cf; /* subtle but crisp */
  border-radius: 5px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cta-button:hover {
  background: #dadade; 
}
  
  /* Section Styling */
  section {
    padding: 20px 20px;
    max-width: 800px;
    margin: auto;
    font-weight: 300;
  }
  
  /* Gallery Styles */
  .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 10px;
    margin-top: 20px;
  }
  
  .gallery img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s;
  }
  
  .gallery img:hover {
    transform: scale(1.03);
  }
  
  /* Lightbox Styles */
  .lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 999;
    transition: opacity 0.3s ease;
  }
  
  .lightbox img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  }
  
  .lightbox .close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    background: none;
    border: none;
  }
  
  /* Table Styles */
  table {
    width: 100%;
    max-width: 700px;
    margin: 15px 0;
    border-collapse: collapse;
    font-size: 1rem;
  }
  
  th, td {
    padding: 10px;
    border: 1px solid #ccc;
    text-align: left;
  }
  
  th {
    background-color: #f8f8ef;
  }
  
  /* Unordered List Styling */
  ul {
    text-align: left;
    max-width: 700px;
    margin-top: -15px;
    margin-right: auto;
    margin-bottom: 8px;
    margin-left: auto;
    padding-left: 20px;
    color: #272727;
    font-size: 1.2rem;
  }
  
  /* Footer Styling */
  footer {
    text-align: center;
    padding: 20px;
    background: #f4f4f4;
    color: #333;
  }
  
  /* Profile Section */
  .profile-container {
    display: flex;
    align-items: flex-start;
    padding-top: 10px;
    flex-direction: row;
  }
  
  .profile-image {
    width: 100px;
    height: 100px;
    overflow: hidden;
    border-radius: 50%;
    flex-shrink: 0;
    margin-right: 16px;
  }
  
  .profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 50%;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 600px) {
    .profile-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .profile-image {
      margin-right: 0;
      margin-bottom: 16px;
    }
  
    .profile-container p {
      text-align: left;
    }
  
    header h1 {
      font-size: 4rem;
    }

/* ===== JustSome.Info overrides ===== */

/* Packages & Pricing */
#packages-pricing { padding:20px 20px; }
#packagesHeading { font-size:1.4rem; margin:0 0 12px; }
#packages-pricing table { width:100%; border-collapse:collapse; margin-top:12px; }
#packages-pricing th, #packages-pricing td { border:1px solid #ddd; padding:8px; text-align:left; }
#packages-pricing th { background:#f9f9f9; font-weight:600; }

/* Lightbox */
.lightbox{
  position:fixed; inset:0; display:none; opacity:0; transition:opacity .3s ease;
  align-items:center; justify-content:center; background:rgba(0,0,0,.6); z-index:9999;
}
.lightbox img{ max-width:90vw; max-height:90vh; }
.lightbox .close{
  position:absolute; top:16px; right:20px; font-size:2rem; line-height:1;
  border:0; background:transparent; color:#fff; cursor:pointer;
}






  }
  