diff --git a/MAUI/Badge-View/Badge-customization.md b/MAUI/Badge-View/Badge-customization.md
index 14c267eb12..399852c730 100644
--- a/MAUI/Badge-View/Badge-customization.md
+++ b/MAUI/Badge-View/Badge-customization.md
@@ -345,6 +345,227 @@ Content = sfBadgeView;

+## Badge Alignment and Sizing
+
+The [BadgeAlignment](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Core.BadgeSettings.html#Syncfusion_Maui_Core_BadgeSettings_BadgeAlignment) property positions the badge text relative to the [SfBadgeView's](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Core.SfBadgeView.html?tabs=tabid-1) content. You can set this to Start, Center, or End. However, the final visual position of the badge is also dependent on how the [SfBadgeView](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Core.SfBadgeView.html?tabs=tabid-1) and its Content are sized. The following scenarios explain how alignment behaves based on different size configurations.
+
+### 1. Alignment with a Fixed Size on SfBadgeView
+
+When an explicit WidthRequest and HeightRequest are set directly on the [SfBadgeView](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Core.SfBadgeView.html?tabs=tabid-1), the badge is aligned relative to these fixed dimensions. The size of the inner Content does not influence the badge's position. This approach is useful when you need the badge to appear at the edge of a specific, defined area, regardless of the content inside.
+
+{% tabs %}
+
+{% highlight xaml %}
+
+
+
+
+
+
+
+
+
+
+ {% endhighlight %}
+
+{% highlight c# %}
+
+SfBadgeView sfBadgeView = new SfBadgeView();
+sfBadgeView.HorizontalOptions = LayoutOptions.Center;
+sfBadgeView.VerticalOptions = LayoutOptions.Center;
+sfBadgeView.WidthRequest = 100;
+sfBadgeView.HeightRequest = 100;
+sfBadgeView.BadgeText = "20";
+Label label = new Label();
+label.Text = "Start";
+label.BackgroundColor = Colors.LightGray;
+label.HorizontalTextAlignment = TextAlignment.Center;
+label.VerticalTextAlignment = TextAlignment.Center;
+label.TextColor = Colors.Black;
+sfBadgeView.Content = label;
+BadgeSettings badgeSetting = new BadgeSettings();
+badgeSetting.BadgeAlignment = BadgeAlignment.Start;
+sfBadgeView.BadgeSettings = badgeSetting;
+Content = sfBadgeView;
+
+{% endhighlight %}
+
+{% endtabs %}
+
+
+
+### 2. Alignment with a Fixed Size on the Content
+
+When the [SfBadgeView](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Core.SfBadgeView.html?tabs=tabid-1) has no explicit size, but its Content does, the [SfBadgeView](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Core.SfBadgeView.html?tabs=tabid-1) wraps itself around the content. In this case, the badge is aligned relative to the bounds of the Content. This is a common scenario when you want to place a badge on a specific control like a Button or a larger Label.
+
+{% tabs %}
+
+{% highlight xaml %}
+
+
+
+
+
+
+
+
+
+
+ {% endhighlight %}
+
+{% highlight c# %}
+
+SfBadgeView sfBadgeView = new SfBadgeView();
+sfBadgeView.BadgeText = "20";
+Label label = new Label();
+label.Text = "Start";
+label.BackgroundColor = Colors.LightGray;
+label.HorizontalTextAlignment = TextAlignment.Center;
+label.VerticalTextAlignment = TextAlignment.Center;
+label.TextColor = Colors.Black;
+label.WidthRequest = 100;
+label.HeightRequest = 100;
+sfBadgeView.Content = label;
+BadgeSettings badgeSetting = new BadgeSettings();
+badgeSetting.BadgeAlignment = BadgeAlignment.Start;
+sfBadgeView.BadgeSettings = badgeSetting;
+Content = sfBadgeView;
+
+{% endhighlight %}
+
+{% endtabs %}
+
+
+
+### 3. Alignment with Automatic Sizing
+
+When neither the [SfBadgeView](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Core.SfBadgeView.html?tabs=tabid-1) nor its Content has an explicit size, both controls size themselves automatically based on their content. The [SfBadgeView](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Core.SfBadgeView.html?tabs=tabid-1) wraps its Content, and the badge is then aligned relative to the final calculated bounds of that Content.
+
+{% tabs %}
+
+{% highlight xaml %}
+
+
+
+
+
+
+
+
+
+
+ {% endhighlight %}
+
+{% highlight c# %}
+
+SfBadgeView sfBadgeView = new SfBadgeView();
+sfBadgeView.BadgeText = "20";
+Label label = new Label();
+label.Text = "Start";
+label.BackgroundColor = Colors.LightGray;
+label.HorizontalTextAlignment = TextAlignment.Center;
+label.VerticalTextAlignment = TextAlignment.Center;
+label.TextColor = Colors.Black;
+sfBadgeView.Content = label;
+BadgeSettings badgeSetting = new BadgeSettings();
+badgeSetting.BadgeAlignment = BadgeAlignment.Start;
+sfBadgeView.BadgeSettings = badgeSetting;
+Content = sfBadgeView;
+
+{% endhighlight %}
+
+{% endtabs %}
+
+
+
+## Keeping multiple badges aligned uniformly
+
+When placing several [SfBadgeView's](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Core.SfBadgeView.html?tabs=tabid-1) in the same row or grid, you can keep the visual alignment consistent across items whether a badge is present or not by using AutoHide. When [BadgeText](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Core.SfBadgeView.html#Syncfusion_Maui_Core_SfBadgeView_BadgeText) is 0 and AutoHide=True, the badge is not rendered. The content area remains uniformly aligned, so layouts stay consistent for items with and without badges.
+
+{% tabs %}
+
+{% highlight xaml %}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ...
+
+
+{% endhighlight %}
+
+{% highlight c# %}
+
+
+HorizontalStackLayout horizontalStack = new HorizontalStackLayout();
+horizontalStack.Spacing = 20;
+horizontalStack.HorizontalOptions = LayoutOptions.Center;
+horizontalStack.VerticalOptions = LayoutOptions.Center;
+
+SfAvatarView avatar1 = new SfAvatarView();
+avatar1.ContentType = ContentType.AvatarCharacter;
+avatar1.AvatarCharacter = AvatarCharacter.Avatar1;
+avatar1.CornerRadius = 25;
+avatar1.WidthRequest = 50;
+avatar1.HeightRequest = 50;
+
+BadgeSettings badgeSettings1 = new BadgeSettings();
+badgeSettings1.BadgeAlignment = BadgeAlignment.Center;
+badgeSettings1.AutoHide = true;
+badgeSettings1.Type = BadgeType.None;
+badgeSettings1.Background = Colors.Red;
+
+SfBadgeView badgeView1 = new SfBadgeView();
+badgeView1.BadgeText = "0";
+badgeView1.Content = avatar1;
+badgeView1.BadgeSettings = badgeSettings1;
+
+SfAvatarView avatar2 = new SfAvatarView();
+avatar2.ContentType = ContentType.AvatarCharacter;
+avatar2.AvatarCharacter = AvatarCharacter.Avatar2;
+avatar2.CornerRadius = 25;
+avatar2.WidthRequest = 50;
+avatar2.HeightRequest = 50;
+
+BadgeSettings badgeSettings2 = new BadgeSettings();
+badgeSettings2.BadgeAlignment = BadgeAlignment.Center;
+badgeSettings2.AutoHide = true;
+badgeSettings2.Type = BadgeType.None;
+badgeSettings2.Background = Colors.Red;
+
+SfBadgeView badgeView2 = new SfBadgeView();
+badgeView2.BadgeText = "10";
+badgeView2.Content = avatar2;
+badgeView2.BadgeSettings = badgeSettings2;
+
+horizontalStack.Children.Add(badgeView1);
+horizontalStack.Children.Add(badgeView2);
+
+Content = horizontalStack;
+
+{% endhighlight %}
+
+{% endtabs %}
+
+
+
## FontAutoScalingEnabled
The [FontAutoScalingEnabled](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Core.BadgeSettings.html#Syncfusion_Maui_Core_BadgeSettings_FontAutoScalingEnabled) property automatically scales the badge text's font size based on the operating system's text size. The default value is `false`.
diff --git a/MAUI/Badge-View/badge-customization_images/WidthForBadgeView.png b/MAUI/Badge-View/badge-customization_images/WidthForBadgeView.png
new file mode 100644
index 0000000000..eef907b0e6
Binary files /dev/null and b/MAUI/Badge-View/badge-customization_images/WidthForBadgeView.png differ
diff --git a/MAUI/Badge-View/badge-customization_images/WidthForContent.png b/MAUI/Badge-View/badge-customization_images/WidthForContent.png
new file mode 100644
index 0000000000..ee04f2c678
Binary files /dev/null and b/MAUI/Badge-View/badge-customization_images/WidthForContent.png differ
diff --git a/MAUI/Badge-View/badge-customization_images/WithoutWidth.png b/MAUI/Badge-View/badge-customization_images/WithoutWidth.png
new file mode 100644
index 0000000000..d2d97b94fc
Binary files /dev/null and b/MAUI/Badge-View/badge-customization_images/WithoutWidth.png differ
diff --git a/MAUI/Badge-View/badge-customization_images/badgeview_alignment.png b/MAUI/Badge-View/badge-customization_images/badgeview_alignment.png
new file mode 100644
index 0000000000..93f9276de6
Binary files /dev/null and b/MAUI/Badge-View/badge-customization_images/badgeview_alignment.png differ