body{
  margin:0;
  font-family:'Poppins',sans-serif;
  background:#f4f7fb;
  color:#1a1a1a;
}

.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 80px;
  background:white;
  box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

.navbar a{
  text-decoration:none;
  margin-left:25px;
  color:#333;
  font-weight:500;
}

.hero{
  background:linear-gradient(120deg,#0f2027,#203a43,#2c5364);
  color:white;
  text-align:center;
  padding:140px 20px;
}

.hero h1{
  font-size:52px;
  margin-bottom:20px;
}

.hero p{
  font-size:20px;
  opacity:.9;
}

.btn{
  display:inline-block;
  padding:14px 35px;
  background:#00c6ff;
  color:white;
  border-radius:30px;
  margin-top:30px;
  text-decoration:none;
  font-weight:600;
}

.section{
  padding:100px 80px;
  text-align:center;
}

.services{
  display:flex;
  gap:40px;
  justify-content:center;
  flex-wrap:wrap;
  margin-top:50px;
}

.card{
  background:white;
  padding:40px;
  width:280px;
  border-radius:20px;
  box-shadow:0 15px 35px rgba(0,0,0,0.08);
  transition:.3s;
}

.card:hover{
  transform:translateY(-10px);
}

.stats{
  background:#203a43;
  color:white;
  display:flex;
  justify-content:center;
  gap:100px;
  padding:80px 20px;
  text-align:center;
}

.testimonial{
  background:white;
  padding:40px;
  max-width:600px;
  margin:40px auto;
  border-radius:20px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.footer{
  background:#0f2027;
  color:white;
  text-align:center;
  padding:30px;
}
/* Animation Base */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}

/* Auth page layout */
.auth-page {
  background: linear-gradient(135deg, #f0f4ff 0%, #d9e2ff 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-page .container {
  background: white;
  padding: 40px 50px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  width: 90%;
}

.auth-page h2 {
  text-align: center;
  margin-bottom: 25px;
  font-size: 26px;
  color: #333;
}

.auth-page form input {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.auth-page form input:focus {
  border-color: #00c6ff;
  box-shadow: 0 0 8px rgba(0, 198, 255, 0.4);
  outline: none;
}

.auth-page form button {
  width: 100%;
  padding: 12px;
  background: #00c6ff;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.auth-page form button:hover {
  background: #009ad6;
  transform: scale(1.03);
}

.auth-page p a {
  color: #00c6ff;
  text-decoration: none;
  transition: color 0.3s;
}

.auth-page p a:hover {
  color: #009ad6;
}

/* Button Hover Effect */
.btn {
  transition: 0.3s;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* Corporate auth pages (join/login/register) */
.corp-auth-page {
  --corp-bg-top: #041329;
  --corp-bg-bottom: #081e3e;
  --corp-card-bg: rgba(9, 21, 45, 0.82);
  --corp-border: rgba(151, 175, 210, 0.24);
  --corp-text-main: #edf4ff;
  --corp-text-muted: #a7b7d2;
  --corp-input-bg: rgba(6, 15, 32, 0.75);
  --corp-alert: #ff6d6d;
  min-height: 100vh;
  font-family: 'IBM Plex Sans', sans-serif;
  color: var(--corp-text-main);
  background:
    radial-gradient(circle at 12% 14%, rgba(0, 168, 255, 0.25), transparent 33%),
    radial-gradient(circle at 88% 20%, rgba(46, 214, 125, 0.2), transparent 32%),
    linear-gradient(158deg, var(--corp-bg-top), var(--corp-bg-bottom) 62%, #021022);
  display: grid;
  place-items: center;
  padding: 22px 14px;
}

.corp-auth-card {
  width: 100%;
  max-width: 430px;
  background: var(--corp-card-bg);
  border: 1px solid var(--corp-border);
  border-radius: 20px;
  padding: 28px 24px 24px;
  position: relative;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.38);
  overflow: hidden;
}

.corp-auth-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #20d997 0%, #4dabf7 55%, #7cc4ff 100%);
}

.corp-fade-in {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.corp-fade-in.active {
  opacity: 1;
  transform: translateY(0);
}

.corp-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #89a9d9;
  margin-bottom: 10px;
  font-weight: 600;
}

.corp-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(26px, 5vw, 32px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 8px;
}

.corp-subtext {
  color: var(--corp-text-muted);
  margin-bottom: 18px;
  font-size: 15px;
}

.corp-form {
  display: grid;
  gap: 12px;
}

.corp-input {
  width: 100%;
  padding: 13px 14px;
  background: var(--corp-input-bg);
  border: 1px solid rgba(133, 154, 190, 0.38);
  border-radius: 12px;
  color: var(--corp-text-main);
  font-size: 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.corp-input::placeholder {
  color: #8296b8;
}

.corp-input:focus {
  outline: none;
  border-color: #4dabf7;
  box-shadow: 0 0 0 3px rgba(77, 171, 247, 0.18);
}

.corp-btn {
  margin-top: 2px;
  padding: 13px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(132deg, #20d997 0%, #12b886 65%, #0ca678 100%);
  color: #032216;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.corp-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(18, 184, 134, 0.26);
}

.corp-switch-link {
  margin-top: 16px;
  font-size: 15px;
  color: var(--corp-text-muted);
  text-align: center;
}

.corp-switch-link a {
  color: #7bc2ff;
  font-weight: 600;
  text-decoration: none;
}

.corp-switch-link a:hover {
  text-decoration: underline;
}

.corp-join-card {
  max-width: 450px;
  padding: 26px 24px 24px;
  animation: corpCardIn 0.55s ease;
}

.corp-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--corp-alert);
  font-size: 12px;
  letter-spacing: 0.06em;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.corp-live-dot {
  width: 9px;
  height: 9px;
  background: var(--corp-alert);
  border-radius: 50%;
  animation: corpPulse 1.4s infinite;
}

.corp-join-title {
  margin-bottom: 16px;
}

.corp-join-title .corp-title {
  margin-bottom: 2px;
  font-size: clamp(28px, 5vw, 34px);
}

.corp-timer-box {
  border: 1px solid rgba(136, 159, 196, 0.24);
  border-radius: 14px;
  padding: 14px 12px;
  margin-bottom: 18px;
  background: rgba(7, 17, 36, 0.72);
  text-align: center;
}

.corp-timer {
  font-family: 'Manrope', sans-serif;
  font-size: 34px;
  font-weight: 800;
  color: var(--corp-alert);
  line-height: 1;
  margin-bottom: 6px;
}

.corp-register-now {
  font-size: 15px;
  letter-spacing: 0.04em;
  font-weight: 600;
  color: #98c1ff;
  text-transform: uppercase;
}

.corp-form-group {
  margin-bottom: 14px;
}

.corp-form-group:last-of-type {
  margin-bottom: 6px;
}

.corp-error-message {
  color: var(--corp-alert);
  font-size: 12px;
  margin-top: 6px;
  display: none;
  padding-left: 2px;
}

.corp-error-message.show {
  display: block;
}

@keyframes corpPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

@keyframes corpCardIn {
  from {
    transform: translateY(12px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 520px) {
  .corp-auth-card,
  .corp-join-card {
    padding: 22px 16px 18px;
    border-radius: 16px;
  }

  .corp-timer {
    font-size: 30px;
  }
}

/* Corporate homepage */
.home-page {
  --home-bg-1: #041329;
  --home-bg-2: #081e3e;
  --home-border: rgba(151, 175, 210, 0.24);
  --home-text-main: #edf4ff;
  --home-heading: #173b73;
  --home-primary: #20d997;
  --home-primary-deep: #12b886;
  --home-accent: #4dabf7;
  --home-warn: #ffca2c;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #1f2a3d;
  background: #f7f9fd;
  line-height: 1.65;
  margin: 0;
}

.home-page .navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 14px 26px;
  background: rgba(6, 17, 38, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(151, 175, 210, 0.2);
}

.home-page .brand {
  font-family: 'Manrope', sans-serif;
  color: var(--home-text-main);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.home-page .nav-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.home-page .nav-links a {
  text-decoration: none;
  color: #dce8ff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 6px 8px;
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
}

.home-page .nav-links a:hover {
  color: #f4fbff;
  background: rgba(76, 162, 255, 0.2);
}

.home-page .hero {
  min-height: 76vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 56px 16px;
  color: var(--home-text-main);
  background:
    radial-gradient(circle at 13% 20%, rgba(0, 168, 255, 0.28), transparent 36%),
    radial-gradient(circle at 86% 15%, rgba(32, 217, 151, 0.24), transparent 34%),
    linear-gradient(156deg, var(--home-bg-1) 0%, var(--home-bg-2) 62%, #020d1f 100%);
}

.home-page .hero-panel {
  width: 100%;
  max-width: 980px;
  background: rgba(7, 20, 44, 0.58);
  border: 1px solid var(--home-border);
  border-radius: 22px;
  padding: 38px 26px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
}

.home-page .hero h1 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1.06;
  margin-bottom: 8px;
  font-weight: 800;
}

.home-page .hero h2 {
  font-size: clamp(20px, 3.5vw, 34px);
  color: var(--home-warn);
  margin-bottom: 14px;
  font-weight: 700;
  font-family: 'Manrope', sans-serif;
}

.home-page .hero p {
  color: #d2def4;
  max-width: 830px;
  margin: 0 auto 10px;
}

.home-page .hero .cta {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 12px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #032216;
  background: linear-gradient(132deg, var(--home-primary) 0%, var(--home-primary-deep) 100%);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-page .hero .cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(18, 184, 134, 0.28);
}

.home-page .section { padding: 74px 18px; }
.home-page .section-light { background: #f7f9fd; }
.home-page .section-soft { background: #edf3fb; }
.home-page .section-dark {
  color: var(--home-text-main);
  background:
    radial-gradient(circle at 15% 18%, rgba(0, 168, 255, 0.2), transparent 34%),
    linear-gradient(158deg, #07172f 0%, #0a2448 70%, #041126 100%);
}

.home-page .container { max-width: 1180px; margin: 0 auto; }
.home-page .section-header { text-align: center; margin-bottom: 34px; }

.home-page .section-header h2 {
  color: var(--home-heading);
  font-size: clamp(30px, 4vw, 46px);
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.home-page .section-dark .section-header h2 { color: var(--home-text-main); }
.home-page .section-header p { max-width: 840px; margin: 0 auto; color: #556381; }
.home-page .section-dark .section-header p { color: #b5c5e4; }

.home-page .section-header .line {
  width: 64px;
  height: 4px;
  border-radius: 99px;
  margin: 10px auto 0;
  background: linear-gradient(90deg, var(--home-primary), var(--home-accent));
}

.home-page .cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

.home-page .card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #dce5f4;
  box-shadow: 0 10px 24px rgba(12, 32, 68, 0.08);
  padding: 24px 20px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.home-page .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(12, 32, 68, 0.13);
}

.home-page .card i { font-size: 28px; color: #1d4e91; margin-bottom: 12px; }

.home-page .card h3 {
  color: #173b73;
  font-size: 22px;
  line-height: 1.25;
  margin-bottom: 10px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
}

.home-page .card p { color: #5b6784; font-size: 15px; }
.home-page .why-card { background: linear-gradient(155deg, #ffffff 0%, #f5f8fe 100%); border-top: 4px solid #1f5fab; }

.home-page .chips {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.home-page .chip {
  border-radius: 12px;
  padding: 16px 14px;
  text-align: center;
  background: #fff;
  border: 1px solid #d8e3f5;
  color: #1e4a86;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(15, 40, 82, 0.08);
}

.home-page .reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}

.home-page .review-card {
  background: #fff;
  border: 1px solid #dce5f4;
  border-radius: 16px;
  padding: 22px;
  position: relative;
  box-shadow: 0 8px 20px rgba(16, 40, 86, 0.09);
}

.home-page .review-card .quote-mark {
  position: absolute;
  right: 16px;
  top: 10px;
  font-size: 44px;
  color: #d5deee;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
}

.home-page .stars { color: #f4b400; margin-bottom: 10px; letter-spacing: 0.08em; }
.home-page .review-card .text { color: #475572; margin-bottom: 12px; font-style: italic; }
.home-page .review-card h4 { color: #173b73; font-family: 'Manrope', sans-serif; margin-bottom: 2px; }
.home-page .review-card .role { color: #5c7cb5; font-size: 14px; }

.home-page .legal-docs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

.home-page .doc-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #dce5f4;
  padding: 18px;
  box-shadow: 0 8px 20px rgba(16, 40, 86, 0.09);
  text-align: center;
}

.home-page .doc-card object {
  width: 100%;
  height: 220px;
  border-radius: 10px;
  margin-bottom: 12px;
  background: #f0f4fb;
}

.home-page .doc-card h4 { color: #173b73; font-family: 'Manrope', sans-serif; margin-bottom: 10px; }

.home-page .doc-card button {
  border: none;
  border-radius: 10px;
  padding: 10px 16px;
  background: linear-gradient(132deg, var(--home-accent), #2f80ed);
  color: #ffffff;
  font-weight: 700;
  cursor: pointer;
}

.home-page .achievements {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.home-page .achievement {
  border-radius: 14px;
  padding: 20px;
  background: #fff;
  border: 1px solid #dbe5f6;
  text-align: center;
  box-shadow: 0 8px 18px rgba(13, 35, 74, 0.08);
}

.home-page .achievement i { font-size: 34px; color: #2f5fa4; margin-bottom: 8px; }
.home-page .achievement h3 { font-size: 32px; color: #173b73; font-family: 'Manrope', sans-serif; }
.home-page .achievement p { color: #5d6a85; font-size: 13px; letter-spacing: 0.05em; font-weight: 700; }

.home-page .leadership .team {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 18px;
}

.home-page .team-member {
  background: #ffffff;
  border: 1px solid #dce5f4;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(12, 32, 68, 0.09);
}

.home-page .leader-photo {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  object-position: center 24%;
}

.home-page .leader-photo--santosh {
  object-position: center 26%;
}

.home-page .leader-photo--anil {
  object-position: center 20%;
}
.home-page .team-member-body { padding: 18px; }
.home-page .team-member h3 { color: #173b73; font-family: 'Manrope', sans-serif; margin-bottom: 4px; }
.home-page .team-member .role { color: #3f66a1; margin-bottom: 10px; font-weight: 600; }
.home-page .team-member .bio { color: #5d6a85; }

.home-page .contact { text-align: center; }

.home-page .contact-form {
  max-width: 620px;
  margin: 20px auto 24px;
  display: grid;
  gap: 10px;
}

.home-page .contact-form input,
.home-page .contact-form textarea {
  width: 100%;
  border: 1px solid rgba(133, 154, 190, 0.34);
  border-radius: 10px;
  padding: 12px;
  background: rgba(7, 18, 38, 0.82);
  color: #eef4ff;
  font-family: inherit;
}

.home-page .contact-form textarea { resize: vertical; min-height: 120px; }

.home-page .contact-form button {
  justify-self: center;
  border: none;
  border-radius: 10px;
  padding: 12px 24px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  background: linear-gradient(132deg, var(--home-primary) 0%, var(--home-primary-deep) 100%);
  color: #032216;
  cursor: pointer;
}

.home-page footer {
  background: #07172f;
  color: #d8e5ff;
  padding: 42px 18px 22px;
}

.home-page .footer-container {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.home-page .footer-column h3 { font-family: 'Manrope', sans-serif; margin-bottom: 10px; color: #f3f7ff; }
.home-page .footer-column ul { list-style: none; }
.home-page .footer-column li { margin-bottom: 7px; }
.home-page .footer-column a { color: #9dc2ff; text-decoration: none; }
.home-page .social-icons a { color: #ffffff; margin-right: 10px; font-size: 18px; }
.home-page .footer-bottom { text-align: center; margin-top: 26px; font-size: 13px; color: #90a6ca; }

.home-page .fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: all 0.6s ease;
}

.home-page .fade-in.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 860px) {
  .home-page .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-page .nav-links {
    justify-content: flex-start;
  }

  .home-page .leader-photo {
    height: 240px;
  }
}