/* === Base Styles === */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600&display=swap');

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Outfit', sans-serif;
  background: #111;
  color: #f2f2f2;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  letter-spacing: -0.3px;
  color: #fff;
}

/* === Header === */
.main-header {
  position: sticky;
  top: 0;
  width: 100%;
  background: #111;
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  z-index: 1000;
  border-bottom: 1px solid #222;
}

.logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

/* === Hamburger === */
.hamburger {
  font-size: 1.8rem;
  color: #fff;
  cursor: pointer;
  background: none;
  border: none;
}

/* === Slide-out Mobile Menu === */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  height: 100vh;
  width: 240px;
  background: #1a1a1a;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.4);
  transition: right 0.3s ease-in-out;
  z-index: 999;
  padding: 3rem 1.5rem;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav li {
  margin-bottom: 1.5rem;
}

.mobile-nav a {
  text-decoration: none;
  color: #ddd;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.2s ease;
}

.mobile-nav a:hover {
  color: #fff;
}

/* === Hero Section === */
.hero-with-bg {
  background-image: url("images/hero.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-with-bg .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.2s;
}

.hero-content p {
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.8s;
  opacity: 0;
  transform: translateY(10px);
}

.hero-button {
  margin-top: 30px;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 1.6s;
}

#hero-title {
  font-size: 3rem;
  margin-bottom: 1.2rem;
  color: #fff;
  font-weight: 600;
  opacity: 0;
  transform: translateY(-10px);
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.1s;
}

/* === Buttons === */
button {
  margin-top: 20px;
  padding: 12px 24px;
  font-size: 1rem;
  background-color: #444;
  border: none;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background-color: #222;
}

/* === Gallery Sections === */
.gallery {
  padding: 100px 20px 80px;
  background: #1a1a1a;
  text-align: center;
}

.gallery h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #fff;
}

.gallery p {
  font-size: 1.1rem;
  color: #ccc;
  max-width: 700px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  max-width: 800px;
  margin: 2rem auto;
}

.card {
  background: #222;
  padding: 40px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  font-size: 1.1rem;
  color: #eee;
}

/* === Footer === */
footer {
  padding: 60px 20px;
  background: #111;
  color: #fff;
  text-align: center;
}

footer a {
  color: #ccc;
  text-decoration: none;
  margin: 0 8px;
  font-size: 0.95rem;
}

footer a:hover {
  color: #fff;
}

footer p {
  font-size: 0.85rem;
  color: #aaa;
  margin-top: 20px;
}

/* existing CSS above... */

/* === Chat Bubbles (Messenger Style) === */
#seshbot-response {
  margin-top: 16px;
  max-height: 200px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px; /* make room for input at the bottom visually */
}
#seshbot-intro {
  transition: opacity 0.4s ease;
}
#seshbot-intro.hidden {
  opacity: 0;
  pointer-events: none;
  height: 0;
  overflow: hidden;
}

#seshbot-response .bot-message-bubble {
  background-color: #e5e5ea;
  color: #111;
  padding: 10px 14px;
  border-radius: 16px;
  max-width: 100%;
  font-size: 14px;
  line-height: 1.5;
  align-self: flex-start;
}

#seshbot-response .user-message-bubble {
  background-color: #333;
  color: #fff;
  padding: 10px 14px;
  border-radius: 16px;
  max-width: 100%;
  font-size: 14px;
  line-height: 1.5;
  align-self: flex-end;
}

/* Optional: smooth scroll for overflow */
#seshbot-response::-webkit-scrollbar {
  width: 4px;
}

#seshbot-response::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 4px;
}
/* === Utility Classes === */
.hidden {
  display: none !important;
}

/* === Ensure input stays at bottom === */
.ask-popup-body {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.chat-input {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}
.ask-popup {
  display: none;
  flex-direction: column;
  position: fixed;
  bottom: 100px;
  right: 20px;
  width: 320px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  padding: 20px;
  z-index: 1000;
}

.ask-popup-body {
  display: flex;
  flex-direction: column;
  height: 100%;
}


/* === Dark Overlay Behind Mobile Nav === */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 998;
}

