.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}/* Start custom CSS for text-editor, class: .elementor-element-3e2edbba *//* ===================================
   FACULTY PAGE - WHITE BACKGROUND
   =================================== */

/* Main Container */
.faculty-page-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
    background: #ffffff;
}

/* Page Title */
.faculty-page-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: #720000;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    width: 100%;
    animation: fadeInDown 0.8s ease-out;
}

.faculty-page-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #720000 0%, #d39b00 100%);
    border-radius: 2px;
}

/* ===================================
   HEAD OF FACULTY SECTION
   =================================== */

.head-of-faculty-section {
    margin: 50px auto 60px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.section-label {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #720000;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 15px;
}

.section-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #d39b00;
}

/* Head Faculty Card - Same as Regular Cards */
.head-faculty-card {
    background: #ffffff;
    border-radius: 15px;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    text-align: center;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

/* Left accent border */
.head-faculty-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, #720000 0%, #d39b00 100%);
    transition: height 0.4s ease;
}

.head-faculty-card:hover::before {
    height: 100%;
}

.head-faculty-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(114, 0, 0, 0.2);
    border-color: #720000;
}

.head-faculty-card img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 15px;
    object-fit: cover;
    aspect-ratio: 1/1;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.head-faculty-card:hover img {
    transform: scale(1.05);
    border-color: #d39b00;
    box-shadow: 0 8px 20px rgba(211, 155, 0, 0.3);
}

/* Position Badge - Only difference */
.position-badge {
    display: inline-block;
    background: linear-gradient(135deg, #720000 0%, #d39b00 100%);
    color: #ffffff;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(114, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.head-faculty-card h3 {
    color: #720000;
    font-size: 18px;
    margin: 15px 0 10px;
    font-weight: 700;
    line-height: 1.4;
    min-height: 50px;
    transition: color 0.3s ease;
}

.head-faculty-card:hover h3 {
    color: #d39b00;
}

.head-faculty-card p {
    font-size: 14px;
    color: #666666;
    margin-bottom: 20px;
    min-height: 40px;
}

/* ===================================
   REGULAR FACULTY SECTION
   =================================== */

.faculty-section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #720000;
    margin: 60px 0 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 15px;
    animation: fadeIn 0.8s ease-out 0.4s both;
}

.faculty-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #720000 0%, #d39b00 100%);
}

.faculty-cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    background: #ffffff;
    padding: 40px 20px;
    border-radius: 10px;
}

.faculty-card {
    background: #ffffff;
    border-radius: 15px;
    width: 100%;
    max-width: 280px;
    text-align: center;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out both;
}

/* Stagger animation for faculty cards */
.faculty-card:nth-child(1) { animation-delay: 0.5s; }
.faculty-card:nth-child(2) { animation-delay: 0.6s; }
.faculty-card:nth-child(3) { animation-delay: 0.7s; }
.faculty-card:nth-child(4) { animation-delay: 0.8s; }
.faculty-card:nth-child(5) { animation-delay: 0.9s; }
.faculty-card:nth-child(6) { animation-delay: 1s; }
.faculty-card:nth-child(7) { animation-delay: 1.1s; }
.faculty-card:nth-child(8) { animation-delay: 1.2s; }
.faculty-card:nth-child(9) { animation-delay: 1.3s; }
.faculty-card:nth-child(10) { animation-delay: 1.4s; }
.faculty-card:nth-child(11) { animation-delay: 1.5s; }
.faculty-card:nth-child(12) { animation-delay: 1.6s; }
.faculty-card:nth-child(13) { animation-delay: 1.7s; }
.faculty-card:nth-child(14) { animation-delay: 1.8s; }

/* Left accent border */
.faculty-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, #720000 0%, #d39b00 100%);
    transition: height 0.4s ease;
}

.faculty-card:hover::before {
    height: 100%;
}

.faculty-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(114, 0, 0, 0.2);
    border-color: #720000;
}

.faculty-card img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 15px;
    object-fit: cover;
    aspect-ratio: 1/1;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.faculty-card:hover img {
    transform: scale(1.05);
    border-color: #d39b00;
    box-shadow: 0 8px 20px rgba(211, 155, 0, 0.3);
}

.faculty-card h3 {
    color: #720000;
    font-size: 18px;
    margin: 15px 0 10px;
    font-weight: 700;
    line-height: 1.4;
    min-height: 50px;
    transition: color 0.3s ease;
}

.faculty-card:hover h3 {
    color: #d39b00;
}

.faculty-card p {
    font-size: 14px;
    color: #666666;
    margin-bottom: 20px;
    min-height: 40px;
}

.faculty-card-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.faculty-card a,
.head-faculty-card a {
    background: #720000;
    color: #ffffff !important;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.faculty-card a::before,
.head-faculty-card a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.faculty-card a:hover::before,
.head-faculty-card a:hover::before {
    width: 300px;
    height: 300px;
}

.faculty-card a:hover,
.head-faculty-card a:hover {
    background: #d39b00;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(211, 155, 0, 0.4);
}

/* ===================================
   ANIMATIONS
   =================================== */

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media screen and (max-width: 1200px) {
    .faculty-cards-container {
        gap: 25px;
        padding: 35px 15px;
    }
    
    .faculty-card,
    .head-faculty-card {
        max-width: 260px;
    }
}

@media screen and (max-width: 768px) {
    .faculty-page-container {
        padding: 40px 15px;
    }
    
    .faculty-page-title {
        font-size: 32px;
    }
    
    .head-of-faculty-section {
        margin: 40px auto 50px;
    }
    
    .section-label {
        font-size: 24px;
    }
    
    .head-faculty-card {
        max-width: 100%;
    }
    
    .faculty-section-title {
        font-size: 26px;
        margin: 50px 0 30px;
    }
    
    .faculty-cards-container {
        gap: 20px;
        padding: 30px 15px;
    }
    
    .faculty-card {
        max-width: 100%;
        width: calc(50% - 10px);
        padding: 20px;
    }
    
    .faculty-card h3,
    .head-faculty-card h3 {
        font-size: 16px;
        min-height: auto;
    }
    
    .faculty-card p,
    .head-faculty-card p {
        font-size: 13px;
        min-height: auto;
    }
}

@media screen and (max-width: 480px) {
    .faculty-page-title {
        font-size: 26px;
    }
    
    .section-label {
        font-size: 20px;
    }
    
    .head-faculty-card {
        padding: 20px;
    }
    
    .faculty-section-title {
        font-size: 22px;
    }
    
    .faculty-cards-container {
        gap: 15px;
        padding: 20px 10px;
    }
    
    .faculty-card {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .faculty-card a,
    .head-faculty-card a {
        font-size: 13px;
        padding: 9px 16px;
    }
}

/* ===================================
   ACCESSIBILITY
   =================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===================================
   PRINT STYLES
   =================================== */

@media print {
    .faculty-page-container {
        padding: 20px;
    }
    
    .head-faculty-card,
    .faculty-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
}/* End custom CSS */