/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  color: #ffffff;
  background-color: #0d1b2a;
  line-height: 1.6;
}

p1 {
  color:#000000;
  font-size: 18px;
}

.container {
  width: 80%;
  display: flex;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
}

/* Header */
.header {
  background: #000b27;
  padding: 15px 0;
  border-bottom: 3px solid #0468ad
}

.header .logo {
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
}

.nav {
  display: flex;
  gap: 20px;
}


/* Special Link Button */
.special-link {
  color: #1fb6ff; /* Highlight color */
  border: 2px solid transparent;
  padding: 10px 20px;
  border-radius: 5px;
  position: relative;
  background: linear-gradient(to right, #000b27, #000b27) padding-box, 
              linear-gradient(to right, #0468ad, #64cbff) border-box;
}

/* Border animation */
.special-link:hover {
  animation: border-rotate 4.0s infinite linear;
}

.nav a {
  color: #fff;
  text-decoration: none;
  display: block;
  font-size:16px;
  padding: 1rem;
}


.nav a:hover{
  opacity: 0.88;
  color:#55d8fd;
}
/* Hero Section */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 0;
  margin: 0;
  background:#000b27;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 30px;
  margin-top: -190px;
}

.hero-text {
  font-size: 42px;
  font-weight: 600;
  line-height: 60px;
  margin-top: 270px;
  margin-left: 100px;
  width: 30%;
}

.hero-text .highlight {
  color: #1fb6ff;

}

.subtitle {
  color: #ffffff;
  font-size: 18px;
  line-height: 26px;
  opacity: 0.62;
  margin-left: 100px;
  width: 36%;
  margin-top: 10px;
  
}

.hero-image img {
  align-self: flex-end;
  width: 50%;
  height: 430px;
  margin-left: 590px;
  margin-top: -500px;
  border-radius: 56.32px;
}

/* Buttons */
.btn {
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  line-height: 100px;
}

.btn.primary {
  background: #1fb6ff;
  margin-left: 100px;
  
}

.btn.secondary {
  background: #243b55;
  margin-left: 20px;
}

/* Statistics Section */

.container1 {
  display: flex;
  justify-content: space-around;
  gap: 250px;
}

.statistics {
  display: flex;
  justify-content: space-around;
  padding: 30px 0;
  text-align: center;
  background: #ffffff;
}

.stat h2 {
  font-size: 64px;
  color: #0468ad;
  line-height: 60px;

}

.stat1 h3 {
  font-size: 64px;
  color: #0697dd;
  line-height: 60px;
}

.stat2 h4 {
  font-size: 64px;
  color: #023f81;
  line-height: 60px;
}

.container2 {
  padding: 50px 0;
  width: 90%;
  margin-left: 70px;
}
/* Steps Section */
.steps {
  background: #000b27;
  padding: 10px 0;
  text-align: center;
}

.steps h2 {
  font-size: 2rem;
  margin-bottom: 40px; /* Adjust spacing between h2 and steps-grid */
  color:#55d8fd;
  width: 100%;
  text-align: center;
}

.steps-grid {
  display: flex;
  justify-content: space-around;
  text-align: center;
  width: 100%;
  margin-top: 50px;
}

.step h3 {
  color: #1fb6ff;
}

.gradio-app {
  padding: 50px 20px;
  text-align: center;
}

.gradio-app h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.gradio-app iframe {
  border: none;
}

/* Footer */
.footer {
  background: #142a47;
  padding: 40px 0;
  text-align: center;
  color: #fff;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.footer-links,
.footer-social {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-links a,
.footer-social a {
  color: #1fb6ff;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}

.footer-links a:hover,
.footer-social a:hover {
  color: #55d8fd;
}

.footer p {
  color: #aaa;
  font-size: 0.9rem;
}
