  .org-chart {
            padding: 40px 30px;
            position: relative;
        }

        /* Level Styles */
        .level {
            display: flex;
            justify-content: center;
            margin-bottom: 60px;
            position: relative;
        }

        .level-1 {
            margin-bottom: 80px;
        }

        .level-2 {
            margin-bottom: 100px;
        }

        .level-3 {
            margin-bottom: 120px;
        }

        .registrar-section::before {
            content: "";
            position: absolute;
            top: -20px;
            left: calc(51% - 5px);
            width: calc(60% + 10px);
            height: 2px;
            background: linear-gradient(135deg, #2ecc71, #27ae60);

        }

        .controller-section::before {
            content: "";
            position: absolute;
            top: -20px;
            left: calc(3% - 5px);
            width: calc(46% + 10px);
            height: 2px;
            background: linear-gradient(135deg, #9b59b6, #8e44ad);

        }

        .controller-section .section-title::before {
            content: "";
            position: absolute;
            top: 0;
            left: 50%;
            transform: translate(-50%, -100%);
            width: 2px;
            height: 20px;
            background: linear-gradient(135deg, #9b59b6, #8e44ad);
        }

        .registrar-section .section-title::before {
            content: "";
            position: absolute;
            top: 0;
            left: 50%;
            transform: translate(-50%, -100%);
            width: 3px;
            height: 20px;
            background: linear-gradient(135deg, #2ecc71, #27ae60);
        }

        .level-4 {
            margin-bottom: 60px;
        }

        /* Node Styles */
        .node {
            background-color: white;
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            /*min-width: 220px;*/
            position: relative;
            transition: all 0.4s ease;
            z-index: 2;
            border-top: 4px solid transparent;
        }

        .node:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
        }

        .node-image {
            width: 90px;
            height: 110px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 15px;
            border: 3px solid #e0e0e0;
            background-color: #f5f5f5;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            color: #7f8c8d;
        }

        .node-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .node h3 {
            margin-bottom: 8px;
            color: #2c3e50;
            font-size: 1.3rem;
            font-weight: 600;
        }

        .node p {
            font-size: 0.95rem;
            color: #7f8c8d;
            margin-bottom: 5px;
        }

        .node .position {
            font-weight: 500;
            color: #3498db;
        }

        /* Specific node styles */
        .chairman {
            background: linear-gradient(135deg, #3498db, #2980b9);
            color: white;
            min-width: 280px;
            border-top: 4px solid #1a5276;
        }

        .chairman .node-image {
            border-color: rgba(255, 255, 255, 0.3);
            background-color: rgba(255, 255, 255, 0.2);
        }

        .chairman h3,
        .chairman p,
        .chairman .position {
            color: white;
        }

        .secretary {
            background: linear-gradient(135deg, #2ecc71, #27ae60);
            color: white;
            border-top: 4px solid #219653;
        }

        .secretary .node-image {
            border-color: rgba(255, 255, 255, 0.3);
            background-color: rgba(255, 255, 255, 0.2);
        }

        .secretary h3,
        .secretary p,
        .secretary .position {
            color: white;
        }

        .registrar-controller {
            background: linear-gradient(135deg, #e74c3c, #c0392b);
            color: white;
            border-top: 4px solid #a93226;
        }

        .registrar-controller .node-image {
            border-color: rgba(255, 255, 255, 0.3);
            background-color: rgba(255, 255, 255, 0.2);
        }

        .registrar-controller h3,
        .registrar-controller p,
        .registrar-controller .position {
            color: white;
        }

        /* Registrar and Controller Sections */
        .split-level {
            display: flex;
            justify-content: space-between;
            width: 100%;
            margin-bottom: 100px;
        }

        .section {
            width: 48%;
            position: relative;
        }

        .section-title {
            text-align: center;
            margin-bottom: 25px;
            padding: 12px 20px;
            background: linear-gradient(135deg, #34495e, #2c3e50);
            color: white;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1.2rem;
            position: relative;
            z-index: 2;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .registrar-section .section-title {
            background: linear-gradient(135deg, #e74c3c, #c0392b);
        }

        .controller-section .section-title {
            background: linear-gradient(135deg, #9b59b6, #8e44ad);
        }

        .registrar-node,
        .controller-node {
            margin: 0 auto 25px;
            text-align: center;
            border-top: 4px solid #c0392b;
        }

        .registrar-node {
            background: linear-gradient(135deg, #e74c3c, #c0392b);
            color: white;
        }

        .registrar-node .node-image {
            border-color: rgba(255, 255, 255, 0.3);
            background-color: rgba(255, 255, 255, 0.2);
        }

        .registrar-node h3,
        .registrar-node p,
        .registrar-node .position {
            color: white;
        }

        .controller-node {
            background: linear-gradient(135deg, #9b59b6, #8e44ad);
            color: white;
            border-top: 4px solid #7d3c98;
        }

        .controller-node .node-image {
            border-color: rgba(255, 255, 255, 0.3);
            background-color: rgba(255, 255, 255, 0.2);
        }

        .controller-node h3,
        .controller-node p,
        .controller-node .position {
            color: white;
        }

        /* Sub-nodes under Registrar and Controller */
        .sub-nodes {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-top: 25px;
        }

        .sub-node {
            background-color: white;
            color: #333;
            flex: 1;
            min-width: 170px;
            max-width: 190px;
            border-top: 4px solid #f1c40f;
        }

        .sub-node .node-image {
            width: 60px;
            height: 60px;
            font-size: 24px;
        }

        /* Head of Account Section */
        .center-line {
            position: absolute;
            left: 50%;
            top: 50px;
            bottom: 10%;
            width: 3px;
            background: linear-gradient(to bottom, #3498db, #9b59b6, #e74c3c, #f1c40f);
            transform: translateX(-50%);
            z-index: 1;
            opacity: 0.7;
        }

        .head-of-account {
            text-align: center;
            margin: 50px auto;
            width: 320px;
            position: relative;
        }

        .head-of-account .node {
            background: linear-gradient(135deg, #1abc9c, #16a085);
            color: white;
            margin: 0 auto;
            border-top: 4px solid #138d75;
        }

        .head-of-account .node-image {
            border-color: rgba(255, 255, 255, 0.3);
            background-color: rgba(255, 255, 255, 0.2);
        }

        .head-of-account h3,
        .head-of-account p,
        .head-of-account .position {
            color: white;
        }

        /* 22 officers  */
        .officer-of-account {
            text-align: center;
            margin: 50px auto;
            width: 320px;
            position: relative;
        }

        .officer-of-account .node {
            background: linear-gradient(135deg, #94b8b1, #87d2c6);
            color: white;
            margin: 0 auto;
            border-top: 4px solid #138d75;
        }

        .officer-of-account .node-image {
            border-color: rgba(255, 255, 255, 0.3);
            background-color: rgba(255, 255, 255, 0.2);
        }

        .officer-of-account h3,
        .officer-of-account p,
        .officer-of-account .position {
            color: white;
        }



        /* Connector Lines */
        .connector {
            position: absolute;
            background-color: #3498db;
            z-index: 1;
        }

        .vertical-connector {
            width: 3px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(to bottom, #3498db, #2ecc71);
        }

        .horizontal-connector {
            height: 3px;
            top: 50%;
            transform: translateY(-50%);
            background: linear-gradient(to right, #e74c3c, #9b59b6);
        }

        /* Specific connector positioning */
        .connector-1 {
            height: 50px;
            top: 100%;
        }

        .connector-2 {
            height: 70px;
            top: 100%;
        }

        .connector-3 {
            width: 50%;
            left: 0;
        }

        .connector-4 {
            width: 50%;
            right: 0;
        }

        .connector-5 {
            height: 70px;
            top: 100%;
        }

        .connector-6 {
            height: 50px;
            top: 100%;
        }

        /* Animation for nodes */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .node {
            animation: fadeInUp 0.6s ease forwards;
            opacity: 0;
        }

        .node:nth-child(1) {
            animation-delay: 0.1s;
        }

        .node:nth-child(2) {
            animation-delay: 0.2s;
        }

        .node:nth-child(3) {
            animation-delay: 0.3s;
        }

        .node:nth-child(4) {
            animation-delay: 0.4s;
        }

        .node:nth-child(5) {
            animation-delay: 0.5s;
        }

        .node:nth-child(6) {
            animation-delay: 0.6s;
        }

        .node:nth-child(7) {
            animation-delay: 0.7s;
        }

        .node:nth-child(8) {
            animation-delay: 0.8s;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .officer {
                flex: 1 0 calc(20% - 15px);
                max-width: calc(20% - 15px);
            }
        }

        @media (max-width: 992px) {
            .split-level {
                flex-direction: column;
                align-items: center;
            }

            .section {
                width: 100%;
                margin-bottom: 50px;
            }

            .officer {
                flex: 1 0 calc(25% - 15px);
                max-width: calc(25% - 15px);
            }
        }

        @media (max-width: 768px) {
            .level {
                flex-direction: column;
                align-items: center;
            }

            .node {
                margin-bottom: 30px;
                /*width: 100%;*/
                max-width: 320px;
            }

            .officer {
                flex: 1 0 calc(33.333% - 15px);
                max-width: calc(33.333% - 15px);
            }

            .center-line {
                display: none;
            }


        }

        @media (max-width: 576px) {
            .officer {
                flex: 1 0 calc(50% - 15px);
                max-width: calc(50% - 15px);
            }

            .container {
                border-radius: 10px;
            }

            .org-chart {
                padding: 30px 20px;
            }

        }