    .influencer-section {
        max-width: 100%;
        margin: 0 auto;
        padding: 60px 20px;
        background: #ffffff;
    }

    /* Tab Navigation */
    .tab-navigation {
        display: flex;
        justify-content: center;
        gap: 0;
        margin-bottom: 60px;
        border-bottom: 2px solid #e5e7eb;
    }

    .tab-link {
        background: transparent;
        border: none;
        color: #6b7280;
        font-size: 18px;
        font-weight: 600;
        padding: 20px 60px;
        cursor: pointer;
        position: relative;
        transition: all 0.3s ease;
        border-bottom: 3px solid transparent;
        font-family: inherit;
    }

    .tab-link:hover {
        color: #1f2937;
        background: #f9fafb;
    }

    .tab-link.active-tab {
        color: #2563eb;
        border-bottom-color: #2563eb;
        background: #eff6ff;
    }

    .tab-link i {
        margin-right: 8px;
    }

    /* Tab Panels */
    .tab-panel {
        display: none;
        opacity: 0;
    }

    .tab-panel.active-panel {
        width: 1400px;
        margin:0px auto;
        display: block;
        animation: fadeSlideIn 0.5s ease forwards;
    }

    @keyframes fadeSlideIn {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Grid Layout */
    .content-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: start;
    }

    /* Video Container */
    .video-box {
        background: #f3f4f6;
        border-radius: 16px;
        overflow: hidden;
        height: 700px;
        position: sticky;
        top: 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        border: 1px solid #e5e7eb;
    }

    .video-box video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .video-box iframe {
        width: 100%;
        height: 100%;
        border: none;
    }

    /* Form Container */
    .form-box {
        background: #ffffff;
        border-radius: 16px;
        padding: 50px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        border: 1px solid #e5e7eb;
    }

    .form-title {
        font-size: 38px;
        font-weight: 700;
        margin-bottom: 40px;
        color: #111827;
        letter-spacing: -0.5px;
    }

    /* Form Inputs */
    .form-field {
        margin-bottom: 25px;
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-bottom: 25px;
    }

    .input-field {
        width: 100%;
        padding: 18px 22px;
        background: #f9fafb;
        border: 1px solid #d1d5db;
        border-radius: 10px;
        color: #111827;
        font-size: 15px;
        transition: all 0.3s ease;
        font-family: inherit;
    }

    .input-field:focus {
        outline: none;
        border-color: #2563eb;
        background: #ffffff;
        box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    }

    .input-field::placeholder {
        color: #9ca3af;
    }

    textarea.input-field {
        min-height: 130px;
        resize: vertical;
    }

    select.input-field {
        cursor: pointer;
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%239ca3af' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 18px center;
        padding-right: 45px;
    }

    select.input-field option {
        background: #ffffff;
        color: #111827;
    }

    /* Date Input */
    input[type="date"].input-field {
        position: relative;
        cursor: pointer;
    }

    input[type="date"].input-field::-webkit-calendar-picker-indicator {
        cursor: pointer;
        filter: invert(0.4);
        padding: 5px;
    }

    /* Checkbox Group */
    .checkbox-container {
        margin-bottom: 30px;
    }

    .checkbox-label {
        display: block;
        color: #6b7280;
        font-size: 13px;
        font-weight: 600;
        margin-bottom: 16px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .checkbox-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .checkbox-item {
        display: flex;
        align-items: center;
        gap: 12px;
        cursor: pointer;
        padding: 8px;
        border-radius: 6px;
        transition: background 0.2s;
        background: #f9fafb;
    }

    .checkbox-item:hover {
        background: #f3f4f6;
    }

    .checkbox-item input[type="checkbox"] {
        width: 20px;
        height: 20px;
        cursor: pointer;
        accent-color: #2563eb;
    }

    .checkbox-item label {
        color: #374151;
        cursor: pointer;
        font-size: 15px;
        user-select: none;
    }

    .single-checkbox {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 35px;
        padding: 12px;
        background: #eff6ff;
        border-radius: 8px;
        border: 1px solid #dbeafe;
    }

    .single-checkbox input[type="checkbox"] {
        width: 20px;
        height: 20px;
        cursor: pointer;
        accent-color: #2563eb;
        flex-shrink: 0;
    }

    .single-checkbox label {
        color: #1e40af;
        cursor: pointer;
        font-size: 15px;
        user-select: none;
    }

    /* Submit Button */
    .submit-btn {
        width: 100%;
        padding: 20px;
        background: #2563eb;
        color: #ffffff;
        border: none;
        border-radius: 10px;
        font-size: 16px;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        font-family: inherit;
    }

    .submit-btn:hover {
        background: #1d4ed8;
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
    }

    .submit-btn:active {
        transform: translateY(-1px);
    }

    /* Chat Widget */
    .chat-widget {
        position: fixed;
        bottom: 30px;
        right: 30px;
        z-index: 1000;
    }

    .chat-bubble {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: 0 5px 25px rgba(37, 99, 235, 0.4);
        transition: all 0.3s ease;
        animation: pulse-ring 2s infinite;
    }

    @keyframes pulse-ring {
        0% {
            box-shadow: 0 5px 25px rgba(37, 99, 235, 0.4), 0 0 0 0 rgba(37, 99, 235, 0.3);
        }
        50% {
            box-shadow: 0 5px 25px rgba(37, 99, 235, 0.4), 0 0 0 15px rgba(37, 99, 235, 0);
        }
        100% {
            box-shadow: 0 5px 25px rgba(37, 99, 235, 0.4), 0 0 0 0 rgba(37, 99, 235, 0);
        }
    }

    .chat-bubble:hover {
        transform: scale(1.1);
    }

    .chat-bubble img {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid #ffffff;
    }

    .chat-text {
        position: absolute;
        right: 85px;
        top: 50%;
        transform: translateY(-50%);
        background: #2563eb;
        color: #ffffff;
        padding: 12px 22px;
        border-radius: 25px;
        font-weight: 600;
        white-space: nowrap;
        box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
        animation: fadeInRight 0.5s ease;
    }

    @keyframes fadeInRight {
        from {
            opacity: 0;
            transform: translate(10px, -50%);
        }
        to {
            opacity: 1;
            transform: translate(0, -50%);
        }
    }

    /* Scroll to top */
    .scroll-top {
        position: fixed;
        bottom: 30px;
        right: 120px;
        width: 50px;
        height: 50px;
        background: #ffffff;
        border-radius: 50%;
        display: none;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 1000;
        color: #2563eb;
        border: 2px solid #e5e7eb;
    }

    .scroll-top.show {
        display: flex;
    }

    .scroll-top:hover {
        background: #2563eb;
        color: #ffffff;
        transform: translateY(-5px);
        border-color: #2563eb;
    }

    /* Success Message */
    .success-message {
        position: fixed;
        top: 30px;
        right: 30px;
        background: linear-gradient(135deg, #10b981, #059669);
        color: white;
        padding: 20px 30px;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
        z-index: 2000;
        display: none;
        align-items: center;
        gap: 15px;
        animation: slideInRight 0.4s ease;
    }

    @keyframes slideInRight {
        from {
            transform: translateX(400px);
            opacity: 0;
        }
        to {
            transform: translateX(0);
            opacity: 1;
        }
    }

    .success-message.show {
        display: flex;
    }

    .success-message i {
        font-size: 24px;
    }

    .success-message .message-content h4 {
        font-size: 16px;
        margin-bottom: 4px;
        color: #ffffff;
    }

    .success-message .message-content p {
        font-size: 14px;
        opacity: 0.9;
        color: #ffffff;
    }

    /* Loading State */
    .submit-btn.loading {
        position: relative;
        color: transparent;
        pointer-events: none;
    }

    .submit-btn.loading::after {
        content: '';
        position: absolute;
        width: 20px;
        height: 20px;
        top: 50%;
        left: 50%;
        margin-left: -10px;
        margin-top: -10px;
        border: 3px solid rgba(255, 255, 255, 0.3);
        border-top-color: #ffffff;
        border-radius: 50%;
        animation: spin 0.8s linear infinite;
    }

    @keyframes spin {
        to { transform: rotate(360deg); }
    }

    /* Responsive */
    @media (max-width: 1024px) {
        .content-grid {
            grid-template-columns: 1fr;
        }

        .video-box {
            height: 450px;
            position: relative;
            top: 0;
            order: -1;
        }

        .form-box {
            padding: 40px;
        }

        .influencer-section {
            padding: 40px 20px;
        }
    }

    @media (max-width: 768px) {
			.tab-panel.active-panel{
			width:100%;
		}
       
        .tab-link {
            padding: 16px 20px;
            text-align: center;
            border-bottom: 1px solid #e5e7eb;
            width: 100%;
        }

        .tab-link.active-tab::after {
            display: none;
        }

        .form-row {
            grid-template-columns: 1fr;
        }

        .checkbox-grid {
            grid-template-columns: 1fr;
        }

        .form-title {
            font-size: 28px;
        }

        .form-box {
            padding: 30px 20px;
        }

        .video-box {
            height: 350px;
        }

        .chat-widget {
            bottom: 20px;
            right: 20px;
        }

        .chat-text {
            display: none;
        }

        .scroll-top {
            right: 90px;
            bottom: 20px;
            width: 45px;
            height: 45px;
        }

        .success-message {
            top: 20px;
            right: 20px;
            left: 20px;
            padding: 16px 20px;
        }
    }

    @media (max-width: 480px) {
        .influencer-section {
            padding: 30px 15px;
        }

        .tab-link {
            font-size: 16px;
            padding: 14px 15px;
        }

        .form-title {
            font-size: 24px;
            margin-bottom: 30px;
        }

        .input-field {
            padding: 16px 18px;
            font-size: 14px;
        }

        .submit-btn {
            padding: 18px;
            font-size: 14px;
        }
    }