:root {
  --saffron: #f93;
  --indigo: indigo;
  --off-white: #fff8f0;
  --gold: gold;
  --text-dark: #333;
  --shadow: 0 4px 20px #00000014;
  --transition: all .3s ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--off-white);
  color: var(--text-dark);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"100\" height=\"100\" viewBox=\"0 0 100 100\"><circle cx=\"50\" cy=\"50\" r=\"2\" fill=\"%23FF9933\" opacity=\"0.1\"/></svg>");
  font-family: Poppins, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

h1, h2, h3, h4 {
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  margin-bottom: 2.5rem;
  font-size: 2.5rem;
  display: inline-block;
  position: relative;
}

h2:after {
  content: "";
  background: var(--saffron);
  border-radius: 2px;
  width: 80px;
  height: 4px;
  position: absolute;
  bottom: -10px;
  left: 0;
}

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

a {
  color: var(--indigo);
  transition: var(--transition);
  text-decoration: none;
}

.btn {
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  box-shadow: var(--shadow);
  border: none;
  border-radius: 50px;
  margin: 10px 5px;
  padding: 14px 28px;
  font-size: 1.1rem;
  font-weight: 600;
  display: inline-block;
}

.btn-primary {
  background-color: var(--saffron);
  color: #fff;
}

.btn-secondary {
  background-color: var(--indigo);
  color: #fff;
}

.btn-outline {
  border: 2px solid var(--saffron);
  color: var(--saffron);
  background-color: #0000;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px #00000026;
}

.btn-primary:hover {
  background-color: #e68a29;
}

.btn-secondary:hover {
  background-color: #3a0069;
}

.btn-outline:hover {
  background-color: var(--saffron);
  color: #fff;
}

section {
  padding: 100px 0;
}

.text-center {
  text-align: center;
}

.text-center h2:after {
  left: 50%;
  transform: translateX(-50%);
}

.navbar {
  z-index: 1000;
  width: 100%;
  transition: var(--transition);
  background-color: #fffffff2;
  padding: 20px 0;
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0 2px 15px #0000001a;
}

.navbar.scrolled {
  padding: 15px 0;
}

.nav-container {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.logo {
  color: var(--indigo);
  align-items: center;
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
}

.logo-svg {
  width: 50px;
  height: 50px;
  margin-right: 15px;
}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  color: var(--text-dark);
  font-weight: 500;
  position: relative;
}

.nav-links a:after {
  content: "";
  background: var(--saffron);
  width: 0;
  height: 2px;
  transition: var(--transition);
  position: absolute;
  bottom: -5px;
  left: 0;
}

.nav-links a:hover:after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--saffron);
}

.hamburger {
  cursor: pointer;
  color: var(--indigo);
  font-size: 1.5rem;
  display: none;
}

.language-switcher {
  margin-left: 20px;
  position: relative;
}

.language-btn {
  cursor: pointer;
  color: var(--text-dark);
  background: none;
  border: none;
  align-items: center;
  font-family: Poppins, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  display: flex;
}

.language-btn i {
  color: var(--saffron);
  margin-right: 8px;
}

.language-dropdown {
  box-shadow: var(--shadow);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  width: 160px;
  transition: var(--transition);
  background: #fff;
  border-radius: 8px;
  position: absolute;
  top: 100%;
  right: 0;
  transform: translateY(10px);
}

.language-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-dropdown a {
  color: var(--text-dark);
  transition: var(--transition);
  padding: 12px 15px;
  display: block;
}

.language-dropdown a:hover {
  background: var(--off-white);
  color: var(--saffron);
  padding-left: 20px;
}

