/* ================================
   ABOUT PAGE – BASE
================================ */



/* ================================
   SHARED HERO (used on About)
================================ */

.single-site-hero {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    
    overflow: hidden;
   min-height: 250px;
    max-height: 250px;
      border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

/* Background image */
.single-site-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position-y: top 40%;
    background-repeat: no-repeat;
    z-index: 0;
}

/* Content layer */
.company-hero-panel {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: inherit;
}



/* ================================
   ABOUT HERO – GLASS TITLE PANEL
================================ */

.page-about .company-hero-panel-inner {
    
    max-width: 450px;
   
    background: rgba(255, 255, 255, 0.04);
	backdrop-filter: blur(1px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.page-about .company-hero-title h1 {
    font-size: clamp(2rem, 4vw, 3rem);

   margin: 20px 20px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fff;
    text-shadow: 
    0 2px 4px rgba(0,0,0,0.6),
    0 6px 12px rgba(0,0,0,0.4);
}

.about-content-section{

    margin-bottom: 60px;

    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;

    background: white;             /* IMPORTANT → container surface */
  border-radius: 0 0 22px 22px;         /* rounded corners */
    overflow: hidden;              /* ⭐ this makes children respect radius */

    box-shadow: 0 20px 60px rgba(0,0,0,0.18);   /* modern floating card feel */
}





/* ===============================
LIFT SECTIONS
=============================== */

.about-lift {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
   
}

.about-lift + .about-lift {
    border-top: 1px solid #eee;
}

.about-lift-image img {
    width: 100%;
    height: auto;
    border-radius: 6px;
}

.about-lift-content h2 {
    font-size: 32px;
    margin-bottom: 18px;
}

.about-lift-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 28px;
    color: #444;
}


/* alternating layout */

.about-lift.position-right .about-lift-image {
    order: 2;
}

.about-lift.position-right .about-lift-content {
    order: 1;
}


/* ===============================
BUTTON
=============================== */

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: black;
    color: white;
    padding: 14px 26px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.25s;
}

.btn-primary:hover {
    background: #222;
    transform: translateY(-2px);
}

.btn-arrow {
    font-size: 22px;
    line-height: 1;
}
.page-about {
    background: #1f2a44;
    padding-bottom: 100px;
}


/* ===============================
MOBILE
=============================== */

@media (max-width: 900px) {

    .about-banner {
        height: auto;
        padding: 80px 0;
    }

    .about-main-title {
        font-size: 34px;
    }

    .about-intro {
        font-size: 16px;
    }

    .about-lift {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 20px 20px;
    }

    .about-lift.position-right .about-lift-image,
    .about-lift.position-right .about-lift-content {
        order: initial;
    }

    .about-lift-content h2 {
        font-size: 26px;
    }

    .page-about {
   
    padding-bottom: 0px;
}


.single-site-hero {
   
   min-height: 100px;
    max-height: 100px;

}


}