body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #e8f0ff, #ffffff);
  }
  
  /* Logo & title */
  .firm-title {
    font-size: 26px;
    font-weight: 600;
    color: #FFD700;
    letter-spacing: 1px;
  }
  .emblem {
    height: 60px;
    margin-right: 12px;
    filter: drop-shadow(0 0 3px #FFD700);
  }
  
  /* Navbar */
  .navbar {
    background: linear-gradient(to right, #000, #1a1a1a);
    padding: 15px 20px;
  }
  .navbar-brand {
    display: flex;
    align-items: center; /* Vertical align for logo + title */
  }
  .nav-link {
    color: #fff !important;
    font-weight: 500;
    margin-left: 20px;
  }
  .nav-link:hover {
    color: #FFD700 !important;
  }
  
  /* Responsive Navbar */
  @media (max-width: 768px) {
    .navbar {
      padding: 10px 15px;
    }
    .navbar-brand {
      align-items: center;
      gap: 6px; /* Small gap between logo and title */
    }
    .nav-link {
      margin-left: 0;
      font-size: 14px;
      padding: 8px 0;
    }
  }
  @media (max-width: 576px) {
    .firm-title {
      font-size: 18px;
      line-height: 1.2; /* Keeps title vertically centered */
    }
    .emblem {
      height: 40px;
    }
    .navbar-brand {
      gap: 4px;
    }
  }
  
  /* Section */
  .section-wrapper {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 20px;
  }
  .carousel img {
    border-radius: 12px;
    height: 350px;
    object-fit: cover;
  }
  @media (max-width: 768px) {
    .carousel img {
      height: 200px;
    }
  }
  
  /* Footer */
  footer {
    background-color: #111;
  }
  footer h6 {
    color: #FFD700;
  }
  footer a {
    color: #fff;
  }
  footer a:hover {
    text-decoration: underline;
  }
  .social-links a {
    font-size: 20px;
    margin-right: 10px;
    color: #fff;
  }
  .social-links a:hover {
    color: #FFD700;
  }
  .navbar-brand img {
    max-height: 40px;
  }

  /* Adjust font for mobile */
  @media (max-width: 576px) {
    .firm-title {
      font-size: 16px;
    }
    .navbar-brand img {
      max-height: 35px;
    }
  }
  
  /* Brand logo style */
  .navbar-brand img {
    max-height: 40px;
    height: auto;
  }

  /* Firm title style */
  .firm-title {
    font-size: 18px;
    font-weight: 500;
    white-space: nowrap;
  }

  /* Navbar links default */
  .navbar-nav .nav-link {
    padding: 10px 15px;
    transition: background-color 0.3s ease;
  }

  /* Hover effect */
  .navbar-nav .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
  }

  /* Mobile view adjustments */
  @media (max-width: 991px) {
    /* Brand logo smaller */
    .navbar-brand img {
      max-height: 35px;
    }

    /* Stack brand text below logo */
    .firm-title {
      font-size: 16px;
    }

    /* Make nav links full-width and separated */
    .navbar-nav .nav-link {
      display: block;
      width: 100%;
      text-align: center;
      background-color: rgba(255, 255, 255, 0.05);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 0;
    }

    /* Remove last link's border */
    .navbar-nav .nav-item:last-child .nav-link {
      border-bottom: none;
    }

    /* Hover effect for mobile */
    .navbar-nav .nav-link:hover {
      background-color: rgba(255, 255, 255, 0.15);
    }
  }

