        .containerr {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .col-xl-8 {
            max-width: 900px;
            margin: 0 auto;
        }

        /* Video Gallery Section */
        .video-gallery-section {
            margin-bottom: 10px;
            padding-bottom: 10px; 
        }

        .video-gallery-title {
            text-align: center;
            font-size: 24px;
            font-weight: 600;
            color: #222;
            margin-bottom: 40px;
            padding-top: 20px;
        }

        .video-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            width: 100%;
            margin-bottom: 40px;
        }

        .video-card {
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .video-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
        }

        .video-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            cursor: pointer;
            display: block;
        }

        .video-card-title {
            padding: 15px;
            font-size: 13px;
            font-weight: 500;
            color: #333;
            line-height: 1.4;
            text-align: center;
            flex-grow: 1;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .video-link {
            display: block;
            width: 100%;
            height: 100%;
        }

        /* Info Section */
        .info-section {
            background-color: #f5f5f5;
            padding: 40px;
            border-radius: 8px;
            margin-bottom: 60px;
            line-height: 1.8;
        }

        .info-section p {
            margin-bottom: 18px;
            color: #444;
            font-size: 15px;
        }

        .info-section strong {
            color: #222;
            font-weight: 600;
        }

        .info-highlight {
            background-color: #e8f5e9;
            padding: 20px;
            border-left: 4px solid #4caf50;
            border-radius: 4px;
            margin: 25px 0;
        }

        .info-highlight strong {
            color: #2e7d32;
        }

        .info-highlight br {
            margin-bottom: 8px;
        }

        /* Form Section */
        .form-section {
            margin-top: 10px;
            padding-top: 10px;
        }

        .form-section-title {
            text-align: center;
            font-size: 28px;
            font-weight: 600;
            color: #222;
            margin-bottom: 40px;
        }

        .register-form {
            display: block;
            width: 100%;
        }

        .form-row {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 0;
        }

        .form-group {
            flex: 1 1 calc(50% - 10px);
            min-width: 200px;
            display: flex;
            flex-direction: column;
        }

        .form-group.full-width {
            flex: 1 1 100%;
        }

        .form-group label {
            font-size: 12px;
            font-weight: 600;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 8px;
            display: block;
        }

        input[type="text"],
        input[type="email"],
        select,
        textarea {
            width: 100%;
            padding: 12px 14px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 14px;
            font-family: inherit;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
            background-color: #fff;
        }

        input[type="text"]:focus,
        input[type="email"]:focus,
        select:focus,
        textarea:focus {
            outline: none;
            border-color: #008b8b;
            box-shadow: 0 0 0 3px rgba(0, 139, 139, 0.1);
        }

        select {
            cursor: pointer;
            background-color: #fff;
            color: #333;
        }

        select option {
            padding: 10px;
        }

        /* Captcha Container */
        .captcha-wrapper {
            margin: 30px 0;
            display: flex;
            justify-content: center;
        }

        .g-recaptcha {
            display: inline-block;
        }

        /* Error Messages */
        .error-message {
            color: #c62828;
            font-weight: 600;
            font-size: 16px;
            margin-bottom: 20px;
            padding: 15px;
            background-color: #ffebee;
            border-radius: 4px;
            border-left: 4px solid #c62828;
        }

        .success-message {
            color: #2e7d32;
            font-weight: 600;
            font-size: 16px;
            margin-bottom: 20px;
            padding: 15px;
            background-color: #e8f5e9;
            border-radius: 4px;
            border-left: 4px solid #4caf50;
        }

        .success-message p {
            margin-top: 10px;
        }

        /* Submit Button */
        .form-submit {
            display: flex;
            justify-content: center;
            margin-top: 40px;
            margin-bottom: 40px;
        }

        input[type="submit"] {
            padding: 14px 50px;
            background-color: #008b8b;
            color: white;
            border: none;
            border-radius: 4px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.2s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        input[type="submit"]:hover {
            background-color: #006666;
            transform: translateY(-2px);
        }

        input[type="submit"]:active {
            transform: translateY(0);
        }

        /* Video Modal */
        #videoModal {
            display: none;
            position: fixed;
            z-index: 9999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0, 0, 0, 0.9);
        }

        #videoModal > div {
            position: relative;
            margin: 5% auto;
            width: 90%;
            max-width: 900px;
        }

        #closeModal {
            position: absolute;
            top: -40px;
            right: 0;
            color: #fff;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
            z-index: 10000;
            transition: color 0.3s ease;
        }

        #closeModal:hover {
            color: #ccc;
        }

        #videoFrame {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        .video-frame-wrapper {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            background: #000;
        }

        /* Responsive Design */
        @media only screen and (max-width: 768px) {
            .video-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }

            .video-card img {
                height: 150px;
            }

            .form-group {
                flex: 1 1 100%;
            }

            .slider-content h1 span {
                font-size: 20px;
                padding: 12px 20px;
            }

            .breadcrumb-itemm span {
                font-size: 14px;
                padding: 8px 15px;
            }

            .form-section-title {
                font-size: 24px;
            }

            .info-section {
                padding: 25px;
            }

            input[type="submit"] {
                padding: 12px 40px;
                font-size: 14px;
            }
        }

        @media only screen and (max-width: 480px) {
            .video-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .video-card img {
                height: 200px;
            }

            .slider-content h1 span {
                font-size: 16px;
                padding: 10px 15px;
            }

            .breadcrumb-itemm span {
                font-size: 12px;
                padding: 6px 12px;
            }

            .form-section-title {
                font-size: 20px;
                margin-bottom: 30px;
            }

            .container {
                padding: 0 15px;
            }

            .info-section {
                padding: 15px;
                font-size: 14px;
                line-height: 1.6;
            }

            .advisors-area {
                padding: 30px 0;
            }

            .video-gallery-section {
                margin-bottom: 50px;
                padding-bottom: 40px;
            }

            #videoModal > div {
                width: 95%;
            }

            #closeModal {
                font-size: 28px;
                top: -35px;
            }

            .g-recaptcha {
                transform: scale(0.85);
                transform-origin: 0 0;
                margin-left: -30px;
            }
        }