.demo-content {
            text-align: center;
            color: white;
        }

        .demo-content h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .demo-content p {
            font-size: 1.2rem;
            opacity: 0.9;
        }

        .popup-overlay {
            position: fixed;
            top:;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(4px);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .popup-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .popup {
            background: white;
            border-radius: 20px;
            max-width: 500px;
            width: 90%;
            height:600px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            overflow: hidden;
            transform: translateY(50px);
            transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .popup-overlay.active .popup {
            transform: translateY(0);
        }

        .popup-header {
            background: green;
            padding: 30px;
            position: relative;
        }

        .close-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(0, 0, 0, 0.2);
            border: none;
            color: white;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s ease;
        }

        .close-btn:hover {
            background: rgba(255, 255, 255, 0.3);
        }

        .popup-body {
            padding: 0;
            position: relative;
            height: 300px;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            padding: 40px;
            opacity: 0;
            transform: translateX(100%);
            transition: opacity 0.5s ease, transform 0.5s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .slide.active {
            opacity: 1;
            transform: translateX(0);
        }

        .slide.prev {
            transform: translateX(-100%);
        }

        .slide-icon {
            font-size: 4rem;
            margin-bottom: 20px;
        }

        .slide h2 {
            color: #333;
            margin-bottom: 15px;
            font-size: 1.8rem;
        }

        .slide p {
            color: #666;
            line-height: 1.6;
            font-size: 1rem;
        }

        .popup-footer {
            margin-top:150px;
            padding: 20px 40px;
            background: #f8f9fa;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .slide-indicators {
            display: flex;
            gap: 8px;
        }

        .indicator {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color:green;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .indicator.active {
            background-color:green;
            width: 30px;
            border-radius: 5px;
        }

        .nav-buttons {
            display: flex;
            gap: 10px;
        }

        .nav-btn {
            background:green;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 14px;
            transition: background 0.3s ease;
        }

        .nav-btn:hover {
            background: green;
        }

        .nav-btn:disabled {
            background: #ddd;
            cursor: not-allowed;
        }

        .reopen-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background:green;
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 30px;
            cursor: pointer;
            font-size: 16px;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .reopen-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
        }

        .mj{
            height:500px;
            width:500px;
            padding-top:30px;
            pading-bottom:100px;
        }
        .mj img{
            margin-top:60px;
            margin-bottom:170px;
            height:460px;
            width:500px;
        }
        .social-container {
            position: fixed;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            z-index: 1000;
        }

        .social-btn {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            width: 50px;
            height: 50px;
            margin-bottom: 15px;
            background: white;
            border-radius: 25px 0 0 25px;
            cursor: pointer;
            transition: all 1s ease;
            overflow: hidden;
            box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.2);
        }

        .social-btn:nth-child(1) { transition-delay: 0s; }
        .social-btn:nth-child(2) { transition-delay: 0.15s; }
        .social-btn:nth-child(3) { transition-delay: 0.3s; }
        .social-btn:nth-child(4) { transition-delay: 0.45s; }
        .social-btn:nth-child(5) { transition-delay: 0.6s; }

        .social-container:hover .social-btn {
            width: 200px;
            box-shadow: -4px 4px 15px rgba(0, 0, 0, 0.3);
        }

        .social-container:hover .social-btn span {
            opacity: 1;
        }

        .social-btn i {
            min-width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: white;
            transition: all 1s ease;
        }

        .social-btn span {
            font-weight: 600;
            white-space: nowrap;
            opacity: 0;
            transition: opacity 1s ease;
            padding-right: 20px;
        }

        .social-btn:hover span {
            opacity: 1;
        }

        .facebook {
            background: linear-gradient(to right, #1877f2 50px, white 50px);
        }

        .facebook i {
            background: #1877f2;
        }

        .facebook span {
            color: #1877f2;
            padding-left:2px;

        }

        .twitter {
            background: linear-gradient(to right, #1da1f2 50px, white 50px);
        }

        .twitter i {
            background: #1da1f2;
        }

        .twitter span {
            color: #1da1f2;
        }

        .instagram {
            background: linear-gradient(to right, #e4405f 50px, white 50px);
        }

        .instagram i {
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
        }

        .instagram span {
            color: #e4405f;
            padding-left:2px;

        }

        .youtube {
            background: linear-gradient(to right, #ff0000 50px, white 50px);
        }

        .youtube i {
            background: #ff0000;
        }

        .youtube span {
            color: #ff0000;
            padding-left:2px;
            
        }

        .linkedin {
            background: linear-gradient(to right, #0077b5 50px, white 50px);
        }

        .linkedin i {
            background: #0077b5;
        }

        .linkedin span {
            color: #0077b5;
            padding-left:2px;
        }
/* Simple icon replacements using Unicode */
        .icon-facebook::before { content: "f"; font-weight: bold; }
        .icon-twitter::before { content: "𝕏"; font-weight: bold; }
        .icon-instagram::before { content: "📷"; }
        .icon-youtube::before { content: "▶"; }
        .icon-linkedin::before { content: "in"; font-weight: bold; }

        /*Youtube video slider*/

        .min-slider {
            width:350px;
            height:200px;
            margin: 0 auto;
            /*float:left;*/
        }

        .video-slider {
            position: absolute;
            width:350px;
            height:200px;
            background: #000;
            border-radius: 0;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.5);
        }

        .slider-container {
          width:350px;
            height:200px;
            position: absolute;
            width: 100%;
            height:100%;
            background: #000;
        }

        .slide {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.6s ease-in-out;
        }

        .slide.active {
            opacity: 1;
        }

        .slide iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /*.nav-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(10px);
            border: none;
            width: 55px;
            height: 55px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s;
            z-index: 10;
        }

        .nav-arrow:hover {
            background: rgba(255,255,255,0.3);
        }

        .nav-arrow.prev {
            left: 25px;
        }

        .nav-arrow.next {
            right: 25px;
        }

        .arrow-icon {
            width: 0;
            height: 0;
            border-top: 12px solid transparent;
            border-bottom: 12px solid transparent;
        }
*/
      /*  .arrow-icon.left {
            border-right: 15px solid white;
        }

        .arrow-icon.right {
            border-left: 15px solid white;
        }*/

        .indicators {
            position: absolute;
            bottom: 35px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 10;
        }

        .indicator {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: rgba(255,255,255,0.4);
            cursor: pointer;
            transition: all 0.3s;
            border: 2px solid transparent;
        }

        .indicator.active {
            background: white;
            transform: scale(1.2);
        }
   