    /* About Page Specific Styles */

/* Page Title Section */
.page-title-section {
    /*background-color: var(--secondary-color);*/
    background:  linear-gradient(135deg, black 100%,  black 100%, #0f172a 100%, black 100%);
    background-size: cover;
    color: white;
    padding: 60px 0;
    position: relative;
    margin-bottom: 60px;
    overflow: hidden;
    height: 400px;
    margin-bottom: 60px;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 20px;
    justify-content: center;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-item a:hover {
    color: white;
}

.breadcrumb-item.active {
    color: white;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
    opacity: 0.9;
    font-weight:bolder;
}

.page-subtitle {
    max-width: 800px;
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 15px auto 0;
}

/* Company Story Section */
.company-story-section {
    padding: 0 0 80px;
}

.story-content h2 {
    color: var(--secondary-color);
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.story-content .lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.story-content p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: var(--grey-color);
}

.story-milestones {
    margin-top: 40px;
    position: relative;
}

.story-milestones::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 22px;
    width: 2px;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.milestone {
    display: flex;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.milestone:last-child {
    margin-bottom: 0;
}

.milestone-year {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-weight: 600;
    flex-shrink: 0;
    margin-right: 20px;
}

.milestone-content h5 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.milestone-content p {
    font-size: 0.95rem;
    margin: 0;
}

.story-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    height: 450px;
    width:800px;
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stats-card {
    display: flex;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 25px;
    position: absolute;
    bottom: -30px;
    right: -30px;
    max-width: 80%;
}

.stats-item {
    flex: 1;
    text-align: center;
    padding: 0 15px;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.stats-item:last-child {
    border-right: none;
}

.stats-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stats-label {
    font-size: 0.85rem;
    color: var(--grey-color);
}

/* Vision & Mission Section */
.vision-mission-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.vision-card,
.mission-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 40px;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    border-radius: 10px;
    margin-bottom: 20px;
}

.vision-card .card-icon {
    background-color: rgba(0, 78, 152, 0.1);
    color: var(--secondary-color);
}

.mission-card .card-icon {
    background-color: rgba(255, 107, 53, 0.1);
    color: var(--primary-color);
}

.vision-card h2,
.mission-card h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.vision-card h2 {
    color: var(--secondary-color);
}

.mission-card h2 {
    color: var(--primary-color);
}

.vision-card p,
.mission-card p {
    line-height: 1.7;
    color: var(--grey-color);
    margin-bottom: 15px;
}

.vision-graphic {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.graphic-item {
    display: flex;
    align-items: center;
    background-color: rgba(0, 78, 152, 0.05);
    padding: 10px 15px;
    border-radius: 50px;
}

.graphic-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 0.9rem;
}

.graphic-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--secondary-color);
}

.mission-pillars {
    margin-top: 30px;
}

.pillar-item {
    display: flex;
    margin-bottom: 20px;
}

.pillar-item:last-child {
    margin-bottom: 0;
}

.pillar-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.3;
    margin-right: 20px;
    line-height: 1;
}

.pillar-content h5 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.pillar-content p {
    font-size: 0.95rem;
    margin: 0;
}

/* Our Values Section */
.values-section {
    padding: 80px 0;
}

.section-title {
    margin-bottom: 50px;
}

.section-title h2 {
    color: var(--secondary-color);
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--grey-color);
    max-width: 700px;
    margin: 15px auto 0;
}

.value-box {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 35px 25px;
    height: 100%;
    text-align: center;
    transition: var(--transition);
    position: relative;
    top: 0;
}

.value-box:hover {
    top: -10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border-radius: 50%;
    font-size: 2rem;
    transition: var(--transition);
}

.value-box:nth-child(1) .value-icon {
    background-color: rgba(0, 78, 152, 0.1);
    color: var(--secondary-color);
}

.value-box:nth-child(2) .value-icon {
    background-color: rgba(255, 107, 53, 0.1);
    color: var(--primary-color);
}

.value-box:nth-child(3) .value-icon {
    background-color: rgba(46, 196, 182, 0.1);
    color: var(--accent-color);
}

.value-box:nth-child(4) .value-icon {
    background-color: rgba(231, 29, 54, 0.1);
    color: #E71D36;
}

.value-box:hover .value-icon {
    transform: rotateY(180deg);
}

.value-box h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.value-box p {
    color: var(--grey-color);
    margin-bottom: 0;
    line-height: 1.6;
}

