body {
  margin: 0;
  font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  background: linear-gradient(135deg, #f8f8f8, #e8e8e8);
  color: #333;
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(25px);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-nav {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(25px);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
    margin-top: 10px;
    margin-left: 10px;
    margin-right: 10px;
    position: fixed;
    width: 99%;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    box-sizing: border-box; /* Very important! */
    transition: top 0.3s;
    border-radius: 12px;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    /* flex-wrap: wrap;  <-- Add this if items need to wrap */
}

.nav-links li {
    margin-left: 20px;
}

.nav-links li:last-child {
    /* Adjust spacing before the button */
    margin-right: 0; /* Remove right margin */
}

.button {
    background-color: #007bff;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    /* Adjust button margin */
    margin-left: 20px;
}

/* Media Query (Focusing on Button Issue) */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 30px;
    }

    /*.nav-links { */
        /* flex-wrap: wrap;  <-- Add this if items need to wrap */
    /* } */

    .nav-links li {
        margin-left: 10px; /* Reduce spacing between links */
    }

    .button {
        margin-left: 10px; /* Reduce button margin */
        padding: 8px 12px; /* Slightly smaller button */
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 10px 20px;
    }

    .nav-links {
        /* flex-wrap: wrap;  <-- Add this if items need to wrap */
        flex-direction: column; /* Stack links vertically */
        align-items: flex-start; /* Align to the start */
    }

    .nav-links li {
        margin-left: 0;
        margin-top: 5px; /* Add space between links */
    }

    .button {
        margin-left: 0; /* Remove left margin */
        width: 100%; /* Full-width button on mobile */
        padding: 10px; /* Adjust padding */
    }
}

/* Base Nav Links Styles (Add these if you don't have them) */
.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 20px; /* Space between links */
}

/* Responsive Styles (For smaller screens) */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column; /* Stack logo and links vertically */
        align-items: flex-start; /* Align to the left */
        padding: 10px 20px; /* Adjust padding for smaller screens */
    }

    .nav-links {
        flex-direction: column; /* Stack links vertically */
        width: 100%; /* Make links take full width */
        margin-top: 10px; /* Add space between logo and links */
    }

    .nav-links li {
        margin-left: 0; /* Remove left margin */
        margin-top: 10px; /* Add space between stacked links */
    }
}


.logo {
  font-size: 1.8em;
  font-weight: 600;
  color: #007bff;
}


.beta {
  font-size: 0.7em;
  vertical-align: super;
  color: #777;
}


.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}


.nav-links a, .button {
  text-decoration: none;
  color: #333;
  font-size: 1.1em;
  transition: color 0.3s ease;
}


.nav-links a:hover, .button:hover {
  color: #007bff;
}


.hero-section {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 90vh;
  text-align: center;
  padding-top: 60px;
  background-image: url(https://c1.wallpaperflare.com/preview/718/867/830/architecture-shape-curve-light.jpg);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}


.hero-section-vision {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 90vh;
  text-align: center;
  padding-top: 60px;
  background-image: url('VisionBackground.png');
  background-size: cover; /* Ensures the image covers the entire background */
  background-position: center; /* Centers the image */
  background-repeat: no-repeat; /* Prevents the image from repeating */
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.hero-section-connection {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 90vh;
  text-align: center;
  padding-top: 60px;
  background-image: url('ConnectionBackground.png');
  background-size: cover; /* Ensures the image covers the entire background */
  background-position: center; /* Centers the image */
  background-repeat: no-repeat; /* Prevents the image from repeating */
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.hero-section-insights {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 90vh;
  text-align: center;
  padding-top: 60px;
  background-image: url('ConnectionBackground.png');
  background-size: cover; /* Ensures the image covers the entire background */
  background-position: center; /* Centers the image */
  background-repeat: no-repeat; /* Prevents the image from repeating */
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  filter: hue-rotate(309deg);
}


.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, 0.6) 100%);
  pointer-events: none; /* Prevent interference */
}


.hero-content {
  position: relative; /* Ensure text is above the gradient */
  z-index: 1;
}


.hero-content h1 {
  font-size: 3.5em;
  font-weight: 600;
  margin-bottom: 20px;
}


.hero-content p {
  font-size: 1.4em;
  color: #666;
  margin-bottom: 30px;
}


.button {
  padding: 15px 30px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.button:hover {
  background-color: #0056b3;
  transform: translateY(-3px);
}


.features-section {
  padding: 80px 40px;
}


.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}


.feature-card {
  text-align: center;
  padding: 30px;
  background-color: #f5f8fd;
}


.feature-card i {
  font-size: 2.5em;
  color: #007bff;
  margin-bottom: 15px;
}


.feature-card h3 {
  font-size: 1.3em;
  margin-bottom: 10px;
}


.feature-card p {
  color: #666;
}


.vision-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 20px 40px; 
  max-width: 1120px;
  margin: 0 auto;
  margin-bottom: 56px;
  background-color: #f5f8fd;
}

.vision-section-vision {
  display: flex;
  flex-direction: column; /* Stack the content vertically */
  padding: 20px 40px;
  max-width: 1120px;
  margin: 100px auto 56px;
  background-color: #f5f8fd;
  margin-bottom: -40px;
}

.vision-section-goals {
  display: flex;
  flex-direction: column; /* Stack the content vertically */
  padding: 20px 40px;
  max-width: 1120px;
  margin: 100px auto 56px;
  background-color: #f5f8fd;
  margin-bottom: 25px;
}

.vision-list-and-image {
  gap: 10px; /* Add space between the list and image *
}

.vision-list-and-image ul {
  list-style-type: disc; /* Ensure bullet points are visible */
  margin: 0; /* Remove extra margin */
  padding-left: 20px; /* Add space for bullet points */
}

