@media screen and (min-width:900px) {
  
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
  background-color: #F8FAFC;
}


header{
  width: 100%;
  height: 70px;
  background-color: white;
  padding: 12px;
  position: fixed;
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  z-index: 999;
}

.logo{
  cursor: pointer;
  width: 150px;
  height: auto;
}

.awa{
  width: 200px;
  height: 45px;
  border: none;
  background: linear-gradient(135deg, #2563EB 0%, #10B981 100%);
  color: white;
  border-radius: 10px;
  display: flex;
  padding: 10px;
  justify-content: center;
  gap: 8px;
  align-items: center;
  cursor: pointer;
}


/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Image Overlay Layer */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45); /* Dark tint layer */
  z-index: 1;
}

/* Text Card Overlay (No Blur) */
.hero-card {
  position: relative;
  z-index: 2; /* Sits above the overlay */
  background: transparent; /* Solid clean background */
  padding:1em;
  border-radius: 16px;
  max-width: 1000px;
  width: 90%;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  height: auto;
}

.quote{
  font-size: 1rem;
  color: #F59E0B;
  font-weight: 600;
}

.quote-title{
  font-size: 3rem;
  color:white ;
}

.quote-sub{
  color: rgb(242, 240, 240);
  font-weight: 600;
}

.j-cta{
  width: 200px;
  height: 50px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #F59E0B 0%, #EA580C 100%);
  color: white;
  border-radius: 10px;
  font-size: 1rem;
  margin: 20px auto;
}

.wia{
  width: 70%;
  height: auto;
  background-color: transparent;
  justify-content: center;
  padding: 1em;
  display: flex;
  flex-direction: column;
  margin: 30px auto;
  gap: 12px;
}

