body {
    color: #fff; 
    font-family: Arial, sans-serif;
}

.conttagline {
    height:calc(100vh - 100px);
    min-height: 700px;
    display: flex;
    justify-self: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    color: #fff;
    background-color: #00000000;
    position: relative;
    z-index:2 ;
}

.locationdes h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 10px;
    margin-left: 30px;
}

.locationdes p {
    font-size: 18px;
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: 30px;
    margin-right: auto;
}

.location-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    margin: 0 auto;
    max-width: 800px;
}

.location {
    background-color: #2a2a2a; 
    margin-left: 0px 30px;

    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
    text-align: left;
    width: 80%;
}

.locname {
    font-size: 24px;
    margin-bottom: 30px;
    color: #35d779; 
}

.address {
    font-size: 16px;
    margin-bottom: 30px;
    color: #ccc;
}


.neural-network {
    position: absolute;
    top: 0px;
    width: 100%;
    z-index: 0;
    background-color: #00000000;
    overflow: hidden;
}
.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
  }
  
  .fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
  }
  