
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .circularbody {
            background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
            color: #fff;
            min-height: 100vh;
            padding: 20px;
        }

        .container {
            max-width: 100%;
            margin: 0 auto;
        }

        /* header {
            text-align: center;
            margin-bottom: 40px;
            padding: 20px;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        } */

        h1 {
            font-size: 2.8rem;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
        }

        .content-wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }

        .circle-nav {
            flex: 1;
            min-width: 350px;
            position: relative;
            height: 500px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .circle-container {
            position: relative;
            width: 400px;
            height: 400px;
        }

        .center-circle {
            position: absolute;
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, #ff7e5f, #feb47b);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 0 30px rgba(255, 126, 95, 0.7);
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            font-weight: bold;
            font-size: 1rem;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
            z-index: 10;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation: pulse 2s infinite;
        }

        .center-circle:hover {
            transform: translate(-50%, -50%) scale(1.1);
            box-shadow: 0 0 40px rgba(255, 126, 95, 0.9);
        }

        .orbit-ring {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 300px;
            height: 300px;
            border: 3px dashed rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            animation: rotate 30s linear infinite;
        }

        .circle-container:hover .orbit-ring {
            animation-play-state: paused;
        }

        .satellite-circle {
            position: absolute;
            width: 120px;
            height: 120px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            font-size: 1rem;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            z-index: 5;
            /* Position will be set by animation */
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation: orbit 30s linear infinite;
        }

        .circle-container:hover .satellite-circle {
            animation-play-state: paused;
        }

        .satellite-circle:hover {
            transform: translate(-50%, -50%) scale(1.15);
            z-index: 20;
        }

        .satellite-1 {
            background: linear-gradient(135deg, #1a2a6c, #4a54bc);
            animation-delay: 0s;
        }

        .satellite-2 {
            background: linear-gradient(135deg, #b21f1f, #e74c3c);
            animation-delay: -5s;
        }

        .satellite-3 {
            background: linear-gradient(135deg, #1d976c, #93f9b9);
            animation-delay: -10s;
        }

        .satellite-4 {
            background: linear-gradient(135deg, #614385, #516395);
            animation-delay: -15s;
        }

        .satellite-5 {
            background: linear-gradient(135deg, #ff7e5f, #feb47b);
            animation-delay: -20s;
        }

        .satellite-6 {
            background: linear-gradient(135deg, #11998e, #38ef7d);
            animation-delay: -25s;
        }

        .faculties {
            flex: 1;
            min-width: 350px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
            margin-top:50px;
        }

        .faculty-section {
            margin-bottom: 10px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            margin-top:30px;
        }

        .faculty-header {
            background: rgba(0, 0, 0, 0.3);
            padding: 10px 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .faculty-header:hover {
            background: rgba(0, 0, 0, 0.4);
        }

        .faculty-header h3 {
            font-size: 1.1rem; /* Reduced from 1.3rem */
        }

        .faculty-content {
            background: rgba(0, 0, 0, 0.2);
            padding: 0;
            max-height: 0;
            overflow: hidden;
            transition: all 0.5s ease;
            font-size: 0.9rem; /* Added smaller font size */
        }

        .faculty-content.active {
            padding: 20px;
            max-height: 500px;
        }

        .faculty-content ul {
            list-style-type: none;
            padding-left: 20px;
        }

        .faculty-content li {
            margin-bottom: 10px;
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.2s ease;
        }

        .faculty-content li:hover {
            padding-left: 10px;
            color: #ffcc00;
        }

        .faculty-content li:last-child {
            border-bottom: none;
        }

        .icon {
            transition: transform 0.3s ease;
        }

        .active .icon {
            transform: rotate(180deg);
        }

        footer {
            text-align: center;
            margin-top: 40px;
            padding: 20px;
            font-size: 0.9rem;
            opacity: 0.8;
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(255, 126, 95, 0.7); }
            70% { box-shadow: 0 0 0 15px rgba(255, 126, 95, 0); }
            100% { box-shadow: 0 0 0 0 rgba(255, 126, 95, 0); }
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        @keyframes orbit {
            0% {
                transform: translate(-50%, -50%) rotate(0deg) translate(150px) rotate(0deg);
            }
            100% {
                transform: translate(-50%, -50%) rotate(360deg) translate(150px) rotate(-360deg);
            }
        }

        @media (max-width: 768px) {
            .content-wrapper {
                flex-direction: column;
            }
            
            .circle-nav {
                height: 400px;
            }
            
            .circle-container {
                width: 300px;
                height: 300px;
            }
            
            .center-circle, .satellite-circle {
                width: 90px;
                height: 90px;
                font-size: 0.8rem;
            }
            
            .orbit-ring {
                width: 220px;
                height: 220px;
            }
            
            @keyframes orbit {
                0% {
                    transform: translate(-50%, -50%) rotate(0deg) translate(110px) rotate(0deg);
                }
                100% {
                    transform: translate(-50%, -50%) rotate(360deg) translate(110px) rotate(-360deg);
                }
            }
        }
    