/* Base Header Styling */
#main-header {
    transition: top 0.3s, box-shadow 0.3s;
    position: relative;
    z-index: 50;
  }
  
  #main-header.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  /* Remove margins and padding for mobile view */
  body {
    margin: 0;
    padding: 0;
  }
  
  .container {
    width: 100%;
  }
  
  /* Mobile Navigation Styling */
  #mobile-menu {
    overflow: hidden;
    transition: max-height 0.3s ease-in-out; /* Smooth expand/collapse animation */
  }
  
  #mobile-menu.active {
    max-height: 100vh; /* Allow full dropdown */
    overflow: visible;
  }
  /* General styles for the logo */
.navbar-logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Adjustments for mobile screens */
@media (max-width: 768px) {
  .navbar-logo-container {
    margin-left: -15px; /* Remove any left margin */
    padding-left: 0; /* Ensure no padding on the left */
  }

  .navbar-logo {
    max-width: 120px; /* Adjust the logo size for smaller screens */
    height: auto; /* Maintain aspect ratio */
  }
}

  /* Adjust logo styling */
  .navbar-logo {
    height: 3rem; /* Adjust logo height */
    max-width: 200px;
    object-fit: contain;
  }
  
  @media (min-width: 768px) {
    #mobile-menu {
      display: none; /* Hide mobile menu on larger screens */
    }
  }
  
  /* Dropdown Styles */
  .group:hover .group-hover\:block {
    display: block;
  }
  
  nav .group-hover\:block {
    display: none;
    position: absolute;
    z-index: 10;
    min-width: 288px; /* Increased width for dropdown */
    flex-direction: column;
  }
  
  /* Dropdown Hover */
  nav .group-hover\:block a {
    padding-left: 16px;
    white-space: nowrap;
  }
  
  /* Blob Styling */
  .bg-blob {
    position: absolute;
    background-color: #E7584C;
    border-radius: 50%;
    mix-blend-mode: multiply;
    filter: blur(3rem);
    opacity: 0.5;
  }
  
  /* Specific Blob Sizes and Positions */
  .bg-blob-top-left {
    width: 250px;
    height: 250px;
    top: -64px;
    left: -64px;
  }
  
  .bg-blob-bottom-right {
    width: 250px;
    height: 250px;
    bottom: -64px;
    right: -64px;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .bg-blob {
      filter: blur(2rem); /* Reduce the blur for mobile */
      opacity: 0.4; /* Slightly lighter opacity */
    }
  
    .bg-blob-top-left {
      width: 150px; /* Smaller blob for mobile */
      height: 150px;
      top: -32px;
      left: -32px;
    }
  
    .bg-blob-bottom-right {
      width: 150px; /* Smaller blob for mobile */
      height: 150px;
      bottom: -32px;
      right: -32px;
    }
  }
  .submenu {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
  }
  
  .group:hover .submenu {
    display: block;
    opacity: 1;
  }
  
  .group-hover:block {
    display: block !important;
  }
  