/* section 3 */
.landing-main {
  background: linear-gradient(135deg, #2563eb, #4338ca, #6b21a8);
  /* min-height: 100vh; */
  position: relative;
  overflow-x: hidden;
}

.landing-wrapper {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px 20px;
  position: relative;
  z-index: 2;
}


.glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
  color: white;
}

.brand-logo {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #26c6da, #00acc1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  font-size: 32px;
}



.hero-subtitle {
  font-size: 1rem;
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.input-section {
  margin-bottom: 30px;
}

.input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 15px;
}

.input-field {
  margin-bottom: 15px;
}

.input-field label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  opacity: 0.9;
  text-align: start;
}

.input-field input {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.input-field input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.input-field input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.15);
}

.agreement-checkbox {
  display: flex;
  align-items: center;
  text-align: left;
  margin: 20px 0;
}

.agreement-checkbox input[type="checkbox"] {
  width: auto;
  margin-right: 10px;
  transform: scale(1.2);
}

.agreement-checkbox label {
  font-size: 0.9rem;
  opacity: 0.9;
  line-height: 1.4;
}

.action-button {
  background: linear-gradient(135deg, #2563eb, #4338ca, #6b21a8);
  color: white;
  border: none;
  padding: 18px 40px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.action-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(38, 198, 218, 0.3);
}

.description-text {
  font-size: 0.85rem;
  opacity: 0.8;
  line-height: 1.5;
  margin-bottom: 40px;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
}

.metric-card {
  /* padding: 20px; */
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-value {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 5px;
  background: linear-gradient(135deg, #ffa726, #ff9800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.metric-title {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
  .landing-wrapper {
    padding: 20px 15px;
  }

  .glass-card {
    padding: 30px 20px;
  }

  .main-heading {
    font-size: 2rem;
  }

  .input-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .metrics-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

 

  .brand-logo {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .landing-wrapper {
    padding: 15px 10px;
  }

  .glass-card {
    padding: 25px 15px;
  }

  .main-heading {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .input-field input {
    padding: 12px;
  }

  .action-button {
    padding: 15px 30px;
    font-size: 1rem;
  }

  .metric-value {
    font-size: 1.5rem;
  }


}

@media (max-width: 360px) {
  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .agreement-checkbox {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* section 4 */

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

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #dbeafe;
  color: #2563eb;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 24px;
}

.badge-icon {
  width: 16px;
  height: 16px;
  border-radius: 3px;
  position: relative;
}



.main-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 16px;
}

.title-underline {
  width: 60px;
  height: 3px;
  background: #3b82f6;
  margin: 0 auto 32px;
  border-radius: 2px;
}

.main-description {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

.features-grid {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 40px;
  margin-top: 40px;
}

.feature-card {
  background: white;
  padding: 32px 24px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #0097a7;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #475569;
  /* background-color: #398fc5; */
}

.feature-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
  margin-top: 12px;
}
.feature-title:hover {
  color: #398fc5; 
  cursor: pointer; 
}
.feature-description {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
}
@media (max-width: 1024px) {
  .main-title {
    font-size: 2.5rem;
  }
.features-grid{
  padding: 20px;
}
  .main-description {
    font-size: 1rem;
    margin-bottom: 50px;
  }

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

  .feature-card {
    padding: 28px 20px;
  }
  
}

@media (max-width: 767px) {
  .main-title {
    font-size: 2rem;
    margin-bottom: 12px;
  }

  .main-description {
    font-size: 0.95rem;
    margin-bottom: 40px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 400px;
    margin: 30px auto 0;
  }

  .feature-card {
    padding: 24px 20px;
  }

  .feature-icon {
    width: 44px;
    height: 44px;
    font-size: 1.4rem;
    margin-bottom: 16px;
  }

  .feature-title {
    font-size: 1rem;
    margin-bottom: 10px;
  }

  .feature-description {
    font-size: 0.85rem;
  }

  .section-badge {
    font-size: 0.8rem;
    padding: 6px 12px;
    margin-bottom: 20px;
  }
}

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

  .main-description {
    font-size: 0.9rem;
    padding: 0 10px;
  }

  .feature-card {
    padding: 20px 16px;
  }

  .features-grid {
    max-width: 100%;
  }
}

@media (min-width: 320px) {
  .feature-card {
    margin: 20px 10px;
  }
}

/* CSS for ul and li elements - Add this to your existing CSS */

.seat ul {
  list-style: none ;
  padding: 0;
  margin: 0;
  text-align: left !important;
}

.seat li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.6;
}

.seat li:before {
  content: "•";
  color: #3b82f6;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.seat li:last-child {
  margin-bottom: 0;
}

/* Mobile responsive styles for lists */
@media (max-width: 767px) {
  .seat li {
    font-size: 0.85rem;
    padding-left: 18px;
    margin-bottom: 6px;
  }
}

@media (max-width: 480px) {
  .seat li {
    font-size: 0.8rem;
    padding-left: 16px;
    margin-bottom: 5px;
  }
}










/* section 9 */

.imp-section {
  max-width: 1400px;
  margin: 0 auto;
  background: linear-gradient(135deg, #2563eb, #9333ea);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 60px 40px;
  text-align: center;
  height: auto;
}

@media (max-width: 1023px) {
  .imp-section {
    padding: 50px 30px;
  }
}

@media (max-width: 767px) {
  .imp-section {
    padding: 40px 25px;
  }
}

@media (max-width: 480px) {
  .impact-section {
    padding: 30px 20px;
    border-radius: 15px;
  }
}



/* section 10 */




/* section 11 */

.group-1 {
  width: 100%;
  margin: 20px auto;
}

.features-grids {
  display: grid;
  grid-template-columns: auto auto;
  gap: 20px;
  text-align: start;
}
@media (max-width: 480px) {
  .features-grids {
    grid-template-columns: auto;
    gap: 20px;
  }
}
@media (max-width: 1024px) {
  .features-grids {
   padding: 10px;
  }
}


