/* =================================================
   about.css  —  About Us Page Unique Component Styles
   Aberdeen Holdings
   ================================================= */

/* --- Subpage Inner Hero Banner (Identical to Contact Us Page Design) --- */
.page-hero {
    position: relative;
    padding: 250px 0 50px;
    color: var(--white-color);
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../assets/aberdeen-holdings-img-37.jpg');
    background-size: cover;
    background-position: center;
    transform: scale(1);
    animation: heroImageZoom 18s ease-in-out infinite alternate;
    z-index: 0;
}

@keyframes heroImageZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.06);
    }
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(270deg, rgb(40 67 120 / 45%) 0%, rgba(1, 79, 110, 0.25) 50%, rgb(0 0 0 / 65%) 100%);
    z-index: 1;
}

.page-hero-container {
    position: relative;
    z-index: 2;
}

/* Breadcrumb nav (Home | About Us) */
.breadcrumb-nav {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--white-color);
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 6px 18px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.breadcrumb-nav a {
    color: var(--white-color);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.breadcrumb-nav a:hover {
    color: var(--secondary-color);
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 60px;
    line-height: 1.1;
    color: var(--white-color);
    margin: 0;
}

@keyframes bannerFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Shared Global Typography & Elements (matching homepage styles) */
.about-tagline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary-color);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.about-tagline i {
    font-size: 13px;
}

.about-heading {
    font-size: 45px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--dark-color);
    margin-bottom: 18px;
    font-family: var(--font-heading);
}

.about-highlight {
    color: var(--primary-color);
}

.about-desc {
    font-size: 14px;
    color: var(--gray-color);
    line-height: 1.75;
}

/* --- Section 2: Reference Design Layout --- */
.about-section {
    background-color: var(--light-color);
    padding: 90px 0;
}

.about-hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-hero-left {
    display: flex;
    flex-direction: column;
}

.about-sub-content {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 20px 0px 30px;
}

.about-video-thumb {
    position: relative;
    width: 170px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about-video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: var(--dark-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(27, 191, 221, 0.4);
}

.about-video-play-btn:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    transform: translate(-50%, -50%) scale(1.1);
}

.about-check-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-dark);
}

.check-item i {
    color: var(--secondary-color);
    font-size: 16px;
}

.about-bottom-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

.about-call-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.call-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: rgba(27, 191, 221, 0.12);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.call-text {
    display: flex;
    flex-direction: column;
}

.call-label {
    font-size: 11px;
    color: var(--gray-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.call-number {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark-color);
    font-family: var(--font-heading);
}

/* RIGHT: Large Image with corner arrow action button */
.about-hero-right {
    position: relative;
    padding-right: 15px;
    padding-bottom: 15px;
}

.about-main-image-wrapper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.about-main-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    border-radius: 24px;
}

/* Floating circle arrow button - positioned at bottom right corner overlapping image cutout */
.floating-circle-arrow-btn {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background-color: var(--primary-color);
    border: 8px solid var(--white-color);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: var(--transition-smooth);
    z-index: 10;
}

.floating-circle-arrow-btn i {
    transform: rotate(0deg);
}

.floating-circle-arrow-btn:hover {
    background-color: var(--secondary-color);
    color: var(--dark-color);
    transform: scale(1.06);
}

/* --- Section 3: Redesigned Vision & Mission (Matching Reference Screenshot) --- */
.vm-new-section {
    background-color: #fff;
    padding: 90px 0;
}

.vm-new-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.vm-cards-stack {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Rounded White Content Cards */
.vm-box-card {
    background-color: var(--white-color);
    border-radius: 16px;
    padding: 35px 38px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.vm-box-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(1, 79, 110, 0.08);
    border-color: rgba(27, 191, 221, 0.3);
}

/* Header inside card (icon + title) */
.vm-box-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
}

.vm-box-icon {
    width: 55px;
    height: 55px;
    border-radius: 10px;
    background-color: #e6f9fc;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.vm-box-card:hover .vm-box-icon {
    background-color: var(--secondary-color);
    color: var(--dark-color);
}