.nav-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

/* === Close Button Inside Menu === */
.mobile-nav .close-btn {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  font-size: 1.6rem;
  color: #ddd;
  cursor: pointer;
  font-weight: bold;
}

/* === Hero (Small) === */
.mini-hero {
  background: #1a1a1a;
  color: #fff;
  padding: 80px 20px 60px;
  text-align: center;
  animation: fadeInUp 1s ease forwards;
}

.mini-hero h1 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.mini-hero p {
  font-size: 1.1rem;
  color: #ccc;
  max-width: 700px;
  margin: 0 auto;
}

/* === Card Grids === */
.card-set {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.card-set .card {
  background: #222;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  font-size: 1rem;
  color: #eee;
}

/* === Animations === */
.card-set .card,
.hero-content,
.hero-content p,
.hero-button,
#hero-title,
.mini-hero {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards;
}

.card-set .card:nth-child(1) { animation-delay: 0.2s; }
.card-set .card:nth-child(2) { animation-delay: 0.4s; }
.card-set .card:nth-child(3) { animation-delay: 0.6s; }
.card-set .card:nth-child(4) { animation-delay: 0.8s; }
.card-set .card:nth-child(5) { animation-delay: 1s; }
.card-set .card:nth-child(6) { animation-delay: 1.2s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === Section Divider === */
.section-divider,
.gallery-divider {
  width: 100px;
  height: 2px;
  background: #444;
  margin: 60px auto;
  border-radius: 8px;
  opacity: 0.3;
}

.hero-content h1 {
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.3rem;
  font-weight: 300;
  max-width: 700px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
  text-align: center;
}
a {
  color: #ffffff; /* or whatever color matches your theme */
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #9ecfff; /* light blue or whatever hover color you like */
  text-decoration: underline;
}
<style>
 .screenshots {
  padding: 60px 20px;
  text-align: center;
}
.screenshots h3 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-align: center;
}
.screenshots p {
  color: #ccc;
  margin-bottom: 1.5rem;
  text-align: center;
}
.screenshot-gallery {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.screenshot-gallery img {
  width: 220px;
  max-width: 90vw;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  cursor: pointer;
  transition: transform 0.2s ease;
}
.screenshot-gallery img:hover {
  transform: scale(1.05);
}
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
}
.lightbox-modal img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}
.lightbox-modal.show {
  display: flex;
}
.join-button {
  background-color: white;
  color: black;
  font-weight: bold;
  padding: 0.5rem 1.25rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.join-button:hover {
  background-color: #e4e4e4;
}
.visually-hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.launch-banner {
  background: linear-gradient(90deg, #ff416c, #ff4b2b);
  color: white;
  text-align: center;
  padding: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
}
.launch-banner a {
  color: #fff;
  text-decoration: underline;
  margin-left: 8px;
}
.gallery-section {
  padding: 60px 20px;
  background: #111;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gallery-heading h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
  line-height: 1.3;
  letter-spacing: -0.3px;
}

.gallery-heading p {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #aaa;
  margin-top: 0.5rem;
  margin-bottom: 2.5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
  place-items: center;
}



.gallery-grid img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}
.slideshow-container {
  position: relative;
  max-width: 800px;
  margin: 2rem auto;
}

.slide-seshbot {
  display: none;
  transition: opacity 0.5s ease;
  text-align: center;
}

.slide-seshbot.active {
  display: block;
}
.split-section h2 {
  text-align: center;
}
/* === SeshBot Card Section === */
.card-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}
.caption {
  margin-top: 0.5rem;
  color: #ccc;
  font-size: 0.95rem;
}

button.prev,
button.next {
  cursor: pointer;
  position: absolute;
  top: 45%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  border: none;
  background-color: transparent;
  user-select: none;
}

