
       body {
font-family: 'Karla', sans-serif !important;
}

.section-heading{
    font-size:48px !important ;
        font-family: 'Cormorant Garamond', serif;
        font-weight: 400; 
}

.section-para{
    font-size: 16px;
        font-family: 'Karla', sans-serif;
        font-weight: 400;
}

        /* --- Header Section Styling --- */
        .header-section {
            color: #fff;
            text-align: left;
            position: relative;
        }

        .header-content {
            position: absolute;
                position: absolute;
    bottom: 0%;
    left: 0;
    right: 0;
    top: 0;
    display: flex;
    justify-content: start;
    align-items: center;
        }
        
        .header-content h1 {
            font-size:64px;
            color: #fff;
            font-weight: 600;
                    font-family: 'Cormorant Garamond', serif;
        }
        
        .d-team-banner-img{
            width: 100%;
            height: auto;
        }

        /* --- Team Card Styling --- */
        .team-section {
            padding: 5rem 0;
        }

        .card-main-wrapper{
            width: 80%;
            margin: 0 auto;
        }

        .member-card {
            display: flex;
            background-color: #EDF9FF; /* Light blue background for the info area */
            margin-bottom: 5rem;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
            border-radius: 5px;
            overflow: hidden; /* To contain image and info */
        }

        .member-card:last-child{
            margin-bottom: 0;
        }

       

        .member-card-image {
            width: 40%;
            overflow: hidden;
            flex-shrink: 0; /* Prevent the image from shrinking */
        }
        
        .d-member {
           width: 100%;
           height: 100%;
           object-fit: cover;
        }

        .m-member{
            display: none;
        }
        .m-team-banner-img{
            display: none;
            width: 100%;
        }

       


        .member-card-info {
            padding: 30px;
            width: 60%;
            box-sizing: border-box;
            color: #333; /* Default text color */
        }


        .member-name {
            color: #1C355E; /* Dark blue color */
            margin-bottom: 5px;
            margin-top: 0;
        }



        .member-title {
               font-size: 20px;
    color: #000;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 600;
            font-family: 'Karla', sans-serif;
        }

        .member-description {
               font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
    color: #000;
            font-family: 'Karla', sans-serif;
        }

        .info-block {
            margin-bottom: 15px;
        }

        .info-label {
                font-weight: 500;
    font-size: 16px;
    color: #238DC1;
    text-transform: capitalize;
    display: block;
    margin-bottom: 3px;
        }


        .info-value {
           font-size: 20px;
    color: #000;
    display: block;
    font-weight: 600;
    text-transform: uppercase;
            font-family: 'Karla', sans-serif;
        }

      
        .know-more-link {
               text-transform: uppercase;
    font-weight: 600;
    color: #1C355E;
    text-decoration: none;
    font-size: 16px;
    border-bottom: 0;
    border-bottom: 2px solid #1C355E;
    display: inline-block;
    margin-top: 10px;
    padding: 0 10px 3px 10px;
            font-family: 'Karla', sans-serif;
            overflow: hidden;
        }

        .know-more-link span{
            display: inline-block;
            transition: transform 0.5s ease-in-out;
        }

        .know-more-link:hover span {
            transform: scale(1.1);
        }
        .m-d-team-banner-img{
            display: none;
            width: 100%;
        }

        

        @media screen and (min-width: 1025px) and (max-width: 1380px) {
            .section-heading{
                font-size: 42px !important;
            }
        }


        @media screen and (min-width: 768px) and (max-width: 991px) { 
            .d-team-banner-img{
                display: block !important;
            }
            .m-team-banner-img{
                display: none !important;
             }
        }

    

        /* --- Responsiveness (Mobile View) --- */
        @media (max-width: 991px) {
            .d-team-banner-img{
                display: none;
            }
            .m-team-banner-img{
                display: block;
            }
            .member-card {
                flex-direction: column; /* Stack image and info vertically */
                margin-bottom: 3rem;
            }
            .d-member{
                height: auto;
            }

            .member-card-image,
            .member-card-info {
                width: 100%;
                /* Resetting the image/info ratio */
            }
            

            .m-member{
                display: block;
            }
            .d-member{
                display: none;
            }

            .member-card-info {
                padding: 20px;
            }

            .header-content h1 {
                font-size: 50px;
            }
            

           .member-card-image img{
            width: 100%;
           }
           .section-heading{
            font-size: 36px !important;
           }
           .card-main-wrapper{
            width: 90%;
           }
        }
