.elementor-21943 .elementor-element.elementor-element-cc15766{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-5a29b60 */:root {
            --primary: #9C0002;
            --primary-dark: #7a0001;
            --primary-light: rgba(156,00,02,0.6);
            --dark: #1a1a1a;
            --gray: #333;
            --light: #f5f7fa;
            --white: #ffffff;
            --thk : clamp(4px,0.4vw,6px) solid transparent;
            --offcet : clamp(18px,1.6vw,22px);
            --content-padding: calc(2.1 * var(--offcet));
            --content-padding2: calc(3 * var(--offcet));
        }
        
        .container {
            width: 95%;
            max-width: 1920px;
            margin: 0 auto;
            padding: 2rem 1rem;
            box-sizing: border-box;
        }
        
        /* Typography Classes */
        .ph {
            font-family: 'Rajdhani', sans-serif;
            font-weight: 700;
            color: var(--dark);
        }
        
        .pt {
            font-family: 'Rajdhani', sans-serif;
            font-weight: 400;
            color: var(--gray);
            line-height: 1.6;
        }
        
        /* Section Styles */
        .section {
            padding: 3rem 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .section-title .ph {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .section-title .ph:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 5px;
            background: var(--primary);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .section-title .pt {
            max-width: 700px;
            margin: 2rem auto 0;
            font-size: 1.1rem;
        }
        
        /* Organization Chart Background */
        .org-chart {
            padding: 2rem;
            background: #f8f9fa;
            margin-bottom: 2rem;
            position: relative;
            overflow: hidden;
            border-radius: 0;
            box-sizing: border-box;
        }
        
        .org-description {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 2rem;
        }
        
        .org-simplified {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-top: 1.5rem;
        }
        
        .org-row {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 2rem;
            margin-bottom: 1.5rem;
            gap: 1rem;
        }
        
        .org-item {
            padding: 1.5rem;
            text-align: center;
            min-width: 200px;
            background: var(--white);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.09);
            position: relative;
            z-index: 2;
            border-radius: 0;
            box-sizing: border-box;
            flex: 0 1 auto;
        }
        
        .org-item.board {
            background: #ADC3CE;
            color: var(--white) !important;
        }
        
        .org-item.ceo {
            background: rgba(200, 0, 0, 0.6);
            color: var(--white);
        }
        
        .org-item .ph {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
        }
        
        .org-item .pt {
            font-weight: 500;
            opacity: 0.9;
        }
        
        /* CEO Horizontal Card - NEW */
        .ceo-horizontal-card {
            position: relative;
            max-width: 700px;
            width: 100%;
            background: var(--white);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            border-radius: 0;
            overflow: hidden;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            display: flex;
            margin: 0 auto;
           
        }
        
        .ceo-horizontal-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }
        
       
        .ceo-horizontal-card::after {
            content: '';
            position: absolute;
            width: 0;
            height: 0;
            transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            z-index: 2;
        }
        
   
        
        .ceo-horizontal-card::after {
            bottom: var(--offcet);
            right:  var(--offcet);
            border-bottom: var(--thk);
            border-right: var(--thk);
        }
        
        .ceo-horizontal-card.animated::after {
            width: 92%;
            height: 90%;
        }
        
   
        
        .ceo-horizontal-card.animated::after {
            border-bottom-color: var(--primary);
            border-right-color: var(--primary-light);
        }
        
        .ceo-image-horizontal {
            width: 40%;
            min-width: 250px;
            overflow: hidden;
            flex-shrink: 0;
        }
        
        .ceo-image-horizontal img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top center;
            transition: transform 0.5s ease;
        }
        
        .ceo-horizontal-card:hover .ceo-image-horizontal img {
            transform: scale(1.05);
        }
        
        .ceo-info-horizontal {
            padding: var(--content-padding);
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            z-index: 1;
        }
        
        .ceo-info-horizontal .ph {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }
        
        .ceo-info-horizontal .position {
            color: var(--primary);
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 1rem;
        }
        
        .ceo-contact-horizontal {
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid #f0f0f0;
        }
        
        .ceo-contact-info-horizontal {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            font-size: 0.95rem;
            font-weight: 600;
        }
        
        .ceo-contact-item-horizontal {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            color: var(--gray);
        }
        
        .ceo-contact-item-horizontal i {
            color: var(--primary);
            width: 20px;
        }
        
        /* Animated Frame Cards */
        .frame-card {
            position: relative;
            padding: var(--content-padding);
            overflow: hidden;
            background: rgba(255, 255, 255, 0.9);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border-radius: 0;
            box-sizing: border-box;
            height: 100%;
            display: flex;
            flex-direction: column;
            min-width: 300px;
        }
        
        .frame-card::before,
        .frame-card::after {
            content: '';
            position: absolute;
            width: 0;
            height: 0;
            transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            z-index: 2;
        }
        
        /* Top-left border animation (for departments) */
        .frame-card.department-card::before {
            top: var(--offcet);
            left: var(--offcet);
            border-top: var(--thk);
            border-left: var(--thk);
            transition-delay: 0.1s;
        }
        
        /* Bottom-right border animation (for leadership) */
        .frame-card.leader-card::before {
            bottom: var(--offcet);
            right: var(--offcet);
            border-bottom: var(--thk);
            border-right: var(--thk);
            transition-delay: 0.1s;
        }
        
        /* Animation for department cards */
        .frame-card.department-card.animated::before {
            width: calc(100% - (2 * var(--offcet)));
            height: calc(100% - (2 * var(--offcet)));
            border-top-color: var(--primary);
            border-left-color: var(--primary-light);
        }
        
        /* Animation for leadership cards */
        .frame-card.leader-card.animated::before {
            width: calc(100% - (2 * var(--offcet)));
            height: calc(100% - (2 * var(--offcet)));
            border-bottom-color: var(--primary);
            border-right-color: var(--primary-light);
        }
        
        .frame-image {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }
        
        .frame-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform: scale(1.1);
            transition: transform 0.5s ease;
        }
        
        .frame-card:hover .frame-image img {
            transform: scale(1);
        }
        
        .frame-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        /* Button Styles */
        .btn {
            display: inline-block;
            background: var(--primary);
            color: var(--white);
            padding: 0.8rem 1.5rem;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            white-space: nowrap;
            text-decoration: none !important;
            border-radius: 0;
        }
        
        .btn::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: var(--primary-dark);
            transition: height 0.3s ease;
            z-index: -1;
        }
        
        .btn:hover::after {
            height: 100%;
        }
        
        .btn:hover {
            transform: translateY(0px);
            box-shadow: 0 5px 15px rgba(156, 0, 2, 0.3);
            color: var(--white);
        }
        
        .btn:focus {
            color: var(--white);
        }
        
        /* Departments Grid */
        .departments-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
        }
        
        .department-card {
            display: flex;
            flex-direction: column;
            height: 500px;
            flex: 0 0 auto;
        }
        
        .department-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            overflow: hidden;
            position: relative;
            z-index: 3;
        }
        
        .department-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
            text-align: center;
        }
        
        .department-card .ph {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            text-align: center;
        }
        
        .department-description {
            margin-bottom: 1.5rem;
            flex-shrink: 0;
            text-align: center;
        }
        
        .department-list-container {
            flex: 1;
            overflow-y: auto;
            max-height: 180px;
            padding-right: 8px;
            position: relative;
            z-index: 3;
        }
        
        .department-list {
            background-color: #DEE7EB;
            list-style-type: none;
            margin: 0;
            padding: 1rem;
            border-radius: 0;
        }
        
        .department-list li {
            padding: 0.5rem 0;
            border-bottom: 1px solid #f0f0f0;
            font-weight: 500;
        }
        
        .department-list li:last-child {
            border-bottom: none;
        }
        
        /* Custom scrollbar for department lists */
        .department-list-container::-webkit-scrollbar {
            width: 6px;
        }
        
        .department-list-container::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 0;
        }
        
        .department-list-container::-webkit-scrollbar-thumb {
            background: var(--primary-light);
            border-radius: 0;
        }
        
        .department-list-container::-webkit-scrollbar-thumb:hover {
            background: var(--primary);
        }
        
        /* Leadership Grid */
        .leadership-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
        }
        
        .leader-card {
            text-align: center;
            overflow: hidden;
            height: auto;
            display: flex;
            flex-direction: column;
            flex: 0 0 auto;
        }
        
        .leader-image {
            height: 300px;
            overflow: hidden;
            flex-shrink: 0;
            border-radius: 0;
        }
        
        .leader-image img {
            object-position: top center;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .leader-card:hover .leader-image img {
            transform: scale(1.05);
        }
        
        .leader-info {
            padding: 1.5rem 0 0 0;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            position: relative;
            z-index: 1;
        }
        
        .leader-info .ph {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
        }
        
        .leader-info .pt {
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        .leader-info .department {
            color: var(--gray);
            font-weight: 500;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }
        
        .leader-contact {
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid #f0f0f0;
        }
        
        .contact-info {
            font-family: 'Rajdhani', sans-serif;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            font-size: 0.9rem;
            font-weight: 600;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 0.5rem;
            color: var(--gray);
        }
        
        .contact-item i {
            color: var(--primary);
            width: 20px;
            margin-top:-2px;
        }
        
        /* Full Chart Section */
        .full-chart-section {
            background: var(--white);
            padding: 4rem 0;
            text-align: center;
        }
        
        .full-chart-content {
            max-width: 700px;
            margin: 0 auto;
        }
        
        .full-chart-content .ph {
            font-size: 2rem;
            margin-bottom: 1.5rem;
        }
        
        .full-chart-content .pt {
            margin-bottom: 2.5rem;
            font-size: 1.1rem;
        }
        
        /* Chart Button Section */
        .chart-button-section {
            text-align: center;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid #e0e0e0;
        }
        
        /* Responsive Design */
        /* For large screens - 4 cards in a row */
        @media (min-width: 1401px) {
            .frame-card {
                min-width: 300px;
                max-width: 350px;
            }
        }
        
        /* For medium-large screens - 3 cards in a row */
        @media (max-width: 1400px) and (min-width: 1101px) {
            .frame-card {
                min-width: 300px;
                max-width: 350px;
            }
        }
        
        /* For medium screens - 2 cards in a row */
        @media (max-width: 1100px) and (min-width: 801px) {
            .frame-card {
                min-width: 300px;
                max-width: 350px;
            }
        }
        
        /* For tablets - 2 cards in a row with adjusted spacing */
        @media (max-width: 800px) and (min-width: 601px) {
            .frame-card {
                min-width: 280px;
                max-width: 250px;
            }
            
            .container {
                width: 95%;
                padding: 1.5rem;
            }
            
            .section {
                padding: 2rem 0;
            }
            
            .department-card {
                height: 480px;
            }
            
            .leader-image {
                height: 250px;
            }
            
            .ceo-horizontal-card {
                max-width: 600px;
                flex-direction: column;
            }
            
            .ceo-image-horizontal {
                width: 100%;
                min-width: auto;
                height: 300px;
            }
        }
        
        /* For small tablets - 1 or 2 cards based on available space */
        @media (max-width: 600px) and (min-width: 481px) {
            .frame-card {
                min-width: 280px;
                max-width: 100%;
            }
            
            .departments-grid, .leadership-grid {
                gap: 1.5rem;
            }
            
            .container {
                width: 95%;
                padding: 1rem;
            }
            
            .section {
                padding: 1.5rem 0;
            }
            
            .section-title .ph {
                font-size: 2rem;
            }
            
            .org-simplified {
                margin-top: 1rem;
            }
            
            .org-row {
                gap: 0.8rem;
            }
            
            .org-item {
                min-width: 180px;
                padding: 1.2rem;
            }
            
            .department-card {
                height: 460px;
            }
            
            .leader-card {
                min-height: 450px;
            }
            
            .leader-image {
                height: 250px;
            }
            
            .department-list-container {
                max-height: 150px;
            }
            
            .ceo-horizontal-card {
                max-width: 100%;
                flex-direction: column;
            }
            
            .ceo-image-horizontal {
                width: 100%;
                min-width: auto;
                height: 250px;
            }
            
            .ceo-info-horizontal {
                padding: 1.5rem;
            }
        }
        
        /* For mobile devices - 1 card per row */
        @media (max-width: 480px) {
            .frame-card {
                min-width: 280px;
                max-width: 100%;
            }
            
            .departments-grid, .leadership-grid {
                gap: 1.5rem;
            }
            
            .container {
                width: 100%;
                padding: 1rem;
            }
            
            .section {
                padding: 1rem 0;
            }
            
            .section-title {
                margin-bottom: 2rem;
            }
            
            .section-title .ph {
                font-size: 1.8rem;
            }
            
            .section-title .pt {
                font-size: 1rem;
            }
            
            .org-chart {
                padding: 1.5rem;
            }
            
            .org-row {
                gap: 1rem;
            }
            
            .org-item {
                min-width: 250px;
                margin: 0;
            }
            
            .department-card {
                height: auto;
                min-height: 450px;
            }
            
            .leader-card {
                min-height: 420px;
            }
            
            .leader-image {
                height: 250px;
            }
            
            .department-list-container {
                max-height: none;
                overflow-y: visible;
            }
            
            .full-chart-section {
                padding: 2rem 0;
            }
            
            .full-chart-content .ph {
                font-size: 1.6rem;
            }
            
            .ceo-horizontal-card {
                max-width: 100%;
                flex-direction: column;
            }
            
            .ceo-image-horizontal {
                width: 100%;
                min-width: auto;
                height: 220px;
            }
            
            .ceo-info-horizontal {
                padding: 1.2rem;
            }
        }
        
        /* For very small mobile devices */
        @media (max-width: 360px) {
            .frame-card {
                min-width: 260px;
            }
            
            .org-item {
                min-width: 220px;
            }
        }/* End custom CSS */