diff --git a/maui-toolkit/Bottom-Sheet/BottomSheet-Customization.md b/maui-toolkit/Bottom-Sheet/BottomSheet-Customization.md
index 445ca534..c7dcf44e 100644
--- a/maui-toolkit/Bottom-Sheet/BottomSheet-Customization.md
+++ b/maui-toolkit/Bottom-Sheet/BottomSheet-Customization.md
@@ -415,3 +415,30 @@ SfBottomSheet bottomSheet = new SfBottomSheet
{% endhighlight %}
{% endtabs %}
+
+## Animation duration
+
+The [AnimationDuration](https://help.syncfusion.com/cr/maui-toolkit/Syncfusion.Maui.Toolkit.BottomSheet.SfBottomSheet.html#Syncfusion_Maui_Toolkit_BottomSheet_SfBottomSheet_AnimationDuration) property in `SfBottomSheet` is used to control the duration of the animation when opening and closing the bottom sheet. It allows you to customize how fast or slow the transition occurs.
+
+{% tabs %}
+{% highlight xaml %}
+
+
+
+
+
+
+
+
+{% endhighlight %}
+{% highlight c# %}
+
+SfBottomSheet bottomSheet = new SfBottomSheet
+{
+ AnimationDuration = 500,
+};
+
+{% endhighlight %}
+{% endtabs %}
diff --git a/maui-toolkit/NavigationDrawer/Side-Pane-Content.md b/maui-toolkit/NavigationDrawer/Side-Pane-Content.md
index 25a1ddd4..e0ff92a3 100644
--- a/maui-toolkit/NavigationDrawer/Side-Pane-Content.md
+++ b/maui-toolkit/NavigationDrawer/Side-Pane-Content.md
@@ -297,4 +297,43 @@ this.Content = navigationDrawer;
{% endtabs %}
-
\ No newline at end of file
+
+
+## Drawer content background
+
+You can customize the background color of the drawer’s content area by setting the [ContentBackground](https://help.syncfusion.com/cr/maui-toolkit/Syncfusion.Maui.Toolkit.NavigationDrawer.DrawerSettings.html#Syncfusion_Maui_Toolkit_NavigationDrawer_DrawerSettings_ContentBackground) property in `DrawerSettings`.
+
+{% tabs %}
+
+{% highlight xaml %}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+{% endhighlight %}
+
+{% highlight c# %}
+
+SfNavigationDrawer navigationDrawer = new SfNavigationDrawer();
+DrawerSettings drawerSettings = new DrawerSettings()
+{
+ ContentBackground = Colors.Red
+};
+navigationDrawer.DrawerSettings = drawerSettings;
+this.Content = navigationDrawer;
+
+{% endhighlight %}
+
+{% endtabs %}
\ No newline at end of file
diff --git a/maui-toolkit/Otp-Input/OtpInput-Customization.md b/maui-toolkit/Otp-Input/OtpInput-Customization.md
index 567d12d2..8f1d8a25 100644
--- a/maui-toolkit/Otp-Input/OtpInput-Customization.md
+++ b/maui-toolkit/Otp-Input/OtpInput-Customization.md
@@ -302,3 +302,23 @@ SfOtpInput otpInput = new SfOtpInput()
{% endtabs %}

+
+## Auto focus
+
+The [AutoFocus](https://help.syncfusion.com/cr/maui-toolkit/Syncfusion.Maui.Toolkit.OtpInput.SfOtpInput.html#Syncfusion_Maui_Toolkit_OtpInput_SfOtpInput_AutoFocus) property in SfOtpInput is used to automatically set focus to the first input field when the control is loaded. This improves usability by allowing users to start entering the OTP immediately without manually selecting a field.
+
+{% tabs %}
+{% highlight xaml %}
+
+
+
+{% endhighlight %}
+{% highlight C# %}
+
+SfOtpInput otpInput = new SfOtpInput()
+{
+ AutoFocus = true
+};
+
+{% endhighlight %}
+{% endtabs %}
\ No newline at end of file
diff --git a/maui-toolkit/TabView/Tab-Bar-Customization.md b/maui-toolkit/TabView/Tab-Bar-Customization.md
index 6db24aa4..0914e34e 100644
--- a/maui-toolkit/TabView/Tab-Bar-Customization.md
+++ b/maui-toolkit/TabView/Tab-Bar-Customization.md
@@ -1,7 +1,7 @@
---
layout: post
title: Customize the Tab Bar in .NET MAUI Tab View (SfTabView) | Syncfusion®
-description: Learn how to customize the header in Syncfusion® .NET MAUI Tab View (SfTabView) control.
+description: Learn how to customize tab bar layout, header appearance, spacing, alignment, and background in Syncfusion® .NET MAUI Tab View (SfTabView) control.
platform: maui-toolkit
control: SfTabView
documentation: UG
@@ -145,6 +145,23 @@ SfTabView tabView = new SfTabView();
{% endtabs %}
+## Header item spacing
+
+The [HeaderItemSpacing](https://help.syncfusion.com/cr/maui-toolkit/Syncfusion.Maui.Toolkit.TabView.SfTabView.html#Syncfusion_Maui_Toolkit_TabView_SfTabView_HeaderItemSpacing) property is used to control the spacing between adjacent tab header items in the SfTabView. This property helps improve readability and visual alignment by adjusting the gap between each tab header.
+
+{% tabs %}
+
+{% highlight xaml %}
+
+{% endhighlight %}
+
+{% highlight C# %}
+SfTabView tabView = new SfTabView();
+tabView.HeaderItemSpacing= 20 ;
+{% endhighlight %}
+
+{% endtabs %}
+
## Tab bar placement options
The .NET MAUI Tab View provides two options for determining how the tab bar aligns relative to the tab content. The options are top and bottom. This can be done using the [TabBarPlacement](https://help.syncfusion.com/cr/maui-toolkit/Syncfusion.Maui.Toolkit.TabView.SfTabView.html#Syncfusion_Maui_Toolkit_TabView_SfTabView_TabBarPlacement) property.