/* about.css - Specific styles for the About Us page giving it a unique feel */

/* -------------------------------
   HERO & INTRO
---------------------------------*/
.about-hero {
    background-color: #121f3a;
    background-image: linear-gradient(rgba(18, 31, 58, 0.75), rgba(18, 31, 58, 0.85)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&q=80&w=1920');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 45vh;
    min-height: 400px;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, white, transparent);
    z-index: 1;
}

.z-index-2 {
    z-index: 2;
    position: relative;
}

.text-shadow-lg {
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.intro-title {
    color: #333;
    letter-spacing: -1px;
}

.text-highlight {
    position: relative;
    display: inline-block;
    z-index: 1;
}

/* Simulated marker highlight effect */
.text-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -5%;
    width: 110%;
    height: 35%;
    background-color: rgba(26, 115, 232, 0.15);
    z-index: -1;
    border-radius: 4px;
    transform: rotate(-1deg);
}

/* Avatar Group */
.avatar-group {
    display: flex;
    align-items: center;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    margin-right: -15px;
    transition: transform 0.2s;
}

.avatar:hover {
    transform: translateY(-5px);
    z-index: 10;
}

.play-btn-small {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #121f3a;
    color: white;
    justify-content: center;
    align-items: center;
    z-index: 10;
    margin-left: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.play-btn-small:hover {
    background-color: #1a73e8;
    transform: scale(1.1);
}

/* -------------------------------
   ABOUT COTE 
---------------------------------*/
.about-main-img {
    border-radius: 20px;
    transition: transform 0.4s ease;
}

.about-main-img:hover {
    transform: scale(1.02);
}

.floating-badge {
    z-index: 5;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-badge:hover {
    transform: translate(-50%, -10px) !important;
}

.check-list i {
    color: #121f3a;
}

/* -------------------------------
   MISSION SPLIT LAYOUT
---------------------------------*/
.mission-img {
    background-color: #121f3a;
    background-image: url('https://images.unsplash.com/photo-1542744173-8e7e53415bb0?auto=format&fit=crop&q=80&w=1200');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 450px;
}

.mission-content {
    background-color: #0c152a;
    /* Slightly darker than primary for difference */
}

/* A unique overlapping rounded style for the mission block on desktop */
@media(min-width: 768px) {
    .mission-section .row {
        background-color: #0c152a;
        border-radius: 30px;
        overflow: hidden;
    }

    .mission-content {
        background: transparent;
    }

    .mission-img {
        border-top-left-radius: 30px;
        border-bottom-left-radius: 30px;
    }
}

.mission-underline {
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 40px;
    height: 4px;
    background-color: #1a73e8;
    border-radius: 2px;
}

.btn-mission-next {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    color: #0c152a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(50%, -50%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    transition: 0.3s;
    z-index: 10;
}

.btn-mission-next:hover {
    background: #1a73e8;
    color: white;
}

@media(max-width: 767px) {
    .btn-mission-next {
        right: 50%;
        top: 100%;
        transform: translate(50%, -50%);
    }
}

/* -------------------------------
   UNIQUE JOIN LAYOUT
---------------------------------*/
.unique-join {
    overflow: hidden;
}

.join-card {
    padding: 35px 25px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.join-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.join-card.dark-theme {
    background: #121f3a;
    color: white;
}

.join-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.join-center-img {
    width: 100%;
    max-width: 420px;
    height: 520px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: 0.5s;
}

.play-btn-large {
    width: 85px;
    height: 85px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

.play-btn-large:hover {
    transform: scale(1.1);
}

/* Overlapping effect */
@media(min-width: 992px) {
    .overlap-left {
        left: 40px;
    }

    .overlap-right {
        right: 40px;
    }
}

/* -------------------------------
   CORE VALUES & PHILOSOPHY
---------------------------------*/
.text-outline-primary {
    color: transparent;
    -webkit-text-stroke: 1px #121f3a;
    font-weight: 800;
}

.border-start-custom {
    border-left: 4px solid #121f3a !important;
}

.hover-tilt {
    transition: transform 0.3s;
}

.hover-tilt:hover {
    transform: rotate(2deg) scale(1.03);
}

/* -------------------------------
   JOURNEY BANNER
---------------------------------*/
.journey-banner {
    background: #091224;
    /* Very dark blue */
    overflow: hidden;
}

.journey-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 2px, transparent 2px);
    background-size: 25px 25px;
    z-index: 1;
}

.journey-icon-wrap {
    width: 80px;
    height: 80px;
}

/* -------------------------------
   ANIMATIONS
---------------------------------*/
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

.hover-up {
    transition: transform 0.3s ease;
}

.hover-up:hover {
    transform: translateY(-8px);
}

/* Customized Accordion border diff */
.unique-accordion .accordion-button {
    border-bottom: 1px solid #eee;
}

.unique-accordion .accordion-button:not(.collapsed) {
    border-left: 4px solid #1a73e8;
    background-color: white;
}