button.prev {
  left: 0;
}

button.next {
  right: 0;
}
/* SeshBot Pro Slideshow Gallery */
.slideshow-container {
  position: relative;
  max-width: 800px;
  margin: 2rem auto;
  padding: 1rem 0;
}

.slide-seshbot {
  display: none;
  text-align: center;
}

.slide-seshbot.active {
  display: block;
}

.slide-seshbot img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
}

.caption {
  margin-top: 10px;
  font-size: 1rem;
  color: #aaa;
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 12px;
  color: white;
  font-weight: bold;
  font-size: 24px;
  background: rgba(0, 0, 0, 0.4);
  border: none;
  border-radius: 50%;
  z-index: 10;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}
.slideshow-container {
  position: relative;
  max-width: 800px;
  margin: 2rem auto;
  overflow: hidden;
  padding: 0 40px; /* gives arrows space to sit inside */
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 45%;
  width: 40px;
  height: 40px;
  padding: 0;
  margin-top: -20px;
  color: white;
  font-weight: bold;
  font-size: 24px;
  border-radius: 50%;
  user-select: none;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}


.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
}

.lightbox-modal img {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 90%;
  margin-top: 5%;
}
.portfolio-highlight {
  text-align: center;
  padding: 60px 20px;
}

.portfolio-highlight h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #fff;
}

.portfolio-highlight p {
  color: #aaa;
  font-size: 1rem;
  margin-bottom: 30px;
}
.slideshow-container {
  position: relative;
  max-width: 800px;
  margin: 2rem auto;
  overflow: hidden;
  padding: 0 40px; /* gives arrows space to sit inside */
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 45%;
  width: 40px;
  height: 40px;
  padding: 0;
  margin-top: -20px;
  color: white;
  font-weight: bold;
  font-size: 24px;
  border-radius: 50%;
  user-select: none;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slideshow-container {
  position: relative;
  max-width: 100%;
  height: auto;
  display: flex;
  align-items: center; /* vertically center arrows */
  justify-content: center;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}


.card-container .card {
  background: #222;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  color: #fff;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.card-container .card.show {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.show {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.show {
  opacity: 1;
  transform: translateY(0);
}
.slideshow-container {
  position: relative;
  max-width: 300px;
  margin: 0 auto 20px;
  height: 300px; /* Add this line */
  overflow: hidden;
}
.product-preview {
  background-color: #1e1e1e;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 0 0 1px #333;
}
.next-step {
  text-align: center;
  padding: 3rem 1rem 2rem;
  background: #111111;
  color: #ffffff;
  font-size: 1.1rem;
}

.next-link {
  display: inline-block;
  margin-top: 0.5rem;
  color: #00e0d6;
  font-weight: 600;
  text-decoration: none;
}

.next-link:hover {
  text-decoration: underline;
}
.slideshow-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  padding: 1rem;
  background-color: #111;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.slide-seshbot {
  display: none;
  text-align: center;
}

.slide-seshbot.active {
  display: block;
}

.slide-seshbot img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: contain;
  border-radius: 12px;
  margin: 0 auto;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
}
/* === HARD OVERRIDE FOR SESH BOT GALLERY === */
.slideshow-container {
  all: initial;
  box-sizing: border-box;
  position: relative;
  width: 100% !important;
  max-width: 500px !important;
  margin: 2rem auto !important;
  padding: 1rem !important;
  background-color: #111 !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

.slide-seshbot {
  all: initial;
  display: none !important;
  text-align: center !important;
}

.slide-seshbot.active {
  display: block !important;
}

.slide-seshbot img {
  all: initial;
  display: block !important;
  width: auto !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: 600px !important;
  object-fit: contain !important;
  border-radius: 12px !important;
  margin: 0 auto !important;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3) !important;
}
.legal-note {
  font-family: Inter, sans-serif;
  line-height: 1.5;
  font-size: 0.85rem;
  color: #999;
}
