/* ===== ACTIVE NAV LINK ===== */
.nav-links a.active {
    color: var(--teal);
}

.nav-links a.active::after {
    width: 100%;
}

/* ===== PAGE HERO BANNER ===== */
.page-hero {
    min-height: 600px;
    background:
        linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)),
        url('../images/About-Us.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 20px 80px;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 80px;
    left: 40px;
    width: 80px;
    height: 80px;
    border-top: 1px solid rgba(0,128,128,0.5);
    border-left: 1px solid rgba(0,128,128,0.5);
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: 80px;
    height: 80px;
    border-bottom: 1px solid rgba(232,119,34,0.5);
    border-right: 1px solid rgba(232,119,34,0.5);
}

.page-hero-sub {
    font-size: 11px;
    letter-spacing: 4px;
    color: var(--orange);
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.page-hero h1 {
    font-family: var(--font-heading);
    font-size: 58px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.page-hero h1 span {
    color: var(--teal);
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 13px;
    color: #aaaaaa;
}

.breadcrumb a {
    color: #aaaaaa;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--teal);
}

.breadcrumb span {
    color: var(--orange);
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 110px 20px;
    background-color: var(--bg-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-image {
    position: relative;
    overflow: visible;
    border-radius: 6px;
}

.about-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 20px 60px rgba(0,128,128,0.15);
    transition: transform 0.5s ease;
}

.about-image::before {
    content: 'Krishna Metal Industries';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0,128,128,0.85),
        rgba(232,119,34,0.85)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-align: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    border-radius: 6px;
}

.about-image:hover::before {
    opacity: 1;
}

.about-image:hover img {
    transform: scale(1.08);
}

.experience-badge {
    position: absolute;
    bottom: -25px;
    right: -25px;
    background: linear-gradient(135deg, var(--teal-dark), var(--teal));
    color: #ffffff;
    padding: 25px 30px;
    border-radius: 6px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,128,128,0.3);
}

.experience-badge h3 {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
    color: #ffffff;
}

.experience-badge p {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    margin-top: 5px;
}

.about-text p {
    color: var(--text-grey);
    font-size: 15px;
    line-height: 2;
    margin-bottom: 20px;
}

.about-points {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-points li {
    color: var(--text-mid);
    font-size: 14px;
    font-weight: 500;
    padding: 10px 15px;
    background: var(--bg-mid);
    border-left: 3px solid var(--teal);
    border-radius: 0 4px 4px 0;
    transition: all 0.3s ease;
}

.about-points li:hover {
    background: var(--bg-card-hover);
    border-left-color: var(--orange);
    padding-left: 20px;
}

/* ===== GROW TOGETHER ===== */
.grow-together {
    padding: 110px 20px;
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.grow-together::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
}

.grow-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 70px;
    align-items: center;
}

.grow-text p {
    color: var(--text-grey);
    font-size: 15px;
    line-height: 2;
    margin-bottom: 20px;
}

.grow-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.grow-stat {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0,128,128,0.06);
    transition: all 0.3s ease;
}

.grow-stat:hover {
    border-color: var(--teal);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,128,128,0.12);
}

.grow-stat h3 {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--teal);
    line-height: 1;
}

.grow-stat p {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-grey);
    margin-top: 8px;
    font-weight: 600;
}

/* ===== OUR ADVANTAGE ===== */
.advantage {
    padding: 110px 20px;
    background-color: var(--bg-white);
    text-align: center;
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 960px;
    margin: 0 auto;
}

.advantage-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 35px 25px;
    transition: all 0.35s ease;
    box-shadow: 0 2px 15px rgba(0,128,128,0.06);
    position: relative;
    overflow: hidden;
}

.advantage-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--teal), var(--orange));
    transform: scaleX(0);
    transition: transform 0.35s ease;
}

.advantage-item:hover::after {
    transform: scaleX(1);
}

.advantage-item:hover {
    border-color: var(--teal);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,128,128,0.12);
}

.advantage-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.advantage-item h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 1px;
    text-transform: uppercase;
}