.vision-list-and-image li {
  text-align: left; /* Ensure left justification */
  margin-bottom: 10px; /* Add spacing between list items */
}

.vision-image {
  max-width: 300px; /* Adjust as needed for your image size */
  height: 150px;
  object-fit: cover; /* Maintain aspect ratio */
  margin-bottom: -10px; /* Reduce this value to minimize space */

  /* Position adjustments */
  position: relative; /* Allows the use of top and left properties */
  top: -25px; /* Moves the image 10px upwards */
  left: 10px; /* Moves the image 10px to the right */

  border-radius: 60px;
}

.vision-image-two {
  max-width: 200px; /* Adjust as needed for your image size */
  height: 150px;
  object-fit: cover; /* Maintain aspect ratio */
  margin-bottom: -10px; /* Reduce this value to minimize space */

  /* Position adjustments */
  position: relative; /* Allows the use of top and left properties */
  top: 15px; /* Moves the image 25px upwards */
  left: 10px; /* Moves the image 10px to the right */

  border-radius: 25px;
}

.vision-content {
  padding: 40px;
  text-align: center;
}


.vision-content h2 {
  font-size: 2.5em;
  font-weight: 600;
  margin-bottom: 20px;
  margin: auto;
}


.vision-content p {
  font-size: 1.2em;
  color: #666;
  margin-bottom: 30px;
}


.vision-image {
  padding: 40px;
}


.vision-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}



.cta-section {
  text-align: center;
  padding: 80px 40px;
}


.cta-section h2 {
  font-size: 2.5em;
  font-weight: 600;
  margin-bottom: 20px;
}


.cta-section p {
  font-size: 1.2em;
  color: #666;
  margin-bottom: 30px;
}


footer {
  text-align: center;
  padding: 30px;
  background-color: #f0f0f0;
  color: #666;
  font-size: 0.9em;
}


.hero-content h1,
.hero-content p,
.hero-button {
  animation: fadeIn 1s ease-out forwards;
}


.features-grid {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 1s ease-out forwards 0.2s;
}

.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.login-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, 0.6) 100%);
  pointer-events: none;
}

.login-box {
  padding: 40px;
  width: 400px;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.8s ease-out forwards;
}

.login-box h2 {
  font-size: 2em;
  font-weight: 600;
  margin-bottom: 30px;
}

.login-form {
  display: flex;
  flex-direction: column;
}

.input-group {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
}

.input-group label {
  position: absolute;
  left: 10px;
  color: #777;
}

.input-group input {
  width: 100%;
  padding: 12px 40px; /* Increased padding for icon space */
  border: none;
  border-radius: 25px;
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
  font-size: 1em;
  color: #333;
  transition: box-shadow 0.3s ease;
}

.input-group input:focus {
  outline: none;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1), 0 0 5px #007bff;
}

.login-button {
  padding: 15px 30px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 20px;
}

.login-button:hover {
  background-color: #0056b3;
  transform: translateY(-3px);
}

.form-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.form-footer a {
  text-decoration: none;
  color: #007bff;
  font-size: 0.9em;
  transition: color 0.3s ease;
}

.form-footer a:hover {
  color: #0056b3;
}

/* Animations */
@keyframes fadeIn {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}

.linkText {
  color: white;
  text-decoration: none;
}
/* Connections Section */
.connections-section {
  padding: 80px 40px;
  text-align: center;
}

.connections-section h2 {
  font-size: 2.5em;
  font-weight: 600;
  margin-bottom: 40px;
  color: #333;
}

.connections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.connection-card {
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.connection-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.connection-card img {
  width: 80px; /* Adjust as needed */
  height: 80px; /* Adjust as needed */
  border-radius: 50%;
  margin-bottom: 20px;
  object-fit: cover; /* Prevents image distortion */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.connection-card h3 {
  font-size: 1.4em;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.connection-card p {
  font-size: 1em;
  color: #666;
  margin-bottom: 20px;
}

.connection-card .button {
  padding: 12px 25px;
  font-size: 1em;
}

.infoImages {
  margin-left: 100px;
  border-radius: 100%;
}

.connections-Image{
  width:"300px";
  height:"300px";
}


/* The modal CSS code*/
.modal {
    display: none; /* Hide the modal by default */
    position: fixed; /* Make it stay in the same place */
    z-index: 1; /* Put it on top of everything */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4); /* Darken the background */
}

.modal-content {
    background-color: white;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}

.close-button {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.insights-section {
  display: flex;
  flex-direction: column;
  padding: 20px 40px;
  max-width: 1120px;
  margin: 100px auto 56px;
  background-color: #f5f8fd;
  margin-bottom: 40px;
}

.insights-content {
  display: flex;
  flex-direction: row;
  padding: 40px;
  text-align: center;
}

.insights-content-left {
  width: 60%; 
  margin-right: 5em; 
  text-align: start
}

.insights-content-right {
  width: 60%; 
  margin-left: 5em; 
  text-align: end
}

@media only screen and (max-width: 1000px) {
  .insights-content {
    flex-direction: column;
    align-items: center;
  }
  .insights-content-right, .insights-content-left {
    text-align: center;
    margin: 0em;
  }
}

.insights-content h2 {
  font-size: 2.5em;
  font-weight: 600;
  margin-bottom: 20px;
  margin: auto;
}

.insights-content p {
  font-size: 1.2em;
  color: #666;
  margin-bottom: 30px;
}

.insights-image {
  align-self: center;
  width: 500px;
  height: 300px;
  overflow: hidden;
  object-fit: cover;
  object-position: center;
  border-radius: 25px;
}