﻿.aboutus-main-section {
    background: url('../sysimage/AboutUs/main-banner-back.png') no-repeat;
    background-size: cover;
}

.core-value-section {
    background: url('../sysimage/AboutUs/core-value-back.png') no-repeat;
    background-size: cover;
    padding: 50px 0px;
}

.card-box {
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: 0.3s ease;
}

    .card-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

.mission-header {
    background-color: #f8b0b3;
    color: #000;
    font-weight: bold;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 3.25rem;
}

.vision-header {
    background-color: #b4e8a7;
    color: #000;
    font-weight: bold;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 3.25rem;
}

.card-body {
    padding: 40px !important;
    font-size: 18px;
}

.icon-img {
    width: 50px;
    height: 50px;
}



@media (max-width: 768px) {
    .mobileview {
        text-align: center;
    }
}



.serve-card {
    background: #f2f2f2;
    padding: 40px 30px;
    border-radius: 15px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

    .serve-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        background: #fff;
    }

        .serve-card:hover .serve-title {
            color: #EA1D25 !important;
        }

        .serve-card:hover .img-hover {
            background: #04273D;
            padding: 10px;
            border-radius: 10px;
        }
        .serve-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            position: relative;
            overflow: hidden;
        }

    .serve-icon::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    }

    .serve-icon i {
        color: white;
        font-size: 2rem;
        z-index: 1;
        position: relative;
    }

.serve-card.startup .serve-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.serve-card.small-business .serve-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.serve-card.mid-market .serve-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.serve-card.enterprise .serve-icon {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.icon-back {
    background: #CACCD1;
    border-radius: 10px;
    width: 32%;
    height: 23%;
    padding: 15px;
    text-align: center;
}
.img-defult {
    padding: 10px;
    border-radius: 10px;
}
.serve-card:hover .icon-back {
    background: #000;
}

.img-hover {
    display: none;
}

.serve-card:hover .img-hover {
    display: block;
}

.serve-card:hover .img-defult {
    display: none;
}

.serve-title {
    color: #2d3436;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.serve-description {
    color: #636e72;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 0;
}



@media (max-width: 768px) {
    .serves-section {
        padding: 60px 0;
    }

    .serve-card {
        padding: 30px 20px;
        margin-bottom: 30px;
    }

    .serve-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

        .serve-icon i {
            font-size: 1.8rem;
        }

    .serve-title {
        font-size: 1.3rem;
    }

    .serve-description {
        font-size: 18px;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .section-title {
        margin-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .serve-card {
        padding: 25px 15px;
    }

    .serve-icon {
        width: 60px;
        height: 60px;
    }

        .serve-icon i {
            font-size: 1.5rem;
        }

    .serve-title {
        font-size: 1.2rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }
}

/*Our team css start*/
.team-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px 0px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
}

.team-image {
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

    .team-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.4s ease;
        filter: grayscale(20%);
    }


.team-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.team-card:hover .team-name {
    color: #667eea;
    transform: translateY(-2px);
}

.team-position {
    font-size: 1rem;
    color: #666;
    transition: all 0.1s ease;
}
/* Shine effect on image */
.team-image {
    position: relative;
    overflow: hidden;
}

    .team-image::after {
        content: "";
        position: absolute;
        top: 0;
        left: -75%;
        width: 50%;
        height: 100%;
        background: linear-gradient( 120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100% );
        transform: skewX(-20deg);
        opacity: 0;
        pointer-events: none;
    }

.team-card:hover .team-image::after {
    animation: shineImage 1s ease-in-out forwards;
    opacity: 1;
}

/* Shine animation keyframes */
@keyframes shineImage {
    0% {
        left: -75%;
    }

    100% {
        left: 125%;
    }
}


/* Responsive Design */
@media (max-width: 768px) {


    .team-card {
        margin-bottom: 25px;
        padding: 25px 15px;
    }

    .team-name {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {

    .team-card {
        padding: 20px 10px;
    }
}

.projrct-bg {
    background: url('../sysimage/AboutUs/project_back.png') no-repeat;
    background-size: cover;
    padding: 60px;
    border-radius: 20px;
}

.stats-section {
    padding: 0px 20px;
    max-width: 1400px;
}

.stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.stat-box {
    flex: 1 1 150px;
    min-width: 230px;
    text-align: center;
    padding: 10px 15px;
}

    .stat-box h3 {
        font-size: 22px;
        color: #e03c31 !important;
        font-weight: 700;
        margin: 0 0 5px;
    }

    .stat-box p {
        font-size: 14px;
        color: #fff;
        margin: 0;
        font-weight: 500;
    }

@media (max-width: 768px) {
    .divider {
        display: none;
    }
        .stat-box:last-child {
            border-bottom: none;
        }

    /*.mobileview {
        text-align: center;
    }*/
}

.build-section-padding {
    margin-top: 82px;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.event-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    transition: transform 0.3s ease;
    height: 300px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

    .event-card.large {
        height: 615px;
    }

    .event-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .event-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

        .event-card:hover img {
            transform: scale(1.1);
        }

.event-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: white;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
    transition: background 0.3s ease;
    text-align: start;
}

.event-card:hover .event-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

.sub-text {
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
}

.event-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #dc3545;
    color: white;
    font-weight: bold;
    padding: 10px 12px;
    border-radius: 8px;
    text-align: center;
    font-size: 18px;
    line-height: 1;
    min-width: 55px;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

    .event-date small {
        display: block;
        font-size: 12px;
        font-weight: normal;
        margin-top: 2px;
        text-transform: uppercase;
    }

/* Responsive Design */
@media (max-width: 768px) {
    .events-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .event-card,
    .event-card.large {
        height: 250px;
    }

    .event-date {
        font-size: 16px;
        padding: 8px 10px;
        min-width: 50px;
    }

    .event-overlay {
        padding: 15px;
    }

        .event-overlay h5 {
            font-size: 1rem;
        }
}

@media (max-width: 480px) {
    .events-grid {
        grid-template-columns: 1fr;
    }

    .event-card,
    .event-card.large {
        height: 220px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1025px) {
    .events-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
