body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100vw;
    background: linear-gradient(to right, #0b3d91, #4facfe, #00f2fe);
    background-size: 200% 200%;
  animation: waterFloat 10s ease-in-out infinite;
}

@keyframes waterFloat {
  0%   { background-position: 0% 50%; }
  25%  { background-position: 50% 100%; }
  50%  { background-position: 100% 50%; }
  75%  { background-position: 50% 0%; }
  100% { background-position: 0% 50%; }
}

.top-container {
    position: fixed;
    z-index: 1000;
    width: 100vw;
    padding: 10px 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: rgba(255, 255, 255, 0.02);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(2.5px);
    -webkit-backdrop-filter: blur(2.5px);
    border: 1px solid rgba(255, 255, 255, 0.24);
    
}

.logo {
  margin-left: 10px;
}

.title {
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    padding: 0;
    margin: 10px 20px 10px 14px;
    color: white;
}



#launchBtn {
    font-weight: bold;
    margin-left: 68%;
    border-radius: 6px;
    cursor: pointer;
    margin-right: 20px;
    padding: 10px 16px;
    border: none;
    color:#00f2fe;
    background-color: white;
}

#launchBtn:hover {
    padding: 10px 16px;
    border: none;
    background: #105bd8;
    color: white;
}


.main-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.brand-badge { 
    margin-top: 140px;
    display:inline-flex; 
    align-items:center;  
    color:  white; 
    text-decoration:none; 
    border: 1px solid white; 
    padding: 6px 8px;
    border-radius: 70px;
    opacity: 0.8;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(2.5px);
    padding-right: 14px;
}


.badge { 
    display:inline-grid;
    place-items:center; 
    width:32px; 
    height:32px; 
    font-weight: light;
    
}
  
.badge-icon { 
    width:18px; 
    height:18px; 
    color: #b8ccf1;
}



.heading-text{
    align-items:center;  
    margin-top: 30px;
}

.heading-text h3 {
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  color: #ffffff;     
  margin: 0;           
}

.heading-text h2 {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  background: linear-gradient(90deg, #80D0FF, #E0FFFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}

.heading-text p {
    color: white;
    padding-top: 4px;
    text-align: center;
    line-height: 0.8cm;
}

.get-started {
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    padding: 10px 16px;
    border: none;
    color:#00f2fe;
    background-color: white;
}

.get-started:hover, .ready-launch-btn:hover {
    padding: 10px 16px;
    border: none;
    background: #105bd8;
    color: white;
}

.learn-more {
    margin-bottom: 30px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    padding: 10px 16px;
    border: none;
    color: white;
    background-color: rgba(128, 128, 128, 0.331);
}

.learn-more:hover {
    padding: 10px 16px;
    border: none;
    background: #105bd8;
    color: white;
}

.second-container {
    width: 100%;                
    background: #408cce;  
    margin: 0;
    padding: 0;
}

.second-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
}

.second-top h3 {
    margin-top: 60px;
    margin-bottom: 0;
    font-size: 30px;
}

.second-top p {
    opacity: 0.8;
}


.feature-block {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  grid-gap: 20px; 
  margin: auto;
  padding: 30px 30px;
  padding-bottom: 90px;
}

@media (max-width: 900px) {
  .feature-block {
    grid-template-columns: repeat(2, 1fr); 
  }
}

@media (max-width: 600px) {
  .feature-block {
    grid-template-columns: 1fr;           
  }
}

.feature-card {
  background: rgba(255, 255, 255, 0.169);
  border-radius: 12px;
  padding: 20px;
  max-width: 350px;
  text-align: center;
  color: white;
  border: 1px solid  white;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.037);
}

.feature-card:hover {
    border: 1px solid #00f2fe;
    box-shadow: 0 0 8px rgba(0, 242, 254, 0.7); 
}

.card-title {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.card-title span {
    margin: 0;
    padding: 0;
}
.card-title h4 {
    padding-bottom: 10px;
    margin-top: 10px;
    margin-bottom: 12px;
    padding: 0;
}

.card-title p {
    font-size: 14px;
    text-align: left;
    margin: 0;
    padding-bottom: 10px;
    line-height: 1.5;
}


.third-container {
    width: 100%;                
    background: #2f699b;  
    display: flex;
    justify-content: center;
    padding: 100px 20px;
}

.about-container {
    background-color: #80D0FF;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 20px;
    max-width: 800px;
    text-align: center;
    color: white;
    padding: 20px 50px;
    box-shadow: 0 0 8px white;
    border: 1px solid white;
}

.about-container h3 {
    font-size: 30px;
}

.about-container p {
    line-height: 1.5;
    text-align: left;
    
}

.data-src {
    border: 1px solid white;
    border-radius: 50px;
    padding: 10px 10px;
    background: rgba(255, 255, 255, 0.169);
}

.fourth-container {
    width: 100%;               
    background: #18344d;  
    display: flex;
    justify-content: center;
    padding: 60px 20px;
}

.ready-container {
    color: white;
    text-align: center;
}

.ready-container h3 {
    font-size: 30px;
}

.ready-launch-btn {
      font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    padding: 10px 16px;
    border: none;
    color:#4facfe;
    background-color: white;
}

.footer-container {
    width: 100%;            
    background: #132a3e;
    color: white;  
    text-align: center;
    font-size: 13px;
    padding: 10px 10px;
}

.app-footer a {
  color: #3c95ef;
  text-decoration: none;
  font-weight: 500;
}

.app-footer a:hover {
  text-decoration: underline;
}

.app-footer .footer-note {
  font-size: 12px;
 
}

/* Fade-in image animation for transition */
.fade-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;        
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  pointer-events: none;    
}
