@import url(style.css);
.hero-about {
    position: relative;
    overflow-y: auto;
    height: 900px;
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 4vw, 50px);
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border);
    border-top: 2px solid var(--highlight);
    padding: clamp(30px, 6vw, 110px);
    max-width: 1200px;
    background-color: var(--base-varient);
    box-shadow: var(--box-shadow);
    border-radius: 25px;
    margin-top: 90px;
    margin-bottom: 100px;
    transition: all 300ms ease-in-out;
    color: var(--secondary-text);
    transform: translateX(-100px);
    opacity: 0;
    animation: slideIn 0.8s forwards;
    cursor: pointer;
}
@keyframes slideIn {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    } 
}
.hero-about::-webkit-scrollbar {
  width: 6px;
}

.hero-about::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 4px;
}

.hero-about::-webkit-scrollbar-thumb {
  background: transparent;
  border-radius: 3px;
}

.hero-about::-webkit-scrollbar-thumb:hover {
  background: transparent;
}

.highlight {
    color: var(--text-color);
}
.hero-about h1 {
    margin-top: 150px;
    font-size: clamp(28px, 6vw, 48px);
    font-weight: 700;
}
.hero-about h3 {
    font-size: clamp(22px, 5vw, 36px);
    font-weight: 600;
}
.hero-about p {
    font-size: clamp(16px, 3vw, 20px);
    line-height: 1.6;
    max-width: 800px;
    text-align: center;
}
.hero-about ul {
    list-style-type: disc;
    padding-left: 20px;
    max-width: 800px;
    text-align: left;
}
.hero-about ul li {
    font-size: clamp(16px, 3vw, 20px);
    margin-bottom: 8px;
}
@media (max-width: 800px) {
    .hero-about {
        height: auto;
        margin-top: 70px;
        margin-bottom: 70px;
        overflow-y: visible;
    }
    .hero-about h1 {
        margin-top: 10px;
    }
}