    .home {
        width: 100% !important;
        height: 100vh !important;
    }
    @keyframes slides {
          from {
            transform: translateX(0);
          }
          to {
            transform: translateX(-100%);
          }
        }

        .logos {
          overflow: hidden;
          padding: 30px 0px;
          white-space: nowrap;
          position: relative;
        }

        .logos:before, .logos:after {
          position: absolute;
          top: 0;
          content: '';
          width: 250px;
          height: 100%;
          z-index: 2;
        }

        .logos:before {
          left: 0;
          background: linear-gradient(to left, rgba(255,255,255,0), rgb(255, 255, 255));
        }

        .logos:after {
          right: 0;
          background: linear-gradient(to right, rgba(255,255,255,0), rgb(255, 255, 255));
        }

        .logo_items {
          display: inline-block;
          animation: 35s slides infinite linear;
        }

        .logos:hover .logo_items {
          animation-play-state: paused;
        }
        .logo_items img {
          height: 80px;          /* Control logo height */
          width: 150px;           /* Maintain aspect ratio */
          max-width: 150px;      /* Prevent overly wide images */
          object-fit: contain;   /* Keep full logo visible */
          margin: 0 40px;        /* Space between logos */
          vertical-align: middle;
        }

        .logo_items img{
          height: 100px;
        }
        .logo_items img {
          max-width: 100%;
        }


        video {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          -o-object-fit: cover;
             object-fit: cover;
          -o-object-position: top center;
             object-position: top center;
        }


        /* ===== LOGO SECTION ===== */
        .logo-slider-section {
            padding: 50px 20px;
            background: #fff;
        }

        .logo-slider {
            overflow: hidden;
            position: relative;
            width: 100%;
        }

        .slide-track {
            display: flex;
            width: calc(200px * 12); /* adjust if more logos */
            animation: scroll 25s linear infinite;
        }

        .slide {
            width: 200px;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 15px;
        }

        .slide img {
            width: 120px;
            /*filter: grayscale(100%);*/
            transition: 0.3s ease;
        }

        .slide img:hover {
            filter: grayscale(0%);
            transform: scale(1.1);
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        /* ===== PLACEMENT STATS ===== */
        .stats-section {
            padding: 60px 20px;
            background: #ffb606;
            color: #fff;
        }

        .stats-container {
            display: grid;
            gap: 20px;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            max-width: 900px;
            margin: auto;
        }

        .stat-box {
            background: #fff;
            padding: 25px;
            border-radius: 10px;
            text-align: center;
            backdrop-filter: blur(4px);
            transition: 0.3s ease;
        }

        .stat-box:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-5px);
        }

        .link a{
            
            padding: 25px;
            border-radius: 10px;
            text-align: center;
            backdrop-filter: blur(4px);
            transition: 0.3s ease;
        }

        .link a:hover{
         color: #ffb606;
        transform: translateY(-5px);
        }


        .stat-box h3 {
            margin: 0 0 10px;
            font-size: 24px;
            color:#000;
        }

        .stat-box p {
            font-size: 18px;
            margin: 0;
            color: #000;
        }

        /* Overlay Background */
        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.7);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
        }

        /* Popup Box */
        .popup-box {
            position: relative;
            width: 90%;
            max-width: 450px;
            animation: zoomIn 0.4s ease;
        }

        /* Popup Image */
        .popup-box img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            display: block;
        }

        /* Close Button */
        .close-btn {
            position: absolute;
            top: -12px;
            right: -12px;
            background: #ffb606;
            color: #fff;
            font-size: 18px;
            font-weight: bold;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            text-align: center;
            line-height: 35px;
            cursor: pointer;
        }

        /* Animation */
        @keyframes zoomIn {
            from { transform: scale(0.7); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }

        /* Mobile Responsive */
        @media (max-width: 480px) {
            .popup-box {
                max-width: 95%;
            }

            .close-btn {
                width: 30px;
                height: 30px;
                line-height: 30px;
                font-size: 16px;
            }
        }