.elementor-115 .elementor-element.elementor-element-211af04{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-622a658 *//* --- Team Section Background --- */
.srishti-team-section {
    background-color: #f4f7fa; /* Light Grey Background */
    padding: 80px 20px;
    font-family: 'Poppins', sans-serif;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Header Styling --- */
.team-header {
    text-align: center;
    margin-bottom: 80px; /* Space for images to pop up */
}

.team-header h2 {
    font-size: 36px;
    color: #14213D; /* Brand Blue */
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.team-header p {
    color: #666;
    font-size: 16px;
}

/* --- Grid Layout --- */
.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

/* --- 3D Card Design --- */
.team-card {
    background: #ffffff;
    width: 350px;
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    margin-top: 50px; /* Important for floating image */
}

/* Hover Effect (Upar uthega) */
.team-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(20, 33, 61, 0.2);
}

/* --- Floating Image (3D Look) --- */
.img-box {
    width: 140px;
    height: 140px;
    margin: -100px auto 20px; /* Pulls image OUT of the card */
    border-radius: 50%;
    border: 5px solid #FCA311; /* Golden Border */
    background: #fff;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    transition: 0.4s;
}

.team-card:hover .img-box {
    border-color: #14213D; /* Hover pe border Blue ho jayega */
    transform: scale(1.05);
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Text Styling --- */
.content-box h3 {
    color: #14213D;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
}

.designation {
    display: block;
    color: #FCA311; /* Golden Text */
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.bio {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* --- Decorative Bottom Line --- */
.card-border-bottom {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: #14213D;
    transition: 0.4s;
    border-radius: 0 0 20px 20px;
}

.team-card:hover .card-border-bottom {
    width: 100%;
}

/* --- Mobile Responsive --- */
@media (max-width: 768px) {
    .team-grid {
        flex-direction: column;
        align-items: center;
    }
    .team-card {
        width: 100%;
        max-width: 320px;
        margin-top: 80px; /* Space between cards on mobile */
    }
}/* End custom CSS */