* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    background-color: #000000;
}

a:visited {
    text-decoration: none;
}
a:link {
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}
a:active {
    text-decoration: none;
}

a {
    color: #6e8efb;
}
a:hover {
    color : #cbd5e0;
}
.navbar {
    display: flex;
    align-items: center;
    gap: 20px;
}
header {
    border-bottom: 1px solid #6e8efb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-inline: 100px;
    height: 64px;
    position: sticky;
    z-index: 10000;
    top: 0;
}
header > h2 {
    color: #6e8efb;
    background-color: transparent;
}
main {
    width: 100%;
    min-height: calc(100vh - 64px);
    background-color: #fff;
}



.info-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    padding: 4rem 5%;
    background-color: #000000;
    color: #e2e8f0;
    min-height: calc(100vh - 64px);
    gap: 2rem;
    flex-wrap: wrap;
}

.info-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
}



.greeting {
    min-height: calc(100vh - 64px);
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    /* background: linear-gradient(90deg, #4f46e5, #7c3aed); */
    background-color: #4f46e5;
}

.greeting h1 {
    font-size: 6rem;
    font-weight: 800;
    margin: 0 0 1rem 0;
    color: transparent;
    position: relative;
    z-index: 1;
    background-clip: text;
}

.greeting .subtitle {
    font-size: 1.5rem;
    color: #4a5568;
    margin: 0;
    max-width: 600px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    min-height: 70px;
    background: rgba(255, 255, 255, 0.7);
    padding: 1rem 2rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
 .float-text {
    position: absolute;
    font-size: 24px;
    color: #c7d2fe;
    white-space: nowrap;
    background: transparent;
    opacity: 0.85;
    animation: moveLeft linear forwards;
    z-index: 0;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
  }

  @keyframes moveLeft {
    0% {
      transform: translateX(100%) translateY(-50%);
      opacity: 0;
    }
    10% {
      opacity: 1;
    }
    90% {
      opacity: 1;
    }
    100% {
      transform: translateX(-100vw) translateY(-50%);
      opacity: 0;
    }
  }
@media (max-width: 768px) {
    .greeting {
        min-height: 70vh;
        padding: 2rem 1rem;
    }
    
    .greeting h1 {
        font-size: 2.5rem;
    }
    
    .greeting .subtitle {
        font-size: 1.2rem;
        padding: 0.8rem 1.5rem;
    }
}
@keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0; }
}
.typing-cursor {
    display: inline-block;
    width: 3px;
    height: 1em;
    background-color: #000;
    margin-left: 2px;
    animation: blink 1s infinite;
}