About Us

Tell your story

To provide couples with breathtaking wedding photography that tells their story with authenticity, creativity, and style.

Photography close up of a red flower.
Black and white photography close up of a flower.

About Us

MBA STUDIO is a premier wedding photography company founded by Ravikant Kumar, an MBA graduate with a deep passion for capturing life’s most cherished moments. With a keen eye for candid photography, MBA STUDIO specializes in telling the unique love stories of every couple through natural and emotional imagery.

Our approach revolves around capturing the true essence of your special day in an authentic and unobtrusive manner. We focus on real moments, genuine emotions, and unposed interactions, ensuring that each photograph is a beautiful, timeless reflection of your wedding day.

At MBA STUDIO, we pride ourselves on our professional, creative, young, and friendly team. Each member is committed to delivering exceptional service and a personalized experience, ensuring that your wedding memories are captured in the most artistic and heartfelt way.

Whether it’s the stolen glance, the joyful laughter, or the quiet moments of reflection, we believe that the most meaningful photographs are those that feel real. MBA STUDIO is here to make your wedding day unforgettable, one frame at a time.

Our services

Image for service

Pre wedding Shoot

Like flowers that bloom in unexpected places, every story unfolds with beauty and resilience

Image for service

Wedding Shoot

Like flowers that bloom in unexpected places, every story unfolds with beauty and resilience

Image for service

Event Shoot

Like flowers that bloom in unexpected places, every story unfolds with beauty and resilience

What people are saying

“Superb product and customer service!”

Jo Mulligan
Atlanta, GA
Picture of a person typing on a typewriter.

Pricing

Cancel or pause anytime.

Free

0€

  • Get access to our paid articles and weekly newsletter.
  • Join our IRL events.
  • Get a free tote bag.
  • An elegant addition of home decor collection.
  • Join our forums.

Single

20€/month

  • Get access to our paid articles and weekly newsletter.
  • Join our IRL events.
  • Get a free tote bag.
  • An elegant addition of home decor collection.
  • Join our forums.


<!DOCTYPE html>
<html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Budget Analyzer</title>
  <script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="bg-gray-50 text-gray-800">
  <div class="max-w-2xl mx-auto p-6 mt-10 bg-white rounded-xl shadow-md">
    <h1 class="text-2xl font-bold mb-6 text-center">💰 Budget Analyzer</h1>
    <form method="POST" class="space-y-4">
      <input name="income" type="number" step="0.01" placeholder="Total Income" required class="w-full p-2 border rounded" />
      {% for field in ['rent','utilities','groceries','transport','entertainment','savings','misc'] %}
        <input name="{{field}}" type="number" step="0.01" placeholder="{{ field|capitalize }}" class="w-full p-2 border rounded" />
      {% endfor %}
      <button class="w-full mt-4 bg-blue-600 text-white p-2 rounded hover:bg-blue-700">Analyze</button>
    </form>

    {% if result %}
      <div class="mt-8 border-t pt-4">
        <h2 class="text-xl font-semibold">Summary</h2>
        <p><strong>Total Income:</strong> ₹ {{ result.income }}</p>
        <p><strong>Total Expenses:</strong> ₹ {{ result.total_expenses }}</p>
        <p><strong>Balance:</strong> ₹ {{ result.balance }}</p>
        <p class="mt-2 text-red-500"><strong>Status:</strong> {{ result.status }}</p>

        <h3 class="mt-4 font-semibold">Expense Breakdown</h3>
        <ul class="list-disc ml-6">
          {% for category, value in result.expenses.items() %}
            <li>{{ category }}: ₹ {{ value }}</li>
          {% endfor %}
        </ul>
      </div>
    {% endif %}
  </div>
</body>
</html>