/* What Sets Us Apart Section */
.differentiator-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.differentiator-content h2 {
    color: var(--secondary-color);
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.differentiator-content .lead {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.differentiator-list {
    margin-bottom: 30px;
}

.differentiator-item {
    display: flex;
    margin-bottom: 30px;
}

.differentiator-item:last-child {
    margin-bottom: 0;
}

.item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: white;
    color: var(--primary-color);
    border-radius: 50%;
    font-size: 1.3rem;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.item-content h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.item-content p {
    color: var(--grey-color);
    margin-bottom: 0;
    line-height: 1.6;
}

.differentiator-image {
    position: relative;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 15px;
    height: 450px;
}

.grid-item {
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.grid-item:hover img {
    transform: scale(1.1);
}

.item-1 {
    grid-column: 1 ;
    grid-row: 1 ;
}

.item-2 {
    grid-column: 3 / 5;
    grid-row: 1 / 3;
}

.item-3 {
    grid-column: 1 / 5;
    grid-row: 3 / 5;
}

/* Meet Our Leaders Section */
.leadership-section {
    padding: 80px 0;
}

.leader-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    height: 100%;
    transition: var(--transition);
}

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

.leader-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.leader-card:hover .leader-image img {
    transform: scale(1.1);
}

.leader-social {
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: flex;
    gap: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--secondary-color);
    border-radius: 50%;
    font-size: 1rem;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.leader-info {
    padding: 30px;
}

.leader-info h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.leader-position {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 500;
}

.leader-info p {
    color: var(--grey-color);
    margin-bottom: 15px;
    line-height: 1.7;
}

.leader-quote {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    position: relative;
    margin-top: 25px;
}

.leader-quote i {
    position: absolute;
    top: -15px;
    left: 20px;
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.2;
}

.leader-quote blockquote {
    margin: 0;
    font-style: italic;
    color: var(--dark-color);
    font-size: 0.95rem;
}

/* Certifications & Partnerships Section */
.certifications-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.certification-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    /* background-color: white; */
    background-color:#22324F;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    width: 30%;
}

.logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}


.twhite{
    color:white !important
}
.logo-item img {
    max-width: 100%;
    max-height: 80px;
    filter: grayscale(100%);
    opacity: 1;
    
    transition: var(--transition);
}

.logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* CTA Section */
.about-cta-section {
    padding: 100px 0;
}

.cta-container {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    padding: 50px;
    border-radius: var(--border-radius);
    color: white;
    box-shadow: var(--box-shadow);
}

.cta-container h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-container p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.cta-container .btn {
    padding: 12px 30px;
    font-weight: 600;
    background-color: white;
    color: var(--primary-color);
    border: none;
    transition: var(--transition);
}

.cta-container .btn:hover {
    background-color: var(--accent-color);
    color: white;
    transform: translateY(-5px);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .stats-card {
        position: relative;
        bottom: auto;
        right: auto;
        max-width: 100%;
        margin-top: -30px;
    }
    
    .vision-card,
    .mission-card {
        padding: 30px;
    }
    
    .image-grid {
        height: 400px;
    }
    
    .leader-image {
        height: 250px;
    }
    
    .cta-container {
        padding: 35px;
    }
}

@media (max-width: 767px) {
    .image-frame {
        width:100%;
        height: 450px;
    }
    .page-title-section {
        padding: 50px 0;
        margin-bottom: 40px;
        height:400px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .story-content .lead {
        font-size: 1.2rem;
    }
    
    .stats-card {
        flex-direction: column;
        gap: 20px;
    }
    
    .stats-item {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        padding: 0 0 20px;
    }
    
    .stats-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .image-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(1, 1fr);
        height: auto;
        gap: 15px;
    }
    
    .item-1 {
        grid-column: 1;
        grid-row: 1;
    }
    
    .item-2 {
        grid-column: 1;
        grid-row: 2;
    }
    
    .item-3 {
        grid-column: 1;
        grid-row: 3;
    }
    
    .grid-item {
        height: 200px;
    }
    
    .leader-card {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .certification-logos {
        gap: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;

    }
    .logo-item{
        width: 80%;
    }

    
    .cta-container {
        padding: 30px 20px;
        text-align: center;
    }
    
    .cta-container .btn {
        margin-top: 20px;
    }
}

@media (max-width: 575px) {
    .story-content h2,
    .differentiator-content h2,
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .vision-card,
    .mission-card {
        padding: 25px 20px;
    }
    
    .value-box {
        padding: 25px 20px;
    }
    
    .leader-info {
        padding: 25px 20px;
    }
}