.hero {
  background: linear-gradient(135deg, #fff8f0e6 0%, #fff8f0b3 100%) 0 0 / cover;
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  text-align: center;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.hero h1 {
  margin-bottom: 1.5rem;
  font-size: 3.5rem;
  line-height: 1.2;
}

.hero p {
  color: var(--indigo);
  margin-bottom: 2.5rem;
  font-size: 1.4rem;
  font-weight: 500;
}

.hero-btns {
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
  display: flex;
}

.hero-btns .btn {
  min-width: 220px;
  margin: 10px;
}

.hero-circle {
  opacity: .1;
  z-index: 1;
  border-radius: 50%;
  position: absolute;
}

.circle-1 {
  background: var(--saffron);
  width: 600px;
  height: 600px;
  top: -300px;
  right: -300px;
}

.circle-2 {
  background: var(--indigo);
  width: 400px;
  height: 400px;
  bottom: -200px;
  left: -200px;
}

.about {
  background-color: #fff;
}

.about-container {
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
  display: flex;
}

.about-content {
  flex: 1;
  min-width: 300px;
}

.about-image {
  flex: 1;
  min-width: 300px;
  position: relative;
}

.about-image:before {
  content: "";
  border: 3px solid var(--saffron);
  z-index: -1;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: -20px;
  right: -20px;
}

.image-placeholder {
  background: linear-gradient(135deg, var(--indigo), #6a0dad);
  color: #fff;
  text-align: center;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  height: 400px;
  padding: 20px;
  font-size: 1.2rem;
  font-weight: 500;
  display: flex;
}

.about-features {
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
  display: grid;
}

.feature {
  align-items: flex-start;
  gap: 15px;
  display: flex;
}

.feature-icon {
  background: var(--off-white);
  width: 50px;
  height: 50px;
  color: var(--saffron);
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  display: flex;
}

.offerings {
  background-color: var(--off-white);
}

.offerings-container {
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
  display: flex;
}

.offering-card {
  box-shadow: var(--shadow);
  text-align: center;
  min-width: 300px;
  max-width: 350px;
  transition: var(--transition);
  background: #fff;
  border-radius: 15px;
  flex: 1;
  padding: 40px 30px;
}

.offering-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px #0000001f;
}

.offering-icon {
  background: var(--off-white);
  width: 80px;
  height: 80px;
  color: var(--indigo);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  margin: 0 auto 25px;
  font-size: 2rem;
  display: flex;
}

.offering-card:first-child .offering-icon {
  color: var(--saffron);
  background: #ff993326;
}

.offering-card:nth-child(2) .offering-icon {
  color: var(--indigo);
  background: #4b008226;
}

.offering-card:nth-child(3) .offering-icon {
  color: var(--gold);
  background: #ffd70026;
}

.offering-card h3 {
  color: var(--indigo);
  margin-bottom: 15px;
  font-size: 1.8rem;
}

.why-ratan {
  background: linear-gradient(135deg, var(--indigo), #3a0069);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.why-ratan h2 {
  color: #fff;
}

.why-ratan h2:after {
  background: var(--gold);
}

.pain-points {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
  display: grid;
}

.pain-point {
  backdrop-filter: blur(10px);
  transition: var(--transition);
  background: #ffffff1a;
  border-radius: 15px;
  padding: 30px;
}

.pain-point:hover {
  background: #ffffff26;
  transform: translateY(-5px);
}

.pain-point h3 {
  color: var(--gold);
  align-items: center;
  gap: 10px;
  display: flex;
}

.pain-point h3 i {
  color: var(--saffron);
}

.vision {
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

.vision-content {
  text-align: center;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.vision-card {
  background: var(--off-white);
  border: 2px solid var(--gold);
  border-radius: 15px;
  margin-top: 40px;
  padding: 50px;
  position: relative;
}

.vision-card h3 {
  color: var(--indigo);
  margin-bottom: 30px;
  font-size: 2rem;
}

.vision-points {
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  display: flex;
}

.vision-point {
  min-width: 200px;
  max-width: 250px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  background: #fff;
  border-radius: 10px;
  flex: 1;
  padding: 20px;
}

.vision-point:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px #0000001a;
}

.vision-point i {
  color: var(--saffron);
  margin-bottom: 15px;
  font-size: 2.5rem;
}

.waitlist {
  background: var(--off-white);
}

.waitlist-container {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.waitlist-form {
  box-shadow: var(--shadow);
  background: #fff;
  border-radius: 15px;
  margin-top: 40px;
  padding: 40px;
}

.form-group {
  text-align: left;
  margin-bottom: 20px;
}

.form-group label {
  color: var(--text-dark);
  margin-bottom: 8px;
  font-weight: 500;
  display: block;
}

.form-group input {
  width: 100%;
  transition: var(--transition);
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px;
  font-family: Poppins, sans-serif;
  font-size: 1rem;
}

.form-group input:focus {
  border-color: var(--saffron);
  outline: none;
  box-shadow: 0 0 0 3px #f933;
}

.checkbox-group {
  align-items: flex-start;
  gap: 10px;
  margin: 25px 0;
  display: flex;
}

.checkbox-group input {
  margin-top: 5px;
}

.checkbox-group label {
  color: #666;
  font-size: .9rem;
}

.checkbox-group a {
  color: var(--indigo);
  text-decoration: underline;
}

.footer {
  background: var(--indigo);
  color: #fff;
  padding: 70px 0 30px;
}

.footer-container {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
  display: grid;
}

.footer-logo {
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: 700;
  display: flex;
}

.footer-logo-svg {
  width: 50px;
  height: 50px;
}

.footer-about p {
  opacity: .8;
  font-size: 1rem;
}

.footer-links h3 {
  color: var(--gold);
  margin-bottom: 25px;
  font-size: 1.4rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #fffc;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--saffron);
  padding-left: 5px;
}

.contact-info {
  flex-direction: column;
  gap: 15px;
  display: flex;
}

.contact-item {
  align-items: flex-start;
  gap: 15px;
  display: flex;
}

.contact-item i {
  color: var(--saffron);
  margin-top: 5px;
}

.social-links {
  gap: 15px;
  margin-top: 20px;
  display: flex;
}

.social-link {
  color: #fff;
  width: 40px;
  height: 40px;
  transition: var(--transition);
  background: #ffffff1a;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  display: flex;
}

.social-link:hover {
  background: var(--saffron);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  opacity: .7;
  border-top: 1px solid #ffffff1a;
  padding-top: 30px;
  font-size: .9rem;
}

.footer-bottom a {
  color: var(--saffron);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

.floating {
  animation: 4s ease-in-out infinite float;
}

@media (width <= 992px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .hero {
    padding: 150px 0 80px;
  }
}

@media (width <= 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    width: 100%;
    height: calc(100vh - 80px);
    transition: var(--transition);
    background: #fff;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 50px;
    position: fixed;
    top: 80px;
    left: -100%;
    box-shadow: 0 10px 20px #0000001a;
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links li {
    margin: 20px 0;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  section {
    padding: 80px 0;
  }

  .about-container {
    flex-direction: column;
  }

  .about-image:before {
    top: -10px;
    right: -10px;
  }

  .language-switcher {
    margin-top: 20px;
    margin-left: 0;
  }
}

@media (width <= 576px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero-btns .btn {
    width: 100%;
    margin: 10px 0;
  }

  .hero-circle {
    display: none;
  }

  .feature {
    grid-column: span 2;
  }

  .vision-point, .offering-card {
    min-width: 100%;
  }

  .waitlist-form {
    padding: 30px 20px;
  }
}

@media (width <= 768px) {
  .nav-links.active {
    display: flex !important;
  }
}
/*# sourceMappingURL=public.1ee74f9b.css.map */