.vm-box-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
}

.vm-box-desc {
    font-size: 14.5px;
    color: var(--gray-color);
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Faint background watermark icon inside card */
.vm-box-bg-icon {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 110px;
    color: rgba(0, 0, 0, 0.03);
    pointer-events: none;
    z-index: 1;
    line-height: 1;
    transition: var(--transition-smooth);
}

.vm-box-card:hover .vm-box-bg-icon {
    color: rgba(27, 191, 221, 0.08);
    transform: scale(1.08) rotate(-5deg);
}

/* RIGHT COLUMN: Stacked Photos */
.vm-new-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.vm-photo-wrapper {
    width: 100%;
    height: 270px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.07);
}

.vm-photo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.vm-photo-wrapper:hover img {
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .vm-new-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* --- Section 4: Acceptance, Inclusion, & Integration Modern 3-Pillar & Bento Layout --- */
.values-section {
    padding: 80px 0 90px;
    background-color: var(--light-color);
}

/* 3-Pillar Grid */
.values-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pillar-card {
    background: var(--white-color);
    border: 1fr solid var(--gray-light);
    border: 1px solid rgba(1, 79, 110, 0.1);
    border-radius: 24px;
    padding: 40px 32px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(1, 79, 110, 0.15);
    border-color: var(--secondary-color);
}

.pillar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.pillar-badge {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    color: var(--primary-color);
    background: rgba(1, 79, 110, 0.08);
    padding: 6px 16px;
    border-radius: 50px;
}

.pillar-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: rgba(27, 191, 221, 0.12);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.pillar-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.pillar-desc {
    font-family: var(--font-body);
    font-size: 14.5px;
    color: var(--gray-color);
    line-height: 1.65;
    margin-bottom: 24px;
    flex-grow: 1;
}

.pillar-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 20px;
}

