/*******************************/
/******* Page Header CSS *******/
/*******************************/
.page-header_about {
    position: relative;
    /* margin-bottom: 45px; */
    padding: 210px 0 90px 0;
    text-align: center;
    background:url("https://images.unsplash.com/photo-1511795409834-ef04bbd61622");
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header_about h2 {
    position: relative;
    color: #FDBE33;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 5px;
}

.page-header_about h2::after {
    position: absolute;
    content: "";
    width: 100px;
    height: 2px;
    left: calc(50% - 50px);
    bottom: 0;
    background: #FDBE33;
}

.page-header_about a {
    position: relative;
    padding: 0 12px;
    font-size: 22px;
    color: #ffffff;
}

.page-header_about a:hover {
    color: #FDBE33;
}

.page-header_about a::after {
    position: absolute;
    content: "/";
    width: 8px;
    height: 8px;
    top: -2px;
    right: -7px;
    text-align: center;
    color: #ffffff;
}

.page-header_about a:last-child::after {
    display: none;
}

@media (max-width: 991.98px) {
    .page-header_about {
        padding: 60px 0;
    }
    
     .page-header_about h2 {
        font-size: 45px;
    }
    
     .page-header_about a {
        font-size: 20px;
    }
}

@media (max-width: 767.98px) {
    .page-header_about {
        padding: 45px 0;
    }
    
    .page-header_about h2 {
        font-size: 35px;
    }
    
    .page-header_about a {
        font-size: 18px;
    }
}

/* Story Section */
.story {
    padding: 50px;
    text-align: center;
}
.story h2 {
    margin-bottom: 20px;
}
/* Cards */
.about_cards {
    display: flex;
    gap: 20px;
    padding: 40px;
    justify-content: center;
}
.about_card {
    background: white;
    padding: 10px;
    border-radius: 10px;
    width: 250px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.about_card h3 {
    margin-bottom: 5px;
}
.about_card p {
    margin-top: 0px
}
/* Button Styling */
.connect-btn {
    background: linear-gradient(135deg, #a855f7);
    color: white;
    border: none;
    padding: 18px 30px;
    font-size: 20px;
    font-weight: bold;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;  
}
.connect-btn a {
    text-decoration: none;
    color: white;
}
