@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

/* :root {
  --dark: #1b1c1d;
  --grey: #2c2f34;
  --light-grey: #f5f5f5;
  --primary: #00b4d8;
} */

:root {
  --dark: #121212;
  --grey: #1f1f1f;
  --light-grey: #f5f7fa;
  --primary: #00b4d8;
  --primary-hover: #0097a7;
  --text-light: #f1f1f1;
  --text-dark: #1e1e1e;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* body {
  font-family: 'Inter', sans-serif;
  background-color: var(--dark);
  color: white;
  line-height: 1.6;
} */
body {
  font-family: 'Inter', sans-serif;
  background-color: var(--dark);
  color: var(--text-light);
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

header {
  background: rgba(0, 0, 0, 0.85);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  /* gap: 10px; */
}

.logo img {
  height: 90px;
}

.logo span {
  font-size: 1.3rem;
  font-weight: bold;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

nav a {
  text-decoration: none;
  color: #ccc;
  transition: color 0.3s;
  font-weight: 500;
}

nav a:hover {
  color: var(--primary);
}

.logo a {
  text-decoration: none;
  color: #ccc;
  font-weight: bold;
  transition: color 0.3s ease;
}

.logo a:hover {
  color: var(--primary);
}


.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: background-image 1s ease-in-out;
}


.overlay {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-content {
  z-index: 2;
  color: white;
  max-width: 700px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn {
  padding: 0.8rem 1.6rem;
  background-color: var(--primary);
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s ease;
}

.btn:hover {
  background-color: var(--primary-hover);
}

.section {
  padding: 5rem 0;
  background-color: var(--light-grey);
  color: var(--text-dark);
}

.section.light {
  background-color: var(--light-grey);
  color: var(--text-dark);
}


.section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: inherit;
}

.section ul {
  list-style: disc;
  padding-left: 2rem;
}

.section-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: flex-start;
}

@media (max-width: 768px) {
  .section-flex {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

.section-text {
  flex: 1;
}

.section-img {
  flex: 1;
  text-align: center;
  margin-right: 40px;
}

.section-img img {
  width: 100%;
  border-radius: 10px;
  max-width: 350px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.founder-title {
  margin-top: 10px;
  font-weight: 600;
  font-size: 1rem;
  color: #333;
}

footer {
  background-color: #111;
  text-align: center;
  padding: 2rem;
  color: #888;
  font-size: 0.9rem;
}
/* Contact Section Styles */


.accordion {
  margin-top: 2rem;
  background: rgba(255, 255, 255, 0.03); /* no blur */
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}


.accordion-item {
  border-bottom: 1px solid #444;
}

.accordion-header {
  display: flex;               /* enable flexbox */
  justify-content: space-between; /* push icon to far right */
  align-items: center;         /* vertically center content */
  font-size: 1.25rem;
  font-weight: 600;
  background-color: #f3f4f6;
  color: #111827;
  padding: 1rem 1.5rem;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  margin-bottom: 0.5rem;
  transition: background-color 0.3s ease;
}
/* .accordion-header {
  background: none;
  border: none;
  color: var(--text-dark);
  font-size: 1.2rem;
  font-weight: 600;
  padding: 1rem 0;
  text-align: left;
  width: 100%;
  cursor: pointer;
  transition: color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
} */

.accordion-header:hover {
  background-color: #e5e7eb; /* slightly darker on hover */
}

.accordion-header.active {
  background-color: #dbeafe; /* highlight active one */
  color: #1d4ed8; /* subtle blue for active */
}

/* .accordion-header:hover {
  color: var(--grey);
} */



.accordion-header::after {
  content: '+';
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  color: #6b7280;
}

.accordion-header.active::after {
  content: '–';
  transform: rotate(180deg);
  color: #1d4ed8;
}


.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  color: var(--text-dark);
  padding: 0 1rem;
}

/* Add this new rule for expanded state */
.accordion-header.active + .accordion-content {
  padding: 0 1rem 1rem 1rem;
  max-height: 5000px;
}

.accordion-content p,
.accordion-content ul {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.accordion-content ul {
  padding-left: 1.5rem;
}

.accordion-content li {
  margin-bottom: 0.5rem;
}


/* Accordion fixes for light theme sections */
.section.light .accordion-header {
  color: #222;
}

.section.light .accordion-header:hover,
.section.light .accordion-header.active {
  color: #000;
  
}

.section.light .accordion-header::after {
  color: #555;
}

.section.light .accordion-header.active::after {
  color: #000;
}

.section.light .accordion-content {
  color: #333;
  background-color: transparent;
  padding: 0;
  border-radius: 0;
  opacity: 1;
  transition: all 0.4s ease;
}

/* .section.light .accordion-header.active + .accordion-content {
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 0 0 10px 10px;
  margin-top: 0.5rem;
} */

.section.light .accordion-header.active + .accordion-content {
  background-color: #fcfcfb; 
  border-radius: 10px;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  padding: 1rem;
  color: #222;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}


.founder-photo {
  width: 100%;
  max-width: 350px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  object-fit: cover;
  border: 4px solid #ffffff10; /* soft outer glow */
}

.founder-photo:hover {
  transform: scale(1.03);
}

/* .contact-box {
  background-color: #ffffff10;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(4px);
  text-align: center;
  transition: transform 0.3s ease;
}

.contact-box:hover {
  transform: translateY(-4px);
}

.contact-box h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.contact-box p {
  color: #333;
  font-size: 1.1rem;
}

.contact-box a.btn {
  margin-top: 1rem;
} */


.contact-box {
  background-color: #ffffff10;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(4px);
  text-align: center;
  max-width: 600px;
  margin: auto;
  transition: transform 0.3s ease;
}

.contact-box:hover {
  transform: translateY(-4px);
}

.contact-box h2 {
  font-size: 2.4rem;
  margin-bottom: 0.8rem;
  color: var(--text-dark);
}

.contact-subtext {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-item {
  font-size: 1.05rem;
  color: #333;
}

.contact-item a {
  display: block;
  margin-top: 4px;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.contact-item a:hover {
  color: var(--primary-hover);
}



.contact-info p {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #333;
}

.contact-info a {
  color: #0077b6;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}
.section-flex.reverse {
  flex-direction: row-reverse;
}

.about-box {
  background-color: #ffffff10; /* light transparent box */
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}

.chat-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background-color: #888888;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.chat-float:hover {
  background-color: #666;
}

.chat-float img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1); /* makes white on dark */
}

.chat-launcher {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background-color: transparent;
  border-radius: 50%;
  z-index: 1000;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.chat-launcher:hover {
  transform: scale(1.05);
}

.chat-launcher img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


/* Chat popup box */
.chat-popup {
  position: fixed;
  bottom: 100px;
  right: 24px;
  width: 300px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  padding: 20px;
  display: none;
  flex-direction: column;
  z-index: 1001;
  animation: fadeInUp 0.4s ease;
}

.chat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-weight: bold;
  color: #333;
}

.chat-header button {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #888;
}

.chat-popup input,
.chat-popup textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 0.95rem;
}

.chat-popup button[type="submit"] {
  width: 100%;
  background-color: #00b4d8;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
}

.chat-popup button[type="submit"]:hover {
  background-color: #0097a7;
}

@keyframes fadeInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/*new*/
/* Styled OKR Comparison Table */
.job-detail.hidden table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  font-size: 0.95rem;
}

.accordion-content th,
.accordion-content td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
  vertical-align: top;
}

.accordion-content th {
  background-color: #f0f0f0;
  color: #111;
  font-weight: 600;
  font-size: 1rem;
}

.accordion-content tr:nth-child(even) td {
  background-color: #f9f9f9;
}

.accordion-content td:first-child {
  font-weight: 600;
  color: #333;
  white-space: nowrap;
}

/* Careers Section Styles */

.careers-section {
  padding: 50px 5%;
  background-color: #f9fafb;
  font-family: 'Segoe UI', sans-serif;
}

.careers-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.careers-title {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
  color: #111827;
}

.careers-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.services-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.services-title {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
  color: #111827;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.job-list-box {
  flex: 1 1 30%;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.job-list-title {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #111827;
}

.job-list {
  list-style: none;
  padding: 0;
}

.job-tab {
  display: block;
  width: 100%;
  text-align: left;
  padding: 15px;
  border-radius: 6px;
  background-color: #f3f4f6;
  margin-bottom: 10px;
  cursor: pointer;
  border: none;
  font-size: 16px;
  color: #374151;
  transition: background 0.3s ease;
}

.job-tab:hover {
  background-color: #e5e7eb;
}

.job-tab.active {
  background-color: #3b82f6;
  color: #fff;
  font-weight: bold;
}

.job-role {
  display: block;
  font-weight: 600;
  font-size: 16px;
}

.job-meta {
  font-size: 14px;
  color: #3d4149;
}

.job-details-box {
  flex: 1 1 65%;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.job-detail {
  animation: fadeIn 0.3s ease-in-out;
}

.job-detail.hidden {
  display: none;
}

.job-detail h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #1f2937;
}

.job-detail h4 {
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 10px;
  color: #374151;
}

.job-detail ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 20px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.job-detail p,
.job-detail li {
  color: #374151; /* or #111827 for even darker */
  font-size: 15px;
  line-height: 1.6;
}

.accordion-header:hover {
  background-color: #e5e7eb; /* slightly darker on hover */
}

.accordion-header.active {
  background-color: #dbeafe; /* highlight active one */
  color: #1d4ed8; /* subtle blue for active */
}



/* a {
  color: #1f2937; 
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
  text-decoration: underline;
}

a:hover {
  color: #2563eb; 
  text-decoration: underline; 
} */

#heroText {
  opacity: 1;
  transition: opacity 0.6s ease-in-out;
}
#heroText.fade-out {
  opacity: 0;
}
#heroText.fade-in {
  opacity: 1;
}
#services {
  background-color: #f9f9f9;
  padding: 60px 0;
}


