        .video-wrapper {
            position: relative;
            padding-bottom: 56.25%;
            /* 16:9 ratio */
            height: 0;
            overflow: hidden;
            border-radius: 10px;
            margin-bottom: 15px;
        }

        .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
            border-radius: 10px;
        }



        /* Achievements Box */
        .achievements {
            background: #ebf0f5;
            padding: 50px 20px;
            text-align: center;
        }

        .achievement-card {
            background: #fff;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            transition: 0.3s;
        }

        .achievement-card:hover {
            transform: translateY(-5px);
        }

        .achievement-card i {
            font-size: 30px;
            margin-bottom: 10px;
            color: #007bff;
        }

        .achievement-card h4 {
            font-weight: bold;
            font-size: 22px;
            margin: 10px 0 5px;
        }

        .achievement-card p {
            color: #555;
            margin: 0;
        }

        /* Branch Section */
        .branch-section {
            padding: 60px 20px;
            text-align: center;
        }

        .branch-section h2 {
            font-size: 20px;
            color: #444;
        }

        .branch-section h3 {
            font-size: 32px;
            font-weight: bold;
            color: #002060;
            margin: 10px 0 20px;
        }

        .branch-section p {
            color: #666;
            max-width: 700px;
            margin: 0 auto 40px;
        }

        /* Branch Cards */
        .branch-card {
            background: #f8f8f8;
            border: none;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            position: relative;
            text-align: left;
            transition: all 0.3s ease;
            padding: 20px;
            height: 100%;
        }

        .branch-card:hover {
            transform: translateY(-5px);
        }

        .branch-card h5 {
            font-weight: bold;
            color: #002060;
            margin-bottom: 5px;
        }

        .branch-card small {
            display: block;
            font-size: 14px;
            color: #777;
            margin-bottom: 15px;
        }

        .branch-card p {
            font-size: 14px;
            color: #444;
            line-height: 1.6;
        }

        .arrow-btn {
            display: flex;
            justify-content: center;
            align-items: center;
            background: #ff3b3b;
            color: #fff;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            text-decoration: none;
            font-size: 20px;
            position: absolute;
            bottom: 20px;
            right: 20px;
        }

        .arrow-btn:hover {
            background: #e00000;
        }

        .logo-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 10px;
            /* gap kam kar diya */

        }

        .logo-grid img:hover {
            transform: scale(1.08);
            /* halka zoom */
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
            /* zyada shadow */
            border-color: #00bcd4;
            /* border highlight */
        }

        .logo-grid img {
            width: 100%;
            height: 100px;
            object-fit: contain;
            border: 1px solid #e0e0e0;
            background: #fff;
            padding: 10px;
            /* kam padding taki box me space kam ho */
            border-radius: 6px;
            /* thoda rounded look */
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
            /* halka shadow clean look ke liye */
        }

        .section-title {
            font-weight: 700;
            font-size: 2rem;
        }

        .highlight-line {
            display: inline-block;
            width: 60px;
            height: 5px;
            background: teal;
            border-radius: 4px;
            margin-top: 8px;
        }
