* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body, html {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  background: #fff;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.logo {
  font-size: 30px;
  font-weight: bold;
  color: #333;
}

.logo span:nth-child(1)  { color: red; }
.logo span:nth-child(2)  { color: orange; }
.logo span:nth-child(3)  { color: gold; }
.logo span:nth-child(4)  { color: green; }
.logo span:nth-child(5)  { color: teal; }
.logo span:nth-child(6)  { color: blue; }
.logo span:nth-child(7)  { color: indigo; }
.logo span:nth-child(8)  { color: violet; }

nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

nav ul li .btn {
  background-color: #ff4d88;
  color: white;
  padding: 8px 16px;
  border-radius: 25px;
}

.hero {
  display: flex;
  height: 100vh;
  width: 100vw;
  align-items: center;
  justify-content: space-between;
  padding-left: 20px;
  background:#fffdf7;
}

.hero-text {
  width: 50%;
  padding-right: 30px;
}

.hero-text h1 {
  font-size: 40px;
  color: #2e2b75;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 18px;
  color: #333;
  line-height: 1.6;
}

.hero-image {
  width: 70%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    height: auto;
  }

  .hero-text, .hero-image {
    width: 100%;
    height: auto;
  }

  .hero-image img {
    height: auto;
  }
}

.blurred {
  filter: blur(5px);
  pointer-events: none;
  user-select: none;
}

.auth-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255,255,255,0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.form-box {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  width: 300px;
  text-align: center;
}

.form-box input {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #aaa;
  border-radius: 8px;
}

.form-box button {
  padding: 10px 20px;
  background-color: #ff4d88;
  color: white;
  border: none;
  border-radius: 25px;
  cursor: pointer;
}

.form-box a {
  color: #007BFF;
  cursor: pointer;
}
.about-section {
  padding: 20px 20px;
  background-color: #fffdf7;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
}

.about-image {
  flex: 1 1 50%;
  padding: 10px;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.about-content {
  flex: 1 1 50%;
  padding: 10px;
}

.about-content h2 {
  font-size: 32px;
  color: #ff4d88;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 18px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 15px;
}
.contact-section {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.contact-section h2 {
  font-size: 32px;
  color: #2e2b75; /* Primary color from your screenshot */
  margin-bottom: 10px;
}

.contact-section .sub-text {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
}

.contact-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.contact-form input {
  padding: 10px 15px;
  width: 250px;
  border: 1px solid #aaa;
  border-radius: 8px;
  font-size: 15px;
}

.contact-form button {
  padding: 10px 25px;
  background: #2e2b75;
  color: white;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #4641a5; /* Slightly lighter hover version */
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.info-box {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  width: 260px;
  text-align: center;
}

.info-box .icon {
  font-size: 40px;
  color: #2e2b75;
  margin-bottom: 15px;
}

.info-box h4 {
  margin-bottom: 10px;
  font-size: 18px;
  color: #2e2b75;
}

.info-box p, .info-box a {
  color: #666;
  font-size: 15px;
  line-height: 1.5;
  text-decoration: none;
}


.contact-form button {
  padding: 12px 40px;
  background:#ff4d88;
  border: none;
  border-radius: 25px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #00b5d4;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.info-box {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  width: 260px;
  text-align: center;
}

.info-box .icon {
  font-size: 40px;
  color: #00cfe8;
  margin-bottom: 15px;
}

.info-box h4 {
  margin-bottom: 10px;
  font-size: 18px;
  color: #333;
}

.info-box p {
  color: #666;
  font-size: 15px;
  line-height: 1.5;
}
.info-box .icon-wrapper {
  background-color: #ff4d88;  /* pink background */
  color: white;               /* icon color */
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px auto;
  font-size: 28px;
}