.job-detail table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  font-size: 0.95rem;
  color: #111;
}

.job-detail th,
.job-detail td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
  vertical-align: top;
}

.job-detail th {
  background-color: #f0f0f0;
  color: #111;
  font-weight: 600;
  font-size: 1rem;
}

.job-detail tr:nth-child(even) td {
  background-color: #f9f9f9;
}

.job-detail td:first-child {
  font-weight: 600;
  color: #333;
  white-space: nowrap;
}

/*new*/
.contact-box {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  max-width: 600px;
  margin: 0 auto;
}

.contact-form {
  margin-top: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333;
  text-align: left; 
}


.form-group label span {
  color: red;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #0066ff;
  outline: none;
}

.form-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.btn-send,
.btn-cancel {
  padding: 0.75rem 1.5rem;
  border: none;
  font-weight: 600;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-send {
  background-color: #0066ff;
  color: white;
}

.btn-send:hover {
  background-color: #004bb5;
}

.btn-cancel {
  background-color: #ccc;
  color: #333;
}

.btn-cancel:hover {
  background-color: #999;
}

.contact-box {
  background: linear-gradient(to right, #f9f9f9, #e6f0ff);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  padding: 2rem;
}


/*new*/
.contact-section {
  background-color: #f7f9fc;
  padding: 60px 0;
}

.contact-container {
  display: flex;
  max-width: 1100px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  flex-wrap: wrap;
}

.contact-image {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  overflow: hidden;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-box {
  flex: 1;
  padding: 40px;
  min-width: 300px;
}

.contact-box h2 {
  font-size: 32px;
  margin-bottom: 10px;
  font-weight: 700;
}

.contact-subtext {
  color: #555;
  font-size: 16px;
  margin-bottom: 25px;
}

.contact-details p {
  font-size: 16px;
  margin-bottom: 15px;
  line-height: 1.6;
  color: #222;
}

.contact-details strong {
  color: #111;
  font-weight: 600;
}

/*new*/
.contact-section {
  padding: 40px 0;
  background-color: #f5f7fa;
}

.contact-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-image {
  flex: 1;
  overflow: hidden;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(0.95); /* Zoom out slightly */
  border-radius: 10px;
}

.contact-content {
  flex: 1;
  padding: 40px;
  background-color: #eef4fc;
  text-align: left;
}

.contact-content h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.contact-subtext {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #444;
}

.contact-content p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #333;
  line-height: 1.6;
}

table td, table th {
  text-align: justify;
}


.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px; /* ✅ Fixed height */
  padding: 0 20px;
  overflow: hidden; /* Prevents logo from pushing the height */
}

.logo img {
  height: 60px; /* Original size */
  transform: scale(1.4); /* ✅ Visually enlarge logo */
  transform-origin: left center;
  display: block;
}

/*new*/
/* --- Responsive Navigation --- */
.menu-toggle {
  display: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}

nav ul.nav-links {
  display: flex;
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav ul.nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    right: 20px;
    top: 70px;
    background-color: #1f1f1f;
    padding: 1rem;
    border-radius: 10px;
    z-index: 999;
  }

  nav ul.nav-links.show {
    display: flex;
  }

  .nav-container {
    flex-direction: row;
    justify-content: space-between;
  }

  .logo img {
    height: 50px;
    transform: scale(1.1);
  }
}

