/* ================================
   HACKINGVICHAR ABOUT PAGE
   Header & Footer remain unchanged
================================ */

.hv-about {
    max-width: 1100px;
    margin: 0 auto;
    padding: 45px 25px 70px;
    color: #202044;
}

/* Breadcrumb */
.hv-breadcrumb {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

/* Hero */
.hv-hero {
    text-align: center;
    margin-bottom: 45px;
}

.hv-hero h1 {
    font-size: clamp(32px, 5vw, 52px);
    margin: 0 0 15px;
    font-weight: 800;
    color: #202044;
}

.hv-hero p {
    max-width: 650px;
    margin: 0 auto;
    color: #777;
    line-height: 1.7;
    font-size: 16px;
}

/* Hero image */
.hv-hero-image {
    width: 100%;
    height: 430px;
    margin-top: 35px;
    overflow: hidden;
    border-radius: 0 0 55px 0;
    background: linear-gradient(135deg, #e9e8ff, #f8f8ff);
}

.hv-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Mission + Values */
.hv-info {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 70px;
    padding: 25px 35px 70px;
}

.hv-section-title {
    font-family: Georgia, serif;
    font-size: 27px;
    color: #202044;
    margin: 0 0 25px;
}

.hv-small-title {
    font-family: Georgia, serif;
    font-size: 23px;
    margin: 30px 0 12px;
    color: #202044;
}

.hv-text {
    color: #777;
    font-size: 14px;
    line-height: 1.8;
}

/* Values */
.hv-values {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hv-value {
    position: relative;
    padding-left: 30px;
}

.hv-value::before {
    content: "+";
    position: absolute;
    left: 0;
    top: -3px;
    font-size: 23px;
    font-weight: 400;
    color: #ef706c;
}

.hv-value h4 {
    margin: 0 0 7px;
    color: #27275a;
    font-size: 17px;
}

.hv-value p {
    margin: 0;
    color: #777;
    line-height: 1.6;
    font-size: 13px;
}

/* Story section */
.hv-story {
    background: #fafaff;
    margin-left: -25px;
    margin-right: -25px;
    padding: 55px 35px 70px;
}

.hv-story-heading {
    text-align: center;
    font-family: Georgia, serif;
    font-size: 27px;
    color: #202044;
    margin: 0 0 35px;
}

/* Timeline */
.hv-timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 55px;
    flex-wrap: wrap;
}

.hv-year {
    background: #eeeafa;
    color: #56547b;
    border-radius: 20px;
    padding: 7px 17px;
    font-size: 12px;
    font-weight: 700;
}

.hv-year.active {
    background: #ef706c;
    color: white;
    padding: 9px 21px;
    font-size: 15px;
}

.hv-dash {
    color: #bbb;
}

/* Story content */
.hv-story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 55px;
    max-width: 900px;
    margin: auto;
}

.hv-story-image {
    height: 280px;
    border-radius: 45px 0 45px 0;
    overflow: hidden;
    background: #ededf8;
}

.hv-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hv-story-content h3 {
    font-family: Georgia, serif;
    font-size: 26px;
    color: #202044;
    margin: 0 0 18px;
}

.hv-story-content p {
    color: #777;
    font-size: 14px;
    line-height: 1.8;
}

/* CTA */
.hv-cta {
    text-align: center;
    padding-top: 55px;
}

.hv-cta h2 {
    font-family: Georgia, serif;
    color: #202044;
    margin-bottom: 10px;
}

.hv-cta p {
    color: #777;
    margin-bottom: 25px;
}

.hv-cta a {
    display: inline-block;
    padding: 13px 28px;
    border-radius: 8px;
    background: #29245c;
    color: white;
    text-decoration: none;
    font-weight: 700;
    transition: 0.25s ease;
}

.hv-cta a:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* Mobile */
@media (max-width: 768px) {

    .hv-about {
        padding: 30px 18px 50px;
    }

    .hv-hero-image {
        height: 260px;
        border-radius: 0 0 35px 0;
    }

    .hv-info {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 20px 10px 50px;
    }

    .hv-story {
        margin-left: -18px;
        margin-right: -18px;
        padding: 45px 20px 55px;
    }

    .hv-story-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hv-story-image {
        height: 240px;
    }

    .hv-timeline {
        gap: 7px;
    }

    .hv-dash {
        display: none;
    }
}