h1 {
  font-size: 48px !important;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-size: 40px !important;
  font-weight: 700;
  line-height: 1.3;
}

h3 {
  font-size: 32px !important;
  font-weight: 600;
  line-height: 1.4;
}

h4 {
  font-size: 26px !important;
  font-weight: 600;
  line-height: 1.5;
}

h5 {
  font-size: 20px !important;
  font-weight: 500;
}

h6 {
  font-size: 18px !important;
  font-weight: 500;
}

p {
  font-size: 18px !important;
  line-height: 1.7;
  color: #555;
}

body {
  margin: 0;
  font-family: sans-serif;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center !important;
  padding: 15px 30px;
  position: relative;
  background-color: white;
  color: black;
}

.nav-logo {
  font-size: 24px;
  font-weight: bold;
  flex: 1;
}

.nav-logo-mobile{
  display: none !important;
}

/* Center nav links */
.nav-center {
  flex: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-links li {
  display: inline;
}

.nav-links a,
.nav-links button {
  background: none;
  border: none;
  color: black;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
}

.nav-links a:hover,
.nav-links button:hover {
  text-decoration: underline;
}

/* Hamburger Icon */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  user-select: none;
  z-index: 3;
}


/* ========== MODAL BASE STYLES ========== */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  overflow: auto;
  pointer-events: auto;
  transition: opacity 0.9s ease;
}

.modal-content {
  background: #fff;
  margin: 4% auto;
  padding: 30px;
  width: 90%;
  max-width: 400px;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 26px;
  color: #888;
  cursor: pointer;
}

.close-btn:hover {
  color: #000;
}

.modal-content form {
  display: flex;
  flex-direction: column;
}

.modal-content label {
  margin-top: 15px;
  font-weight: 600;
}

.modal-content input {
  margin-top: 5px;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.modal-btn {
  margin-top: 25px;
  padding: 12px;
  background-color: #6a0dad;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

.modal-btn:hover {
  background-color: #5a0c8e;
}



/* HERO SECTION */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 60px 30px;
  gap: 40px;
}

.hero-content {
  max-width: 50%;
  /* Ensures text doesn't stretch too much */
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  color: #333;
}

.hero p {
  font-size: 18px;
  color: #555;
}

.cta-buttons {
  display: flex;
  gap: 20px;
}

.cta-btn {
  padding: 15px 30px;
  background-color: black;
  color: white;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-radius: 20px;
}

.cta-btn:hover {
  background-color: #303030;
}

.hero-image {
  max-width: 45%;

}

/* .hero-image img {
  width: 100%;
  height: 450px;
  border-radius: 10px;
} */

.hypno-wrapper {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 50px auto;
}

.hypno-spin {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #8a2be2, #ff69b4);
  animation: spin 4s linear infinite, fadeColor 6s ease-in-out infinite alternate;
  border-radius: 15px;
  z-index: 1; /* lower */
}

.spinner-img {
  position: absolute;  /* changed from relative to absolute */
  top: 50%;            /* center vertically */
  left: 50%;           /* center horizontally */
  transform: translate(-50%, -50%); /* center exactly */
  width: 270px !important;
  height: 270px !important;
  object-fit: contain;
  z-index: 10;  /* higher to be on top */
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes fadeColor {
  0% { filter: hue-rotate(0deg); }
  100% { filter: hue-rotate(360deg); }
}