.elementor-2230 .elementor-element.elementor-element-43d8a11{--display:flex;}.elementor-widget .tippy-tooltip .tippy-content{text-align:center;}/* Start custom CSS for html, class: .elementor-element-3648b73 *//* Main Section Wrapper */
.staff-section-wrapper {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 30px auto;
    background-color: #f8fcf9; /* हल्का हरियो/अफ-ह्वाइट पृष्ठभूमि */
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.staff-section-wrapper:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Main Title for the Staff Section */
.staff-main-title {
    color: #006400; /* गाढा हरियो */
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.staff-main-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background-color: #dc3545; /* गाढा रातो अन्डरलाइन */
    margin: 10px auto 0;
    border-radius: 2px;
}

/* Container for Profile Cards (Grid Layout) */
.staff-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* रेस्पोन्सिभ ग्रिड */
    gap: 30px; /* कार्डहरू बीचको खाली ठाउँ */
    justify-content: center; /* पङ्क्तिमा कम कार्ड भएमा केन्द्रमा राख्ने */
}

/* Individual Staff Profile Card Styling */
.staff-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative; /* एनिमेसनका लागि */
    overflow: hidden; /* बोर्डर एनिमेसनका लागि */
}

/* Hover Effect on Card */
.staff-card:hover {
    transform: translateY(-8px); /* होभरमा माथि उठ्ने प्रभाव */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15); /* होभरमा बलियो छायाँ */
    border-color: #006400; /* होभरमा हरियो बोर्डर */
}

/* Unique Border/Background Effect on Hover (Optional: More advanced) */
/* This creates a subtle gradient border effect on hover */
.staff-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(54deg, #06400, #dc3545); /* हरियो देखि रातो ग्रेडियन्ट */
    z-index: -1;
    border-radius: 14px; /* कार्डको बोर्डर रेडियस भन्दा अलिकति बढी */
    opacity: 0;
    transition: opacity 0.3s ease;
}

.staff-card:hover::before {
    opacity: 1;
}


/* Profile Image Frame */
.staff-image-frame {
    width: 120px;
    height: 120px;
    background-color: #e6f4ea; /* प्लेसहोल्डरका लागि हल्का हरियो पृष्ठभूमि */
    border-radius: 50%; /* गोलाकार आकार */
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* तस्बिर गोलाकार भित्र रहने सुनिश्चित गर्दछ */
    border: 3px solid #dc3545; /* गाढा रातो बोर्डर */
    transition: all 0.3s ease;
}

.staff-card:hover.staff-image-frame {
    border-color: #006400; /* होभरमा हरियो बोर्डर */
    transform: scale(1.05); /* कार्ड होभरमा तस्बिर हल्का ठूलो हुने */
}

/* Actual Profile Image Styling */
.staff-actual-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* गोलाकार क्षेत्रलाई ढाक्ने */
    border-radius: 50%; /* तस्बिरलाई गोलाकार बनाउने */
}

/* Staff Name */
.staff-name {
    font-size: 24px;
    color: #006400; /* गाढा हरियो */
    margin-bottom: 8px;
    font-weight: 600;
}

/* Staff Role */
.staff-role {
    font-size: 18px;
    color: #dc3545; /* गाढा रातो */
    margin-bottom: 15px;
    font-weight: 500;
}

/* Staff Phone Number */
.staff-phone {
    font-size: 17px;
    color: #555;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.staff-phone i {
    margin-right: 8px;
    color: #006400; /* गाढा हरियो आइकन */
    transition: color 0.3s ease;
}

.staff-phone:hover {
    color: #dc3545; /* होभरमा गाढा रातो */
}

.staff-phone:hover i {
    color: #dc3545; /* होभरमा गाढा रातो आइकन */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .staff-main-title {
        font-size: 28px;
    }
  .staff-cards-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* सानो स्क्रिनका लागि समायोजन */
        gap: 20px;
    }
  .staff-card {
        padding: 20px;
    }
  .staff-name {
        font-size: 22px;
    }
  .staff-role {
        font-size: 16px;
    }
  .staff-phone {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
  .staff-main-title {
        font-size: 24px;
    }
  .staff-cards-container {
        grid-template-columns: 1fr; /* धेरै सानो स्क्रिनमा एकल स्तम्भ */
    }
  .staff-image-frame {
        width: 100px;
        height: 100px;
    }
  .staff-name {
        font-size: 20px;
    }
  .staff-role {
        font-size: 15px;
    }
  .staff-phone {
        font-size: 15px;
    }
}/* End custom CSS */