.elementor-24315 .elementor-element.elementor-element-09dc832{--display:flex;--background-transition:0.3s;}.elementor-24315 .elementor-element.elementor-element-a8656df{--spacer-size:20px;}.elementor-24315 .elementor-element.elementor-element-d59ed04{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--justify-content:center;--gap:0px 0px;--background-transition:0.3s;}.elementor-24315 .elementor-element.elementor-element-a3bdb32{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--background-transition:0.3s;}.elementor-24315 .elementor-element.elementor-element-f5e64d0 .elementor-heading-title{color:#294A41;font-family:"Montserrat", Sans-serif;font-size:1.2em;font-weight:400;letter-spacing:0.2em;}.elementor-24315 .elementor-element.elementor-element-a3a1f9e .elementor-heading-title{color:#294A41;font-family:"Montserrat", Sans-serif;font-size:1.9em;line-height:1.3em;}.elementor-24315 .elementor-element.elementor-element-1320208{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--gap:0px 0px;--background-transition:0.3s;}.elementor-24315 .elementor-element.elementor-element-1320208.e-con:hover{--e-con-transform-scale:1.05;}.elementor-24315 .elementor-element.elementor-element-bbc48c4{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--gap:0px 0px;--background-transition:0.3s;}.elementor-24315 .elementor-element.elementor-element-bbc48c4.e-con:hover{--e-con-transform-scale:1.05;}@media(min-width:768px){.elementor-24315 .elementor-element.elementor-element-a3bdb32{--width:40%;}.elementor-24315 .elementor-element.elementor-element-1320208{--width:25%;}.elementor-24315 .elementor-element.elementor-element-bbc48c4{--width:25%;}}/* Start custom CSS for html, class: .elementor-element-65499d6 */.team-member-card {
            background-color: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            width: 250px;
            margin: 20px;
        }
        
        .member-info {
            padding: 20px;
            text-align: left;
        }

        .member-name {
            font-size: 24px;
            font-weight: bold;
            color: #294A41;
            margin: 0 0 8px 0;
            line-height: 1.2;
            font-family: 'Montserrat', sans-serif;

        }

        .member-title {
            font-size: 14px;
            color: #294A41;
            opacity: 0.8;
            font-weight: 500;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            margin: 0;
            font-family: 'Montserrat', sans-serif;
        }
        
        /* Modal overlay */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }

        .modal-overlay.active {
            display: flex;
        }

        /* Modal container */
        .modal-container {
            background-color: white;
            border-radius: 12px;
            max-width: 600px;
            width: 90%;
            max-height: 80vh;
            overflow: hidden;
            position: relative;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            animation: modalSlideIn 0.3s ease-out;
        }

        @keyframes modalSlideIn {
            from {
                transform: scale(0.7) translateY(-50px);
                opacity: 0;
            }
            to {
                transform: scale(1) translateY(0);
                opacity: 1;
            }
        }

        /* Close button */
        .close-btn {
            position: absolute;
            top: 15px;
            right: 20px;
            background: none;
            border: none;
            color: #F7F7F7;
            font-size: 24px;
            cursor: pointer;
            z-index: 1001;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: background-color 0.3s ease;
        }

        .close-btn:hover {
            background-color: rgba(247, 247, 247, 0.2);
        }

        /* Top section with dark green background */
        .modal-header {
            background-color: #294A41;
            color: #F7F7F7;
            padding: 20px;
            padding-top: 50px;
        }

        .modal-header h2 {
            margin: 0 0 5px 0;
            font-size: 2em;
            font-weight: bold;
        }

        .modal-header .position {
            margin: 0;
            font-size: 0.9em;
            opacity: 0.9;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 500;
        }

        /* Bottom section with standard background */
        .modal-content {
            background-color: white;
            color: #294A41;
            padding: 25px;
            line-height: 1.6;
        }

        .modal-content p {
            margin: 0 0 15px 0;
            text-align: justify;
        }

        .modal-content p:last-child {
            margin-bottom: 0;
        }

        /* Responsive design */
        @media (max-width: 600px) {
            .modal-container {
                width: 95%;
                margin: 10px;
            }
            
            .modal-header {
                padding: 15px;
                padding-top: 45px;
            }
            
            .modal-content {
                padding: 20px;
            }

            .team-member-card {
                width: 200px;
            }

            .member-image {
                height: 200px;
            }
        }/* End custom CSS */