/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  caret-color: transparent !important;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #f4f5f7;
  color: #1f2933;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Enhanced Navigation */
nav {
  background: #e5ebe8; /* soft green-grey, less stark than pure white */
  padding: 12px 60px;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.08);
}

.logo {
  display: flex;
  align-items: center;
  height: auto;
  margin: 0;
  padding: 8px 0;
}

/* Halcyon Rise Logo Styling - Better Colors */
.halcyon-logo {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(255, 255, 255, 0.1);
  letter-spacing: 0.02em;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.halcyon-logo:hover {
  transform: scale(1.05);
  color: #f7f3e9;
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(255, 255, 255, 0.2);
}

/* Navigation Menu - Simplified */
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
}

nav ul li a {
  color: #123528;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 6px 10px;
  /* was 10px 15px, squared for cleaner look */
  border-radius: 0;
  transition: all 0.3s ease;
  position: relative;
}





nav ul li a:hover {
  color: #285c43;
  transform: translateY(-1px);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  color: white;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.menu-toggle:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

/* Header Section - Fixed */
header {
  position: relative;
  height: 75vh;
  min-height: 500px;
}

.carousel {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) contrast(1.1);
}

/* Welcome Section - Cleaned Up */
.welcome-section {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.welcome-overlay {
  text-align: center;
  color: #ffffff;
  padding: 50px 60px;
  background: rgba(12, 32, 24, 0.65);
  border-radius: 0;
  backdrop-filter: blur(80px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  animation: fadeInUp 2s ease-out;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
  max-width: 90%;
}

.welcome-overlay h1 {
  font-size: 3.5rem;
  margin: 0 0 20px 0;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.welcome-overlay h1 span {
  color: #f7f3e9;
  font-weight: 700;
}

.welcome-overlay .slogan {
  font-size: 1.4rem;
  margin-top: 15px;
  font-weight: 500;
  font-style: italic;
  color: #e9dcc9;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

/* Section Styling */
section {
  padding: 80px 30px;
  text-align: center;
  position: relative;
}

section:nth-child(even) {
  background: #ffffff;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: #123528;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #2d6a4f;
  border-radius: 0;
}

/* Products Section */
.products-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 50px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.product-item {
  background: #ffffff;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
  transition: all 0.4s ease;
  border: 1px solid #e0e4ea;
  position: relative;
}

.product-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1a4d3a, #2d6a4f);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-item:hover::before {
  opacity: 1;
}

.product-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}

.product-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-item:hover img {
  transform: scale(1.1);
}

.product-info {
  padding: 25px;
  text-align: left;
}

.product-info h3 {
  margin: 0 0 15px 0;
  color: #123528;
  font-size: 1.4rem;
  font-weight: 600;
}

.product-info p {
  line-height: 1.6;
  color: #4b5563;
  font-size: 0.95rem;
}

/* About Section */
.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 50px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.feature-box {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 0;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
  transition: all 0.4s ease;
  border: 1px solid #e0e4ea;
  position: relative;
  overflow: hidden;
}

.feature-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1a4d3a, #2d6a4f);
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(26, 77, 58, 0.12);
}

.feature-box i {
  font-size: 3rem;
  color: #2d6a4f;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.feature-box:hover i {
  transform: scale(1.1);
  color: #1a4d3a;
}

.feature-box h3 {
  color: #123528;
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.feature-box p {
  color: #4b5563;
  line-height: 1.6;
}

.mini-list {
  list-style: none;
  padding: 0;
  margin-top: 15px;
  text-align: left;
}

.mini-list li {
  margin: 8px 0;
  font-weight: 500;
  color: #1f4734;
  display: flex;
  align-items: center;
}

.mini-list li i {
  color: #2d6a4f;
  margin-right: 10px;
  font-size: 1rem;
}

/* Founders Section */
.about-cards {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-top: 50px;
}

.person {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 0;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
  transition: all 0.4s ease;
  text-align: center;
  max-width: 350px;
  border: 1px solid #e0e4ea;
}

.person:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}

.person img {
  width: 200px;
  height: 200px;
  border-radius: 0;
  object-fit: cover;
  border: 4px solid #d1d5db;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.person:nth-child(1) img {
  object-position: center -30px;
  transform: scale(1.08);
  transition: transform 0.35s ease;
}

.person:nth-child(1):hover img {
  transform: scale(1.18);
}
.person:nth-child(2) img {
  object-position: center -2px;
}


.person:hover img {
  transform: scale(1.05);
  border-color: #2d6a4f;
}

.person h3 {
  color: #123528;
  font-size: 1.4rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.person p {
  color: #4b5563;
  margin-bottom: 8px;
  line-height: 1.5;
}

/* Contact Form */
form {
  max-width: 600px;
  margin: 50px auto 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

input,
textarea {
  padding: 15px 20px;
  border: 1px solid #d1d5db;
  border-radius: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: #ffffff;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #2d6a4f;
  box-shadow: 0 0 0 2px rgba(45, 106, 79, 0.15);
  transform: translateY(-2px);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

button {
  background: #1f4734;
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 0;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
  background: #285c43;
}

/* Footer */
footer {
  background: #123528; /* deep muted green to match brand */
  color: white;
  text-align: center;
  padding: 30px;
  font-size: 1.1rem;
  margin-top: 50px;
}

/* Responsive Design */
@media (max-width: 768px) {
  nav {
    padding: 12px 20px;
    flex-wrap: wrap;
  }

  .halcyon-logo {
    font-size: 2.2rem;
  }

  .menu-toggle {
    display: block;
  }

  nav ul {
    display: none;
    flex-direction: column;
    width: 100%;
    background: linear-gradient(135deg, #1a4d3a 0%, #2d6a4f 100%);
    position: absolute;
    top: 100%;
    left: 0;
    padding: 20px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

  nav ul.show {
    display: flex;
  }

  nav ul li {
    margin: 5px 0;
  }

  nav ul li a {
    padding: 12px 20px;
    display: block;
  }

  header {
    height: 60vh;
    min-height: 400px;
  }

  .welcome-overlay {
    padding: 30px 25px;
    max-width: 90%;
  }

  .welcome-overlay h1 {
    font-size: 2.5rem;
  }

  .welcome-overlay .slogan {
    font-size: 1.1rem;
  }

  section {
    padding: 60px 20px;
  }

  h2 {
    font-size: 2.2rem;
  }

  .products-container,
  .about-features {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-cards {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .person img {
    width: 150px;
    height: 150px;
  }

  form {
    margin: 30px auto 0;
    padding: 0 10px;
  }
}

@media (max-width: 480px) {
  .halcyon-logo {
    font-size: 1.8rem;
  }

  .welcome-overlay h1 {
    font-size: 2rem;
  }

  .welcome-overlay .slogan {
    font-size: 1rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  section {
    padding: 40px 15px;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading animation for images */
img {
  transition: opacity 0.3s ease;
}

img:not([src]) {
  opacity: 0;
}

.halcyon-logo img {
  height: 80px;
  width: auto;
  margin-right: 10px;

}

/* Chatbot */
.chatbot-toggle {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #123528;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.25);
  cursor: pointer;
  z-index: 1200;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.chatbot-toggle i {
  font-size: 1.4rem;
}

.chatbot-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.3);
  background: #285c43;
}

.chatbot-panel {
  position: fixed;
  bottom: 96px;
  right: 24px;
  width: 360px;
  height: 500px;
  max-height: 80vh;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.28);
  border-radius: 0;
  display: none;
  flex-direction: column;
  z-index: 1200;
  border: 1px solid #e0e4ea;
}

.chatbot-panel.open {
  display: flex;
}

.chatbot-header {
  padding: 12px 14px;
  background: #123528;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  font-size: 0.95rem;
}

.chatbot-close {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1.3rem;
  cursor: pointer;
}

.chatbot-body {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.chatbot-messages {
  padding: 16px 12px;
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  background: #f4f5f7;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 0;
}

.chatbot-message {
  display: flex;
  margin-bottom: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  word-wrap: break-word;
  max-width: 85%;
}

.chatbot-message.bot {
  align-self: flex-start;
  background: #ffffff;
  color: #123528;
  padding: 10px 14px;
  border: 1px solid #e0e4ea;
  border-radius: 0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.chatbot-message.user {
  align-self: flex-end;
  background: #123528;
  color: #ffffff;
  padding: 10px 14px;
  border-radius: 0;
  text-align: left;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

#typing-indicator {
  opacity: 0.7;
  font-style: italic;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

.chatbot-input-row input:disabled,
.chatbot-input-row button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.chatbot-questions {
  padding: 12px;
  border-top: 1px solid #e0e4ea;
  background: #ffffff;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  max-height: 180px;
  overflow-y: auto;
  flex-shrink: 0;
}

.chatbot-question {
  background: #e5ebe8;
  border: 1px solid #d1d5db;
  padding: 10px 12px;
  font-size: 0.875rem;
  text-align: left;
  cursor: pointer;
  color: #123528;
  transition: all 0.2s ease;
  border-radius: 0;
}

.chatbot-question:hover {
  background: #d2e0db;
  color: #0b1e14;
  border-color: #123528;
  transform: translateX(2px);
}

.chatbot-input-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid #e0e4ea;
  background: #ffffff;
  flex-shrink: 0;
}

.chatbot-input-row input {
  flex: 1;
  padding: 10px 12px;
  border: 1px solid #d1d5db;
  border-radius: 0;
  font-size: 0.875rem;
  font-family: 'Montserrat', sans-serif;
  background: #ffffff;
}

.chatbot-input-row input:focus {
  outline: none;
  border-color: #123528;
  box-shadow: 0 0 0 2px rgba(18, 53, 40, 0.1);
}

.chatbot-input-row button {
  padding: 10px 16px;
  font-size: 0.875rem;
  font-weight: 600;
  background: #1f4734;
  color: #ffffff;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.chatbot-input-row button:hover {
  background: #285c43;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Custom scrollbar for chatbot messages */
.chatbot-messages::-webkit-scrollbar {
  width: 6px;
}

.chatbot-messages::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.chatbot-messages::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 0;
}

.chatbot-messages::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

.chatbot-questions::-webkit-scrollbar {
  width: 6px;
}

.chatbot-questions::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.chatbot-questions::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 0;
}

.chatbot-questions::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

@media (max-width: 600px) {
  .chatbot-panel {
    right: 12px;
    left: 12px;
    width: calc(100% - 24px);
    height: 70vh;
    max-height: 70vh;
  }

  .chatbot-toggle {
    bottom: 16px;
    right: 16px;
  }
}

/* -------- Modal Styles -------- */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: #f8f8f8;
  padding: 30px;
  border-radius: 0;
  width: 85%;
  max-width: 900px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  text-align: center;
  animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

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

.close-btn {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 28px;
  color: #537D5D;
  cursor: pointer;
  transition: color 0.3s;
}

.close-btn:hover {
  color: #9EBC8A;
}

.modal-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-top: 25px;
}

.modal-item {
  background: #e5e7eb;
  border-radius: 0;
  padding: 15px;
  width: 240px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.modal-item:hover {
  transform: translateY(-5px);
}

.modal-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.modal-item h4 {
  color: #537D5D;
  margin: 5px 0;
}

.modal-item p {
  font-size: 0.9rem;
  color: #333;
}

@media (max-width: 992px) {
  .navbar-brand img,
  .logo {
    height: 38px;
  }
}

/* For mobile devices */
@media (max-width: 768px) {
  .navbar-brand img,
  .logo {
    height: 32px;
  }
}

/* For very small screens (like < 480px) */
@media (max-width: 480px) {
  .navbar-brand img,
  .logo {
    height: 28px;
  }
}

* {
  cursor: default !important;
}

:focus {
  outline: none !important;
}

[contenteditable="true"] {
  cursor: default !important;
  user-select: none !important;
  caret-color: transparent !important;
}

/* ...existing code... */

/* Improved Mobile Modal Responsiveness */
@media (max-width: 768px) {
  .modal-content {
    width: 98vw;
    padding: 10px 4px;
    border-radius: 12px;
    font-size: 1rem;
    max-width: 99vw;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  }

  .modal-items {
    flex-direction: column;
    gap: 18px;
    margin-top: 10px;
  }

  .modal-item {
    width: 96vw;
    max-width: 370px;
    margin: 0 auto;
    padding: 12px 8px;
    border-radius: 12px;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.09);
    background: #e7e6c3;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .modal-item img {
    width: 100%;
    height: 90px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  }

  .modal-item h4 {
    font-size: 1.08rem;
    margin: 4px 0 2px 0;
    color: #3d5c47;
    font-weight: 600;
  }

  .modal-item p {
    font-size: 0.92rem;
    color: #444;
    margin-bottom: 2px;
  }

  .close-btn {
    top: 6px;
    right: 10px;
    font-size: 22px;
    padding: 2px 6px;
  }
}

@media (max-width: 480px) {
  .modal-content {
    width: 90vw;
    min-width: 0;
    padding: 4px 2px;
    border-radius: 8px;
    font-size: 0.97rem;
  }

  .modal-item {
    width: 58vw;
    max-width: 340px;
    padding: 8px 4px;
    border-radius: 10px;
  }

  .modal-item img {
    height: 50px;
    width: 50px;
    margin-bottom: 6px;
  }

  .modal-item h4 {
    font-size: 1rem;
    margin: 2px 0 1px 0;
  }

  .modal-item p {
    font-size: 0.85rem;
    margin-bottom: 1px;
  }

  .close-btn {
    top: 2px;
    right: 6px;
    font-size: 18px;
    padding: 1px 4px;
  }
}

/* ...existing code... */

#fireworks {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  background: transparent;
}

/* 🪔 Diwali Modal Styling */
.diwali-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(3px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 3000;
  animation: fadeIn 0.6s ease-in-out;
}

.diwali-content {
  background: linear-gradient(145deg, #fff5d7, #fff);
  color: #4b2e05;
  padding: 2rem 3rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 0 25px gold;
  animation: popIn 0.6s ease-out;
  max-width: 90%;
}

.diwali-content h2 {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
  text-shadow: 0 0 8px #ffcc00;
}

.diwali-content p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.diwali-content button {
  background: linear-gradient(90deg, #ffb300, #ff7b00);
  border: none;
  color: white;
  padding: 10px 25px;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s;
}

.diwali-content button:hover {
  background: linear-gradient(90deg, #ff7b00, #ffb300);
  transform: scale(1.05);
}

/* ✨ Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

@keyframes popIn {
  from {
    transform: scale(0.7);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
