        :root {
            --accent: #3e3b8c;
            --accent-rgb: 62, 59, 140;
            --sub-accent: #0081b3;
            --sub-accent-rgb: 0, 129, 179;
            --color-1: #CE6B11;
            --color-2: #be9d14;
            --color-3: #64748b;
            --white: #fff;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html,
        body {
            height: 100%;
            width: 100%;
            overflow: hidden;
        }

        body {
            font-family: 'DM Sans', sans-serif;
            background: linear-gradient(135deg, var(--accent) 0%, #2d2b6b 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        body::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(11, 158, 217, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            animation: float 8s ease-in-out infinite;
        }

        body::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(242, 207, 29, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            animation: float 10s ease-in-out infinite reverse;
        }

        .mobile-container {
            width: 100%;
            height: 100vh;
            max-height: 100vh;
            background: white;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(62, 59, 140, 0.4);
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .mobile-container::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(11, 158, 217, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            animation: float 6s ease-in-out infinite;
        }

        .mobile-container::after {
            content: '';
            position: absolute;
            bottom: 100px;
            left: 0;
            width: 180px;
            height: 180px;
            background: radial-gradient(circle, rgba(242, 207, 29, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            animation: float 8s ease-in-out infinite reverse;
        }

        .education-graphics {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            overflow: hidden;
        }

        /* Modern gradient blob */


        .blob-2 {
            position: absolute;
            bottom: -50px;
            left: -50px;
            width: 280px;
            height: 280px;
            animation: rotateGlobe 20s linear infinite;
            z-index: 0;
            opacity: 0.4;
        }

        @keyframes rotateGlobe {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }


        /* Modern dot grid */
        .dot-grid {
            position: absolute;
            display: grid;
            grid-template-columns: repeat(3, 6px);
            gap: 12px;
            opacity: 0.15;
        }

        .dot-grid-1 {
            top: 200px;
            right: 20px;
            animation: float 6s ease-in-out infinite;
        }

        .dot-grid-2 {
            bottom: 150px;
            right: 40px;
            animation: float 7s ease-in-out infinite reverse;
        }

        .dot-item {
            width: 6px;
            height: 6px;
            background: var(--sub-accent);
            border-radius: 50%;
        }


        @keyframes morphBlob2 {

            0%,
            100% {
                border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
            }

            50% {
                border-radius: 30% 70% 60% 40% / 40% 70% 30% 60%;
            }
        }

        @keyframes slideRight {
            0% {
                transform: translateX(-120px);
            }

            100% {
                transform: translateX(480px);
            }
        }

        /* Header */
        .header {
            background: linear-gradient(135deg, var(--accent) 0%, #2d2b6b 100%);
            padding: 22px 20px;
            text-align: center;
            flex-shrink: 0;
            position: relative;
            overflow: hidden;
            border-radius: 0px 0px 30px 30px;
        }

        .header::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 150px;
            height: 150px;
            background: radial-gradient(circle, rgba(11, 158, 217, 0.2) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        .header::after {
            content: '';
            position: absolute;
            bottom: -40px;
            left: -40px;
            width: 120px;
            height: 120px;
            background: radial-gradient(circle, rgba(242, 207, 29, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 8s ease-in-out infinite reverse;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(20px);
            }
        }

        .logo-badge {
            width: 26vw;
            height: 26vw;
            max-width: 150px;
            max-height: 150px;
            background: rgba(255, 255, 255, 0.7);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Playfair Display', serif;
            font-size: 1.6rem;
            font-weight: 900;
            color: var(--color-2);
            margin: 0 auto 12px;
            box-shadow: 0 6px 20px rgba(11, 158, 217, 0.35);
            animation: logoPulse 3s ease-in-out infinite;
            position: relative;
            z-index: 1;
        }

        .logo-badge img {
            width: 24vw;
            height: auto;
            max-width: 140px;
        }

        @keyframes logoPulse {

            0%,
            100% {
                transform: scale(1);
                box-shadow: 0 6px 20px rgba(11, 158, 217, 0.35);
            }

            50% {
                transform: scale(1.05);
                box-shadow: 0 10px 32px rgba(11, 158, 217, 0.5), 0 0 20px rgba(242, 207, 29, 0.3);
            }
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .header {
            animation: slideDown 0.6s ease-out;
        }

        .contact-item {
            animation: slideUp 0.5s ease-out backwards;
        }

        .contact-item:nth-child(1) {
            animation-delay: 0.1s;
        }

        .contact-item:nth-child(2) {
            animation-delay: 0.2s;
        }

        .contact-item:nth-child(3) {
            animation-delay: 0.3s;
        }

        .contact-item:nth-child(4) {
            animation-delay: 0.4s;
        }

        .social-section {
            animation: slideUp 0.5s ease-out 0.5s backwards;
        }

        .institute-name {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            color: white;
            margin-bottom: 4px;
            position: relative;
            z-index: 1;
        }

        /* Content Area */
        .content-area {
            flex: 1;
            overflow-y: auto;
            padding: 6%;
        }

        .content-area::-webkit-scrollbar {
            width: 4px;
        }

        .content-area::-webkit-scrollbar-track {
            background: #f0f0f0;
        }

        .content-area::-webkit-scrollbar-thumb {
            background: var(--sub-accent);
            border-radius: 2px;
        }

        /* Contact Card */
        .contact-item {
            margin-bottom: 14px;
            padding: 14px;
            background: #f8f7ff;
            border-radius: 12px;
            border-left: 3px solid;
            transition: all 0.2s ease;
        }

        .contact-item:hover {
            background: #f0eeff;
            transform: translateX(2px);
        }

        .contact-item.navy {
            border-left-color: var(--accent);
        }

        .contact-item.sky {
            border-left-color: var(--sub-accent);
        }

        .contact-item.orange {
            border-left-color: var(--color-1);
        }

        .contact-item.gold {
            border-left-color: var(--color-2);
        }

        .contact-item-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 8px;
        }

        .contact-icon {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            flex-shrink: 0;
        }

        .contact-icon.navy {
            background: linear-gradient(135deg, var(--accent), #5551b0);
        }

        .contact-icon.sky {
            background: linear-gradient(135deg, var(--sub-accent), #0882b5);
        }

        .contact-icon.orange {
            background: linear-gradient(135deg, var(--color-1), #d45c14);
        }

        .contact-icon.gold {
            background: linear-gradient(135deg, var(--color-2), #d4b010);
        }

        .contact-icon i {
            width: 16px;
            height: 16px;
        }

        .contact-title {
            font-weight: 700;
            color: #1e1b4b;
            font-size: 0.85rem;
        }

        .contact-content {
            color: var(--color-3);
            font-size: 0.8rem;
            line-height: 1.5;
            margin-left: 42px;

        }

        .contact-link {
            color: var(--color-3);
            text-decoration: none;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            margin-top: 4px;
            transition: color 0.2s ease;
            overflow-wrap: normal;
            word-break: keep-all;
        }

        .contact-link:hover {
            color: var(--accent);
        }

        .phone-link {
            color: var(--color-3);
            text-decoration: none;
            font-weight: 500;
            display: block;
            transition: color 0.2s ease;
        }

        .phone-link:hover {
            color: var(--color-1);
        }

        .email-link {
            color: var(--color-3);
            text-decoration: none;
            font-weight: 500;
            word-break: break-all;
            transition: color 0.2s ease;
        }

        .email-link:hover {
            color: var(--sub-accent);
        }

        /* Social Section */
        .social-section {
            background: #f8f7ff;
            border-radius: 12px;
            padding: 12px;
            text-align: center;
            margin-top: 14px;
        }

        .social-title {
            font-weight: 700;
            color: #1e1b4b;
            font-size: 0.85rem;
            margin-bottom: 10px;
        }

        .social-buttons {
            display: flex;
            gap: 10px;
            justify-content: center;
        }

        .social-btn {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.2s ease;
            color: white;
        }

        .social-btn.instagram {
            background: linear-gradient(135deg, #f09433, #dc2743);
        }

        .social-btn.facebook {
            background: #1877f2;
        }

        .social-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
        }

        .social-btn i {
            width: 16px;
            height: 16px;
        }

        body {
            box-sizing: border-box;
        }