.pillar-checklist li {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pillar-checklist li i {
    color: var(--secondary-color);
    font-size: 14px;
}

/* Featured Center Inclusion Card (Dark Navy Accent) */
.pillar-card.pillar-featured {
    background: linear-gradient(135deg, #070c16 0%, #014f6e 80%, #050912 100%);
    color: var(--white-color);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.pillar-card.pillar-featured .pillar-badge {
    background: rgba(27, 191, 221, 0.2);
    color: var(--secondary-color);
}

.pillar-card.pillar-featured .pillar-icon {
    background: var(--secondary-color);
    color: var(--dark-color);
}

.pillar-card.pillar-featured .pillar-title {
    color: var(--white-color);
}

.pillar-card.pillar-featured .pillar-desc {
    color: rgba(255, 255, 255, 0.8);
}

.pillar-card.pillar-featured .pillar-checklist {
    border-top-color: rgba(255, 255, 255, 0.12);
}

.pillar-card.pillar-featured .pillar-checklist li {
    color: var(--white-color);
}

/* Values Bento Grid */
.values-bento-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.v-bento-card {
    position: relative;
    background: var(--white-color);
    border: 1px solid rgba(1, 79, 110, 0.08);
    border-radius: 20px;
    padding: 35px 20px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.v-bento-card:hover {
    transform: translateY(-6px);
    border-color: var(--secondary-color);
    box-shadow: 0 15px 35px rgba(27, 191, 221, 0.16);
}

.v-step-tag {
    position: absolute;
    top: 14px;
    right: 16px;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 800;
    color: #cbd5e1;
    transition: color 0.3s ease;
}

.v-bento-card:hover .v-step-tag {
    color: var(--secondary-color);
}

.v-bento-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(27, 191, 221, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.v-bento-card:hover .v-bento-icon {
    background: var(--secondary-color);
    color: var(--dark-color);
    transform: scale(1.08);
}

.v-bento-title {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
    line-height: 1.3;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.v-bento-desc {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--gray-color);
    line-height: 1.55;
    margin: 0;
}

@media (max-width: 991px) {
    .values-pillars-grid {
        grid-template-columns: 1fr;
    }

    .values-bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .values-bento-grid {
        grid-template-columns: 1fr;
    }
}

.cta-v3-section {
    padding: 0px 0px 100px;
}

/* ============================================================
   Section 5: Our Story & Growth Journey — Card Slider Design
   ============================================================ */

.roadmap-slider-section {
    background-color: #ffffff;
    padding: 90px 0 0px;
    position: relative;
    overflow: hidden;
}

/* Slider section header row: title left, nav buttons right */
.slider-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

/* Nav arrow buttons container */
.slider-nav-btns {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-shrink: 0;
}

/* Individual arrow button */
.slider-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background-color: transparent;
    color: var(--primary-color);
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.slider-arrow:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(1, 40, 55, 0.22);
}

/* ---- Slider Viewport: full-width Swiper ---- */
.roadmap-slider-viewport {
    width: 100%;
    overflow: hidden;
    padding: 70px 0px 90px;
}

/* ---- Horizontal track ---- */
.roadmap-slider-track {
    display: flex;
    gap: 0;
}

/* ---- Individual card ---- */
.rm-card {
    flex: 0 0 290px;
    width: 290px;
    height: 350px;
    border-radius: 18px;
    background-color: var(--white-color);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
    border: 1.5px solid rgba(0, 0, 0, 0.05);
    overflow: visible;
    /* allows icon badge to pop above */
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: pointer;
    transition: transform 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease, border-color 0.35s ease;
}

.rm-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 55px rgba(1, 40, 55, 0.28);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* ---- Active card: only lifts slightly, no permanent dark background ---- */
.rm-card--active {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(1, 40, 55, 0.12);
}

/* ---- Top image container ---- */
.rm-card-img {
    position: relative;
    height: 190px;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    flex-shrink: 0;
}

.rm-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.rm-card:hover .rm-card-img img {
    transform: scale(1.07);
}

/* Year badge pill on top of image */
.rm-year-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background-color: rgba(1, 40, 55, 0.78);
    color: var(--white-color);
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    backdrop-filter: blur(6px);
    letter-spacing: 0.4px;
    transition: background-color 0.3s ease;
}

.rm-card:hover .rm-year-tag {
    background-color: var(--secondary-color);
    color: var(--dark-color);
}

/* ---- Floating circular icon badge ---- */
.rm-icon-badge {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background-color: #e8f5f2;
    /* light brand-tinted fill for default */
    border: 4px solid var(--white-color);
    color: var(--primary-color);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: -34px auto 0;
    /* overlap the image bottom by half */
    z-index: 5;
    box-shadow: 0 6px 20px rgba(1, 40, 55, 0.15);
    transition: background-color 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
    flex-shrink: 0;
}

.rm-card:hover .rm-icon-badge {
    background-color: #1bbfdd;
    color: var(--white-color);
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
}

/* ---- Card content body ---- */
.rm-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    flex-grow: 1;
}

.rm-card-date {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 6px;
    display: block;
    transition: color 0.3s ease;
}

.rm-card:hover .rm-card-date {
    color: var(--secondary-color);
}

.rm-card-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.35;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.rm-card:hover .rm-card-title {
    color: var(--white-color);
}

.rm-card-desc {
    font-size: 13.5px;
    color: var(--gray-color);
    line-height: 1.6;
    margin-bottom: 0px;
    text-align: center;
    transition: color 0.35s ease;
}

.rm-card:hover .rm-card-desc {
    color: rgba(255, 255, 255, 0.8);
}


/* ---- Responsive: smaller padding on tablets ---- */
@media (max-width: 1200px) {
    .roadmap-slider-track {
        padding: 0 40px 10px;
    }
}

@media (max-width: 768px) {
    .rm-card {
        flex: 0 0 260px;
        width: 260px;
    }

    .roadmap-slider-track {
        padding: 0 20px 10px;
    }

    .slider-head {
        flex-direction: column;
        align-items: flex-start;
    }
}