    .ourteam-section {
        padding-top: 100px;
    }

    .ourteam-section .ourteam-intro {
        display: flex;
        align-items: baseline;
    }

    .ourteam-section .ourteam-intro .team-intro-p {
        font-size: 24px;
        font-weight: bold;
        color: #3a54a4;
        padding-right: 8px;
    }

    .ourteam-section .ourteam-title {
        font-size: 48px;
    }

    /* Enhanced Member Card Styles */
    .ourteam-section .member-info {
        position: relative;
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
        cursor: pointer;
        transition: transform 0.3s ease;
    }

    .ourteam-section .member-info:hover {
        transform: translateY(-5px);
    }

    .member-image-container {
        position: relative;
        overflow: hidden;
        border-radius: 12px 12px 0 0;
        max-height: 410px;
        overflow: hidden;
    }

    .ourteam-section .our-team .member-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.3s ease;
    }

    .member-image-container:hover .member-img {
        transform: scale(1.05);
    }

    /* Image Title Overlay */
    .image-title {
        position: absolute;
        background-color: #2bbdbd;
        color: #ffffff;
        top: 70%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 16px;
        border-top-left-radius: 151px;
        z-index: 5;
        transition: all 0.5s ease;
        padding: 12px 12px 12px 22px;
    }

    .image-description {
        opacity: 0;
        position: absolute;
        color: #ffffff !important;
        top: 80%;
        z-index: 5;
        transition: all 0.5s ease;
        padding: 12px 12px 12px 22px;
        font-weight: 500;

    }

    /* Hover Overlay with Icon */
    .member-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #0d132696;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        border-radius: 12px 12px 0 0;
    }

    .member-image-container:hover .member-overlay {
        opacity: 1;
        visibility: visible;
    }

    .member-image-container:hover .image-title {
        top: 10%;
    }

    .member-image-container:hover .image-description {
        top: 40%;
        opacity: 1;
    }

    .view-details-btn {
        background: var(--primary-color);
        border: none;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        align-items: center;
        position: absolute;
        bottom: 30px;
        left: 30px;
        transform: rotate(-45deg);

    }

    .view-details-btn:hover {
        transform: scale(1.1) rotate(-45deg);
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    }

    .view-details-btn svg {
        font-size: 16px !important;
        color: var(--accent-color);
    }

    /* Member Info Below Image */
    .member-details {
        padding: 20px 0;
        text-align: center;
    }

    .ourteam-section .member-info .member-name {
        font-size: clamp(1.125rem, 1rem + 0.7vw, 1.5rem) !important;
        font-weight: 700;
        color: #1a0009;
        margin-bottom: 8px;
    }


    /* Modal Styles */
    .member-modal {
        display: none;
        position: fixed;
        z-index: 9999;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(5px);
    }

    .modal-content {
        background-color: #F2F2F3;
        margin: 8% auto;
        padding: 0;
        border-radius: 15px;
        max-width: 800px;
        width: 100%;
        height: 100%;
        max-height: 80vh;
        overflow-y: auto;
        position: relative;
        animation: modalSlideIn 0.3s ease;
    }

    @keyframes modalSlideIn {
        from {
            transform: translateY(-50px);
            opacity: 0;
        }

        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    .modal-header {
        position: relative;
        padding: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .modal-member-img {
        width: 250px;
        height: 250px;
        object-fit: cover;
        margin: auto;
        border-radius: 8px;
    }

    .modal-title {
        position: absolute;
        width: 155px;
        height: 53px;
        background-color: #2bbdbd;
        color: #ffffff;
        top: 40%;
        right: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 16px;
        border-top-left-radius: 151px;
        z-index: 5;
        transition: all 0.5s ease;
    }

    .close-btn {
        position: absolute;
        top: 20px;
        left: 20px;
        background: var(--primary-color);
        color: var(--accent-color) !important;
        border: none;
        width: 60px;
        height: 60px;
        /* transform: rotate(-45deg); */
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .close-btn:hover {
        transform: scale(1.1) rotate(-45deg);
    }

    .close-btn i {
        font-size: 18px;
        color: #333;
    }

    .modal-body {
        max-width: 80%;
        margin: auto;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .modal-member-name {
        font-size: 28px;
        font-weight: 700;
        color: var(--primary-color);
        margin-bottom: 5px;
    }

    .modal-member-Qualify {
        font-size: 16px;
        color: #666;
        margin-bottom: 10px;
    }

    .modal-member-position {
        font-size: 18px;
        color: #2bbdbd;
        font-weight: 600;
        margin-bottom: 20px;
    }

    .modal-member-description {
        font-size: 16px;
        line-height: 1.8;
        color: #666;
        margin-bottom: 25px;
    }

    .modal-member-social {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .member-modal .social-icon .mail {
        color: var(--primary-color) !important;
        font-size: 26px;
    }

    .member-modal .social-icon .linkedin {
        font-size: 26px !important;
        color: var(--accent-color);
    }

    .decorate-modal-first {
        position: absolute;
        width: 88px;
        height: 95px;
        border-top-right-radius: 100%;
        background-color: var(--accent-color);
        left: 10%;
        top: 35%;
        pointer-events: none;
    }

    .decorate-modal-second {
        position: absolute;
        width: 70px;
        height: 80px;
        border-bottom-left-radius: 100%;
        background-color: var(--primary-color);
        right: 10%;
        top: 50%;
        pointer-events: none;
    }

    /* LinkedIn Hover Icon */
    .member-social-hover {
        position: absolute;
        bottom: 20px;
        right: 20px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 10;
    }

    .member-social-hover a {
        color: var(--accent-color);
        /* color: #fff; */
        font-size: 28px !important;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.3s ease, background 0.3s ease;
    }

    .member-social-hover a:hover {
        transform: scale(1.1);
        background-color: var(--primary-color);
    }

    /* Show social icon when hover */
    .member-image-container:hover .member-social-hover {
        opacity: 1;
        visibility: visible;
    }

    @media (max-width: 768px) {
        .decorate-modal-second {
            top: 40%;
        }
    }