/* --- Responsive Grids --- */
@media (max-width: 768px) {
  .services-grid,
  .careers-grid,
  .section-flex,
  .contact-container {
    flex-direction: column;
    gap: 2rem;
  }

  .job-list-box,
  .job-details-box {
    flex: 1 1 100%;
  }

  .section-img img,
  .founder-photo {
    max-width: 90%;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .contact-content,
  .contact-box {
    padding: 20px;
  }

  .contact-box h2 {
    font-size: 1.8rem;
  }

  .chat-popup {
    width: 90%;
    right: 5%;
  }
}

/* Optional: Smoother Hero on Mobile */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.5rem;
  }

  .hero h3 {
    font-size: 1rem;
  }

  .btn {
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
  }
}
/*temp*/
/* === Strategic AI Modules Accordion === */
.module-accordion {
  margin-top: 2rem;
  border-radius: 8px;
  overflow: hidden;
}

.module-accordion-item {
  border: 1px solid #ddd;
  margin-bottom: 10px;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.module-accordion-header {
  background-color: #f3f4f6;
  padding: 1rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #111827;
  text-align: left;
  border: none;
  width: 100%;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.module-accordion-header:hover {
  background-color: #e5e7eb;
}

.module-accordion-header::after {
  content: "▸";
  font-size: 1.2rem;
  color: #666;
  transition: transform 0.3s ease;
}

.module-accordion-header.active::after {
  transform: rotate(90deg);
  content: "▾";
}

.module-accordion-content {
  max-height: 0;
  overflow: hidden;
  background-color: #fcfcfb;
  padding: 0 1.5rem;
  color: #333;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.module-accordion-header.active + .module-accordion-content {
  padding: 1rem 1.5rem;
  max-height: 1000px;
}




