

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Hadley', sans-serif;
    background: #111;
}



/* Main layout */
.about-page {
    display: flex;
    width: 100%;
    height: 100vh;
    background: url("images/About page background.png") center center/cover no-repeat;
    z-index: 1;
position: relative;
 min-height: 100vh;
}

/* Left side */
.about-left {
    width: 45%;
    padding: 40px 100px;
    position: relative;
     z-index: 1;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(8px);
}

/* Right image */
.about-right {
    width: 55%;
    height: 100vh;
    position: relative;
     z-index: 1;

     opacity: 0;
    transform: translateX(120px) scale(1.05);
}

.about-page.in-view .about-right {
    animation: aboutImageReveal 1.5s ease forwards;
    animation-delay: 0.6s;
}

@keyframes aboutImageReveal {
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.about-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    position: relative;
}



/* Content */
.about-content {
    margin-top: 120px;

    opacity: 0;
    transform: translateX(-80px);
}

.about-page.in-view .about-content {
    animation: aboutTextReveal 1.3s ease forwards;
    animation-delay: 0.8s;
}

@keyframes aboutTextReveal {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


.about-content .tag {
     color: #ff7a1a;
    font-size: 35px;   /* increase font */
    letter-spacing: 2px;
    position: relative;
    top: 20px;   /* 1 inch approx down */
}


.about-content h1 {
    font-size: 56px;
    font-weight: 100;
    line-height: 1.1;
    letter-spacing: -1.2px;
    position: relative;
top: 50px;
    color: rgba(210, 210, 210, 0.85);

     opacity: 0;
    transform: translateY(120px);
    animation: textReveal 1.5s ease forwards;
    animation-delay: 1.1s;

}

.about-content .line {
    width: 140px;
    height: 2px;
    margin: 55px 0;
    top: 25px;
 position: relative;
   background: linear-gradient(
    to right,
    #ff7a1a 0%,
    rgba(255,122,26,0.4) 70%,
    transparent 100%
);
}

.about-content p {
    font-size: 17px;
    font-weight: 100;
    letter-spacing: 1.2px;
    line-height: 1.35;
    color: rgba(229,220,211,0.85);
    max-width: 620px;

     position: relative;
top: 10px;

    color: #e5dcd3 !important;
     opacity: 0;
    transform: translateX(-80px);
    animation: paraReveal 1.2s ease forwards;
    animation-delay: 1.8s;

}

/* Feature box */
.stats-box {
    position: relative;
    margin-top: 55px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    width: 100%;
    max-width: 620px;
    padding: 30px 28px;
    gap: 25px;
    border-radius: 24px;

    background: rgba(255, 255, 255, 0.025);
    backdrop-filter: blur(35px) saturate(180%);
    -webkit-backdrop-filter: blur(35px) saturate(180%);

    border: 1px solid rgba(255,255,255,0.12);

    box-shadow:
        inset 0 1px 1px rgba(255,255,255,0.12),
        inset 0 -4px 15px rgba(255,255,255,0.03),
        0 10px 40px rgba(0,0,0,0.22);

    overflow: hidden;

    opacity: 0;
    transform: translateY(50px);
}

.about-page.in-view .stats-box {
    animation: statsReveal 1.2s ease forwards;
    animation-delay: 1.2s;
}

@keyframes statsReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }


}

.stats-box::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 32px;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0.18) 0%,
            rgba(255,255,255,0.04) 15%,
            transparent 35%
        );

    pointer-events: none;
}

.stats-box::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 32px;

    border: 1px solid rgba(255,255,255,0.18);

    box-shadow:
        0 0 10px rgba(255,170,90,0.15),
        0 0 20px rgba(255,140,40,0.08),
        inset 0 0 10px rgba(255,255,255,0.05);

    pointer-events: none;
}
.stats-box .glow-top {
    position: absolute;
    top: -8px;
    left: 120px;
    width: 60px;
    height: 8px;
    background: #fff;
    filter: blur(10px);
    opacity: 0.8;
}

.stats-box .glow-bottom {
    position: absolute;
    bottom: -8px;
    left: 80px;
    width: 70px;
    height: 8px;
    background: #ff9a40;
    filter: blur(12px);
    opacity: 0.9;
}

.stats-box .glow-right {
    position: absolute;
    top: 15px;
    right: 140px;
    width: 50px;
    height: 8px;
    background: #ff9a40;
    filter: blur(10px);
    opacity: 0.9;
}
.stat-item {
    flex: 1;
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 10%;
    right: -20px;
    width: 1px;
    height: 80%;

    background: linear-gradient(
        to bottom,
        transparent,
        rgba(255,255,255,0.2),
        transparent
    );
}


.stat-item h2 {
    font-size: 28px;
    font-weight: 150;
    color: #ffffff;
    margin-bottom: 8px;
}

.stat-item p {
     font-size: 15px;
    font-weight: 200;
    letter-spacing: 0.2px;
    line-height: 1.5;
     margin-top: 0 px;
    color: rgba(255,255,255,0.75);
}

.stat-icon {
    width:55px;
    height:55px;
    border-radius:50%;
    margin-bottom:25px;

    display:flex;
    justify-content:center;
    align-items:center;

    background:rgba(255,255,255,0.03);
    backdrop-filter:blur(18px) saturate(180%);
    border:1px solid rgba(255,255,255,0.08);

    color:#ff7a1a;
    overflow:hidden;
}

.stat-icon svg{
    width:29px;
    height:29px;
    fill: currentColor;
}

.stat-icon::before {
    content: "";
    position: absolute;
    top: 6px;
    left: 10px;
    width: 28px;
    height: 10px;

    background: rgba(255,255,255,0.45);
    border-radius: 50px;

    filter: blur(8px);
}