.carousel{
  width: 100%;
  height: auto;
  padding: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.caro-img{
  width: 280px;
  height: auto;
  border-radius: 20px;
}

.carh{
  width: 100%;
  height: auto;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.v-sub{
  width: 70%;
}

/* ============ WAITLIST FORM SECTION ============ */

.waitlist-container {
  width: 100%;
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: center;
}

.waitlist-content {
  flex: 1;
  min-width: 320px;
  max-width: 500px;
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(30, 64, 175, 0.08);
  border: 1px solid #E2E8F0;
}

.waitlist-header {
  margin-bottom: 30px;
  text-align: center;
}

.waitlist-title {
  font-size: 28px;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.waitlist-title i {
  color: #0D9488;
  font-size: 24px;
}

.waitlist-subtitle {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
}

/* Form Styling */
.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 14px;
  font-weight: 600;
  color: #0F172A;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-input,
.form-select {
  padding: 10px;
  width: 100%;
  height: 40px;
  border: 2px solid #E2E8F0;
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.3s ease;
  background-color: white;
  color: #0F172A;
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: #2563EB;
  background-color: white;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-input::placeholder {
  color: #94A3B8;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-direction: row;
  margin-top: 10px;
}

.form-checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #2563EB;
}

.checkbox-label {
  font-size: 13px;
  color: #475569;
  cursor: pointer;
  margin: 0;
}

/* Submit Button */
.waitlist-btn {
  padding: 14px 24px;
  background: linear-gradient(135deg, #1E40AF 0%, #0D9488 100%);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  margin-top: 10px;
  box-shadow: 0 4px 15px rgba(30, 64, 175, 0.2);
}

.waitlist-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 64, 175, 0.3);
}

.waitlist-btn:active {
  transform: translateY(0);
}

.form-message {
  min-height: 40px;
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  margin-top: 10px;
  display: none;
}

.form-message.success {
  display: block;
  background-color: #D1FAE5;
  color: #065F46;
  border: 1px solid #A7F3D0;
}

.form-message.error {
  display: block;
  background-color: #FEE2E2;
  color: #991B1B;
  border: 1px solid #FECACA;
}

/* Feature Cards */
.waitlist-features {
  flex: 1;
  min-width: 320px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-card {
  background: white;
  border-radius: 16px;
  padding: 24px;
  border: 2px solid #E2E8F0;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: #2563EB;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.12);
  transform: translateY(-4px);
}

.feature-card i {
  font-size: 32px;
  margin-bottom: 12px;
  display: block;
}

.feature-card i.text-blue {
  color: #2563EB;
}

.feature-card i.text-teal {
  color: #0D9488;
}

.feature-card i.text-amber {
  color: #F59E0B;
}

.feature-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 13px;
  color: #475569;
  line-height: 1.5;
}

/* Icon color utilities */
.text-blue { color: #2563EB; }
.text-teal { color: #0D9488; }
.text-amber { color: #F59E0B; }

/* Responsive Design */
@media (max-width: 900px) {
  .waitlist-container {
    flex-direction: column;
    gap: 30px;
  }

  .waitlist-content,
  .waitlist-features {
    max-width: 100%;
  }

  .waitlist-title {
    font-size: 24px;
  }

  .quote-title {
    font-size: 2.2rem;
  }
}

/* ============ FOOTER SECTION ============ */

.arix-footer {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  color: white;
  padding: 60px 20px 30px;
  margin-top: 80px;
  border-top: 2px solid #2563EB;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: #2563EB;
}

.footer-section p {
  font-size: 14px;
  color: #CBD5E1;
  margin-bottom: 12px;
  line-height: 1.6;
}

.footer-section a {
  color: #CBD5E1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #2563EB;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #CBD5E1;
}

.contact-item i {
  color: #0D9488;
  font-size: 18px;
  min-width: 24px;
}

.contact-item a {
  color: #CBD5E1;
  text-decoration: none;
}

.contact-item a:hover {
  color: #2563EB;
}

.contact-item p {
  margin: 0;
  display: inline;
}

.footer-bottom {
  border-top: 1px solid rgba(37, 99, 235, 0.2);
  padding-top: 20px;
  text-align: center;
}

.copyright {
  font-size: 13px;
  color: #94A3B8;
  margin: 0;
}

}















@media screen and (max-width:899px) {
  
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
  background-color: #F8FAFC;
}


header{
  width: 100%;
  height: 70px;
  background-color: white;
  padding: 12px;
  position: fixed;
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  z-index: 999;
}

.logo{
  cursor: pointer;
  width: 150px;
  height: auto;
}

.awa{
  width: 190px;
  height: 45px;
  border: none;
  background: linear-gradient(135deg, #2563EB 0%, #10B981 100%);
  color: white;
  border-radius: 10px;
  display: flex;
  padding: 10px;
  justify-content: center;
  gap: 8px;
  align-items: center;
  cursor: pointer;
}


/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Image Overlay Layer */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45); /* Dark tint layer */
  z-index: 1;
}

/* Text Card Overlay (No Blur) */
.hero-card {
  position: relative;
  z-index: 2; /* Sits above the overlay */
  background: transparent; /* Solid clean background */
  padding:1em;
  border-radius: 16px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  height: auto;
}

.quote{
  font-size: 1rem;
  color: #F59E0B;
  font-weight: 600;
}

.quote-title{
  font-size: 3rem;
  color:white ;
}

.quote-sub{
  color: rgb(242, 240, 240);
  font-weight: 600;
}

.j-cta{
  width: 200px;
  height: 50px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #F59E0B 0%, #EA580C 100%);
  color: white;
  border-radius: 10px;
  font-size: 1rem;
  margin: 20px auto;
}

.wia{
  width: 100%;
  height: auto;
  background-color: transparent;
  justify-content: center;
  padding: 1em;
  display: flex;
  flex-direction: column;
  margin: 30px auto;
  gap: 12px;
}

.carousel{
  width: 100%;
  height: auto;
  padding: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.caro-img{
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.carh{
  width: 100%;
  height: auto;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.v-sub{
  width: 100%;
}

/* ============ WAITLIST FORM SECTION ============ */

.waitlist-container {
  width: 100%;
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.waitlist-content {
  flex: 1;
  min-width: 320px;
  max-width: 500px;
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(30, 64, 175, 0.08);
  border: 1px solid #E2E8F0;
}

.waitlist-header {
  margin-bottom: 30px;
  text-align: center;
}

.waitlist-title {
  font-size: 28px;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.waitlist-title i {
  color: #0D9488;
  font-size: 24px;
}

.waitlist-subtitle {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
}

/* Form Styling */
.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 14px;
  font-weight: 600;
  color: #0F172A;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-input,
.form-select {
  padding: 10px;
  width: 100%;
  height: 40px;
  border: 2px solid #E2E8F0;
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.3s ease;
  background-color: white;
  color: #0F172A;
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: #2563EB;
  background-color: white;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-input::placeholder {
  color: #94A3B8;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-direction: row;
  margin-top: 10px;
}

.form-checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #2563EB;
}

.checkbox-label {
  font-size: 13px;
  color: #475569;
  cursor: pointer;
  margin: 0;
}

/* Submit Button */
.waitlist-btn {
  padding: 14px 24px;
  background: linear-gradient(135deg, #1E40AF 0%, #0D9488 100%);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  margin-top: 10px;
  box-shadow: 0 4px 15px rgba(30, 64, 175, 0.2);
}

.waitlist-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 64, 175, 0.3);
}

.waitlist-btn:active {
  transform: translateY(0);
}

.form-message {
  min-height: 40px;
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  margin-top: 10px;
  display: none;
}

.form-message.success {
  display: block;
  background-color: #D1FAE5;
  color: #065F46;
  border: 1px solid #A7F3D0;
}

.form-message.error {
  display: block;
  background-color: #FEE2E2;
  color: #991B1B;
  border: 1px solid #FECACA;
}

/* Feature Cards */
.waitlist-features {
  flex: 1;
  min-width: 320px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-card {
  background: white;
  border-radius: 16px;
  padding: 24px;
  border: 2px solid #E2E8F0;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: #2563EB;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.12);
  transform: translateY(-4px);
}

.feature-card i {
  font-size: 32px;
  margin-bottom: 12px;
  display: block;
}

.feature-card i.text-blue {
  color: #2563EB;
}

.feature-card i.text-teal {
  color: #0D9488;
}

.feature-card i.text-amber {
  color: #F59E0B;
}

.feature-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 13px;
  color: #475569;
  line-height: 1.5;
}

/* Icon color utilities */
.text-blue { color: #2563EB; }
.text-teal { color: #0D9488; }
.text-amber { color: #F59E0B; }





.arix-footer {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  color: white;
  padding: 60px 20px 30px;
  margin-top: 80px;
  border-top: 2px solid #2563EB;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: #2563EB;
}

.footer-section p {
  font-size: 14px;
  color: #CBD5E1;
  margin-bottom: 12px;
  line-height: 1.6;
}

.footer-section a {
  color: #CBD5E1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #2563EB;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #CBD5E1;
}

.contact-item i {
  color: #0D9488;
  font-size: 18px;
  min-width: 24px;
}

.contact-item a {
  color: #CBD5E1;
  text-decoration: none;
}

.contact-item a:hover {
  color: #2563EB;
}

.contact-item p {
  margin: 0;
  display: inline;
}

.footer-bottom {
  border-top: 1px solid rgba(37, 99, 235, 0.2);
  padding-top: 20px;
  text-align: center;
}

.copyright {
  font-size: 13px;
  color: #94A3B8;
  margin: 0;
}

}
