@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Rajdhani:wght@300;400;500;600;700&family=Roboto+Serif:ital,opsz,wght@0,8..144,100..900;1,8..144,100..900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');
.top-navbar {
  background-color: #1a1a1a;
  border-bottom: 1px solid #2e2e2e;
  padding: 1px;
  font-family: 'Poppins', sans-serif;
}
.top-navbar .contact-item {
  color: #cccccc;
  font-size: 0.82rem;
  text-decoration: none;
  white-space: nowrap;
}
.top-navbar .contact-item:hover {
  color: #ffffff;
}
.top-navbar .divider {
  width: 1px;
  height: 18px;
  background-color: #444;
}
.top-navbar .social-icon {
  color: #ffffff;
  font-size: 1rem;
  background-color: #2e2e2e;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.2s;
}
.top-navbar .social-icon.facebook:hover { background-color: #1877f2; }
.top-navbar .social-icon.youtube:hover  { background-color: #ff0000; }
.top-navbar .social-icon.instagram:hover{ background-color: #e1306c; }
.top-navbar .btn-appointment {
  background-color: #e03b2e;
  color: #fff;
  font-size: 0.82rem;
  border: none;
  padding: 6px 14px;
  border-radius: 4px;
  white-space: nowrap;
  font-weight: 500;
}
.top-navbar .btn-appointment:hover {
  background-color: #c0392b;
  color: #fff;
}
.py-2{
    padding: 2px;
}
/* navbar */
:root {
  --gold: #b8952a;
  --gold-light: #d4af37;
  --gold-dark: #8a6e1c;
  --dark: #1a1a1a;
  --off-white: #f9f7f2;
  --nav-height: 90px;
}
.hrs-navbar {
  background: #ffffff;
  border-bottom: 2px solid var(--gold);
  height: var(--nav-height);
  box-shadow: 0 2px 18px rgba(0,0,0,0.10);
  position: sticky;
  top: 0;
  z-index: 1040;
  padding: 0 2rem;
}
.navbar-logo-img {
  height: 80px;
  width: auto;
  display: block;
}
.hrs-nav-link {
font-family: 'Roboto', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--dark) !important;
  padding: 0.35rem 0.85rem !important;
  position: relative;
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.25s;
}
.hrs-nav-link::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -4px;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.28s cubic-bezier(.4,0,.2,1);
}
.hrs-nav-link:hover { color: var(--gold) !important; }
.hrs-nav-link:hover::after { transform: translateX(-50%) scaleX(1); }
.hrs-toggler {
  border: none;
  background: transparent;
  padding: 6px 8px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px
}
.hrs-toggler span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hrs-toggler.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hrs-toggler.open span:nth-child(2) { opacity: 0; }
.hrs-toggler.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(2px);
  z-index: 1049;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}
.sidebar-overlay.active { opacity: 1; visibility: visible; }
.hrs-sidebar {
  position: fixed;
  top: 0;
  left: -320px;
  width: 300px;
  height: 100dvh;
  background: var(--dark);
  z-index: 1050;
  transition: left 0.38s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.hrs-sidebar.open { left: 0; }
.sidebar-header {
  background: #ffffff;
  padding: 1.4rem 1.6rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--gold-dark);
}
.sidebar-logo-img { height: 60px; width: auto; }
.sidebar-close {
  background: transparent;
  border: 1.5px solid var(--gold-dark);
  color: var(--gold-light);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}
.sidebar-close:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
.sidebar-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0.5rem 1.4rem;
}
.sidebar-nav { list-style: none; padding: 0.8rem 0; margin: 0; flex: 1; }
.sidebar-nav li a {
  font-family: 'Roboto', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #b39123 !important;
  padding: 0.35rem 0.85rem !important;
  position: relative;
  white-space: nowrap;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-left: 3px solid transparent;
  transition: color 0.22s, border-color 0.22s, background 0.22s;
}
.sidebar-nav li a i { color: var(--gold); font-size: 1rem; width: 18px; text-align: center; }
.sidebar-nav li a:hover {
  color: var(--gold-light);
  border-left-color: var(--gold);
  background: rgba(184,149,42,0.07);
}
.sidebar-footer {
  padding: 1.2rem 1.6rem;
  border-top: 1px solid rgba(184,149,42,0.25);
  display: flex;
  justify-content: center;
}
.sidebar-footer-img { height: 44px; width: auto; opacity: 0.65; }
body { background: var(--off-white); font-family: Poppins; }
.demo-hero {
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 3rem 1rem;
}
.demo-hero h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.6rem, 4vw, 3rem);
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.demo-hero p { font-size: 1.15rem; color: var(--gold-dark); font-style: italic; }
/* image-slider */
.swiper-inner-slider {
  position: relative;
  overflow: hidden;
}
.swiper-inner-slider .container-fluid {
  padding-left: 0;
  padding-right: 0;
}
.hrs-swiper {
  width: 100%;
  aspect-ratio: 16 / 6;
}
.hrs-swiper .swiper-slide img {
  width: 100%;
  /*height: 100%;*/
  /*object-fit: cover;*/
  display: block;
}
/* Pagination bullets */
.hrs-swiper .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.6;
  width: 10px;
  height: 10px;
}
.hrs-swiper .swiper-pagination-bullet-active {
  background: #c9a84c;
  opacity: 1;
}
.swiper-button-prev,
.swiper-button-next {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  color: #ffffff !important;
  width: 44px !important;
  height: 44px !important;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 28px !important;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}
.swiper-button-prev:hover::after,
.swiper-button-next:hover::after {
  color: #c9a84c;
}
/* about_us */
.about_us {
  background-color: #fafaf8;
  padding-top: 80px;
  padding-bottom: 80px;
  font-family: 'Source Serif 4', serif;
}
.about_us .about-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 2.6rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}
/*.about_us .about-subheading {
  font-family: 'Roboto', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: 0.3px;
}*/
.about_us .about-text {
  font-size: 16px;
  color: #3a3a3a;
  line-height: 1.85;
  text-align: justify;
  font-family: 'Roboto', sans-serif;
}
.about_us .btn-know-more {
  background-color: #1a1a1a;
  color: #ffffff;
  font-family: 'Roboto', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 12px 30px;
  border: none;
  border-radius: 4px;
  letter-spacing: 0.5px;
  transition: background-color 0.25s ease, transform 0.2s ease;
}
.about_us .btn-know-more:hover {
  background-color: #333333;
  color: #fff;
  transform: translateY(-1px);
}
.about_us .about-image-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.13);
  height: 100%;
}
.about_us .about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* leagal issues */
.legal_issues {
  padding: 60px 0;
  background-color: #fff;
}
.legal_issues .card-body h5{
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 12px;
}
.legal_issues .section-subtitle {
  color: #555;
  font-size: 1rem;
  max-width: 680px;
  font-family: 'Roboto', sans-serif;
}
.legal_issues .card {
  border: none;
  overflow: hidden;
  border-radius:12px;
  overflow:hidden;
  transition:0.3s;
  box-shadow:0 5px 20px rgba(0,0,0,0.08);
}
.legal_issues .card:hover{
  transform:translateY(-8px);
  box-shadow:0 10px 35px rgba(0,0,0,0.15);
}

.legal_issues .card-img-wrapper {
  position: relative;
  overflow: hidden;
}
.legal_issues .card-img-wrapper img {
  width: 100%;
  /*height: 220px;*/
  /*object-fit: cover;*/
  display: block;
}
.legal_issues .badge-ribbon {
  position: absolute;
  top: 66px;
  right: -37px;
  background-color: #28a745;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 20px 30px;
  transform: rotate(45deg);
  transform-origin: top right;
  display: none;
}
.legal_issues .card-body {
  padding: 24px 20px 28px;
}
.legal_issues .card-body h5 {
  font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.3px;
    font-family: 'Poppins', sans-serif;
    color: #b38909;
}
/*.legal_issues .card-body p {
  font-size: 0.875rem;
  color: #555;
  line-height: 1.65;
  font-family: 'Roboto', sans-serif;
}*/
.legal_issues .btn-explore {
  display: inline-block;
  background-color: #111;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 10px 28px;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.2s ease;
  font-family: 'Roboto', sans-serif;
}
.legal_issues .btn-explore:hover {
  background-color: #333;
  color: #fff;
}
/* top rated advocated */
.top_advocates {
  background-color: #fafaf8;
  padding-top: 60px;
  padding-bottom: 60px;
  font-family: 'Poppins', sans-serif;
}
.top_advocates .section-title {
  font-family: 'Popppins', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  color: #1a1a1a;
  letter-spacing: 0.02em;
}
.top_advocates .advocate-card {
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.top_advocates .advocate-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  transform: translateY(-4px);
}
.top_advocates .advocate-img-wrap {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.top_advocates .advocate-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.top_advocates .advocate-info {
  padding: 16px 12px 20px;
  text-align: center;
  background: #fff;
}
.top_advocates .advocate-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: #1a1a1a;
  margin-bottom: 4px;
}
.top_advocates .advocate-degree {
  font-size: 0.82rem;
  color: #000;
  font-weight: 500;
  letter-spacing: 0.03em;
}
.top_advocates .btn-explore {
  background-color: #1a1a1a;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  padding: 12px 40px;
  border-radius: 4px;
  border: none;
  transition: background-color 0.25s ease;
  text-decoration: none;
  display: inline-block;
}
.top_advocates .btn-explore:hover {
  background-color: #333;
  color: #fff;
}
/* footer */
 .footer {
  background-color: #1e2d3d;
  color: #c8d6e5;
  font-family: 'Montserrat', sans-serif;
}
.footer-logo {
  filter: brightness(0) invert(1);
  max-width: 180px;
}
.footer-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #e8d5a3;
  letter-spacing: 0.04em;
  /*text-transform: uppercase;*/
}
.footer-heading-line {
  width: 40px;
  height: 2px;
  background-color: #c9a84c;
}
.footer a {
  color: #b0c4d8;
  text-decoration: none;
  font-size:1rem;
  transition: color 0.3s;
  font-family: 'Roboto', sans-serif;
}
.footer a:hover {
  color: #e8d5a3;
}
.footer-desc {
  font-size: 0.85rem;
  line-height: 1.8;
  color: #8ea9bf;
  font-family: 'Roboto', sans-serif;
}
.footer-divider {
  border-color: rgba(255,255,255,0.1);
}
.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: transform 0.2s, opacity 0.2s;
}
.social-icon:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}
.social-fb { background-color: #3b5998; color: #fff !important; }
.social-yt { background-color: #cc0000; color: #fff !important; }
.social-ig { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); color: #fff !important; }
.social-li { background-color: #0077b5; color: #fff !important; }
.contact-icon {
  color: #c9a84c;
  width: 18px;
  flex-shrink: 0;
}
.footer-contact-item {
      text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
    font-family: 'Roboto', sans-serif;
}
.footer-bottom {
  background-color: #16222e;
}
.footer-bottom p, .footer-bottom a {
      font-size: 14px;
    color: #6a8096;
    font-family: 'Roboto';
}
/*.footer-bottom a {
  color: #6a8096;
  font-size: 0.78rem;
}*/
.footer-bottom a:hover {
  color: #c9a84c;
}
.gold-dot {
  color: #c9a84c;
}
.practice-list li::before {
  content: "›";
  color: #c9a84c;
  font-weight: bold;
  margin-right: 6px;
}
.practice-list li {
  list-style: none;
  padding: 3px 0;
  font-size: 0.85rem;
}
img.logo-fluid.mb-3 {
  height: auto;
  width: 100%;
}
/* about_us_page */
.hero-banner {
  position: relative;
  width: 100%;
  min-height: 320px;
  background-image: url('../../assets/images/banner.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.62);
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  color: #fff4d4;
  font-size: 40px;
  font-weight: 700;
}
.breadcrumb-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  }
.breadcrumb-link{
  color: #D4AF37;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
  font-family: 'Roboto', sans-serif;
}
.breadcrumb-link:hover {
  color: #C6A75E;
  text-decoration: underline;
}
.breadcrumb-separator {
  color: #BFA14A;
  font-size: 1rem;
  font-weight: 400;
}
.breadcrumb-current {
  color: #D3D3D3;
  font-size: 0.95rem;
  font-weight: 400;
}
/* criminal case */
.criminal-case {
  padding: 60px 0;
  background-color: #fff;
}
.criminal-case .section-img {
  width: 100%;
  border-radius: 12px;
    /*box-shadow: 0 5px 10px rgba(0, 0, 0, 0.6);*/
}

.criminal-case .check-col svg {
  color: #222;
  flex-shrink: 0;
}
/* civil case */
.civil-case {
  padding: 40px 0;
  background-color: #fff;
}
.civil-case .section-img {
  width: 100%;
}

/* matrimonial cases */
.matrimonial-case {
  padding: 40px 0;
  background-color: #fff;
}
.matrimonial-case .section-img {
  width: 100%;
}

/* ni act cases */
.ni-act-cases {
  padding: 60px 0;
  background-color: #fff;
}
.ni-act-cases .case-image {
  width: 100%;
}

.legal-property .property-img {
  width: 100%;
}

/* top advocate */
.top-advocate {
  background-color: #f8f6f2;
  padding: 60px 0;
  font-family: 'Lato', sans-serif;
}
.top-advocate .section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a1a2e;
  letter-spacing: 0.5px;
}
.top-advocate .section-subtitle {
  color: #8a7d6b;
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
}
  .top-advocate .divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #b8860b, #d4a843);
  margin: 0 auto 40px;
}
.advocate-card {
  background: #ffffff;
  border: none;
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.advocate-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.13);
  }
.advocate-card .img-wrapper {
    overflow: hidden;
  aspect-ratio: 3/3.5;
}
.advocate-card .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s ease;
}
.advocate-card:hover .img-wrapper img {
  transform: scale(1.04);
}
.advocate-card .card-body {
  padding: 16px 14px 18px;
  text-align: center;
  border-top: 3px solid #b8860b;
}
.advocate-card .adv-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 4px;
  }
.advocate-card .adv-degree {
  font-size: 0.78rem;
  color: #8a7d6b;
  font-weight: 300;
  letter-spacing: 0.5px;
  margin-bottom: 0;
}
.advocate-card .adv-role {
  font-size: 0.72rem;
  color: #b8860b;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}
/* about us */
.about-us-page {
  background-color: #f8f8f8;
  padding: 60px 0;
}
.about-us-page .about-text {
  font-size: 16px;
  color: #3a3a3a;
  line-height: 1.85;
  text-align: justify;
  font-family: 'Roboto', sans-serif;
}
.about-us-page .about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.about-us-page .img-wrapper {
  border-radius: 12px;
  overflow: hidden;
  max-height: 740px;
}
.about-us-page .btn-call {
  background-color: #111;
  color: #fff;
  padding: 12px 28px;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
}
.about-us-page .btn-call:hover {
  background-color: #333;
  color: #fff;
}
/* contact us */
.contact-section {
  background-color: #f5f5f5;
  padding: 40px 35px;
  border-radius: 4px;
}
.contact-section h2 {
  font-family: Georgia, serif;
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 24px;
}
.contact-section label {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 6px;
}
.contact-section label span {
  color: #dc3545;
}
.contact-section .form-control {
  border-radius: 4px;
  border: 1px solid #ccc;
  font-size: 0.9rem;
  padding: 10px 14px;
  background-color: #fff;
}
.contact-section .form-control:focus {
  box-shadow: none;
  border-color: #aaa;
}
.contact-section textarea.form-control {
  height: 110px;
  resize: none;
}
.btn-submit {
  background-color: #111;
  color: #fff;
  width: 100%;
  padding: 12px;
  font-size: 0.95rem;
  border: none;
  border-radius: 4px;
  letter-spacing: 0.5px;
}
.btn-submit:hover {
  background-color: #333;
  color: #fff;
}
.contact-info-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid #111;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg {
  width: 22px;
  height: 22px;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 36px;
}
.contact-info-item h6 {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
}
.contact-info-item p {
  font-size: 16px;
    color: #555;
    margin: 0;
    font-family: 'Roboto';
    font-weight: 500;
}
/* ===== Modal===== */
  .modal-backdrop.show {
      opacity: 0.6;
    }

    /* Modal */
    .modal-content {
      border: none;
      border-radius: 4px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }

    .modal-header {
      border-bottom: 1px solid #ddd;
      padding: 16px 20px;
      background-color: #fff;
    }

    .modal-title {
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #1a1a1a;
    }

    .modal-body {
      padding: 20px;
      background-color: #fff;
    }

    .modal-body p {
      font-size: 0.82rem;
      color: #444;
      line-height: 1.7;
      margin-bottom: 12px;
    }

    .modal-body p:last-child {
      margin-bottom: 0;
      font-style: italic;
      color: #666;
    }

    .modal-footer {
      border-top: 1px solid #ddd;
      padding: 12px 20px;
      background-color: #fff;
      justify-content: center;
    }
    .btn-enter {
      background-color: #1a1a1a;
      color: #fff;
      border: none;
      padding: 8px 36px;
      font-size: 0.8rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      border-radius: 2px;
      transition: background-color 0.2s ease;
    }
    .btn-enter{
      background-color: black;
    }
    .btn-enter:hover {
      background-color: #333;
      color: #fff;
    }

    .page-content {
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 100vh;
      text-align: center;
      color: #aaa;
      font-size: 0.9rem;
    }
/* appointment form */
.brand-panel {
  background: linear-gradient(160deg, #0a1628 0%, #1a3a6b 60%, #1e4fa0 100%);
  min-height: 100vh;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.brand-panel::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.brand-panel::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.brand-logo-box {
  width: 68px;
  height: 68px;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #c9a84c;
}
.brand-panel h1 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  line-height: 1.25;
}
.brand-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.brand-divider {
  border-color: rgba(255,255,255,0.15);
}
.brand-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.brand-info-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  color: #c9a84c;
}
.brand-info-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.brand-info-value {
  font-size: 0.9rem;
  color: #fff;
  font-weight: 500;
}
.badge-gold {
  background: rgba(201,168,76,0.18);
  color: #c9a84c;
  border: 1px solid rgba(201,168,76,0.35);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: 500;
    }
.form-panel {
  background: #fff;
  min-height: 100vh;
}
.form-header-bar {
  background: #fff;
  border-bottom: 1px solid #e8edf4;
  padding: 22px 40px;
}
.step-pill {
  background: #eef2fa;
  color: #1a3a6b;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
}
.form-section-title {
  font-family: 'Playfair Display', serif;
  color: #0a1628;
  font-size: 1.6rem;
}
.form-section-sub {
  font-size: 16px;
  color: #3a3a3a;
  line-height: 1.85;
  text-align: justify;
  font-family: 'Roboto', sans-serif;
}

.form-control,
.form-select {
  border: 1.5px solid #dde3ef;
  border-radius: 10px;
  padding: 11px 15px;
  font-size: 0.92rem;
  color: #1e2a45;
  background-color: #fafbfd;
  transition: border-color .2s, box-shadow .2s, background-color .2s;
}
.form-control:focus,
.form-select:focus {
  border-color: #1a3a6b;
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(26,58,107,0.1);
  outline: none;
}
.form-control::placeholder {
  color: #b0baca;
  font-size: 0.88rem;
}
.input-icon-wrap {
  position: relative;
}
.input-icon-wrap .bi {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #8a9bbf;
  font-size: 1rem;
  pointer-events: none;
}
.input-icon-wrap .form-control,
.input-icon-wrap .form-select {
  padding-left: 40px;
}
textarea.form-control {
  resize: none;
  padding-top: 12px;
}
.form-section-group {
  border-top: 1.5px dashed #e5eaf5;
  padding-top: 24px;
  margin-top: 8px;
}
.group-label {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1a3a6b;
  background: #eef2fa;
  display: inline-block;
  padding: 4px 12px;
  border-radius: 6px;
  margin-bottom: 18px;
}
.practice-check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.practice-card {
  border: 1.5px solid #dde3ef;
  border-radius: 10px;
  padding: 10px 14px;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: #374262;
  font-weight: 500;
}
.practice-card input[type="checkbox"] {
  accent-color: #1a3a6b;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.practice-card:has(input:checked) {
  border-color: #1a3a6b;
  background: #eef2fa;
  color: #1a3a6b;
}
.btn-book {
  background: linear-gradient(135deg, #1a3a6b 0%, #1e4fa0 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 14px 32px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  transition: opacity .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 6px 20px rgba(26,58,107,0.28);
}
.btn-book:hover {
  opacity: 0.92;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(26,58,107,0.35);
  color: #fff;
}
.btn-book:active {
  transform: translateY(0);
}
.btn-reset-link {
  color: #8a9bbf;
  font-size: 0.85rem;
  text-decoration: none;
  font-weight: 500;
}
.btn-reset-link:hover {
  color: #1a3a6b;
}
.privacy-note {
  background: #f4f6f9;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.78rem;
  color: #7a8aaa;
}
.privacy-note .bi {
  color: #c9a84c;
}
.success-card {
  display: none;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 16px 48px rgba(26,58,107,0.12);
  padding: 48px 36px;
  text-align: center;
}
.success-icon-ring {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1a3a6b, #1e4fa0);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2.2rem;
  color: #fff;
}
@media (max-width: 768px) {
  #mobile_none{
    display: none !important;
  }
  #header-info{
    display: none!important;
  }
  
}
@media (max-width: 768px) {
  .navbar-logo-img{
    width: 100%;
    height: auto!important;
  }
  .hrs-navbar{
        padding: 0px 20px!important;
  }
  .sidebar-logo-img{
    width: 90%!important;
    height: auto!important;
  }
}

/*.about-heading.mb-2 {
    font-family: 'Playfair Display', serif;
    color: #b38909;
    font-size:40px;
    font-weight:700;
    margin-bottom:10px;
}*/
.about-subheading {
    font-family: 'Roboto', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: 0.3px;
}
.paragraph{
    font-size: 16px;
    color: #3a3a3a;
    line-height: 30px;
    text-align: justify;
    font-family: 'Roboto', sans-serif;
}
.main-heading{
    font-family: 'Playfair Display', serif;
    color: #b38909;
    font-size:40px;
    font-weight:700;
}
.main-subheading{
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.3px;
    font-family: 'Poppins', sans-serif;
    color: #777;
}

.advocate-card{
  background:#fff;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  transition:all .4s ease;
  position:relative;
  }

  .advocate-card:hover{
  transform:translateY(-12px);
  box-shadow:0 20px 50px rgba(0,0,0,0.18);
  }

  /* IMAGE */

  .advocate-img-wrap{
  height:300px;
  overflow:hidden;
  position:relative;
  }

  .advocate-img-wrap img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .6s ease;
  }

  .advocate-card:hover img{
  transform:scale(1.12);
  }

  /* IMAGE OVERLAY */

  .advocate-img-wrap::after{
  content:'';
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:linear-gradient(to top, rgba(0,0,0,0.55), transparent);
  opacity:0;
  transition:.4s;
  }

  .advocate-card:hover .advocate-img-wrap::after{
  opacity:1;
  }

  /* INFO */

  .advocate-info{
  padding:22px 18px 26px;
  text-align:center;
  }

  /* NAME */

  .advocate-name{
  font-size:20px;
  font-weight:600;
  color:#222;
  margin-bottom:6px;
  position:relative;
  }

  /* GOLD LINE */

  .advocate-name::after{
  content:'';
  display:block;
  width:45px;
  height:2px;
  background:#b8962e;
  margin:8px auto 0;
  }

  /* DEGREE */

  .advocate-degree{
  font-size:14px;
  color:#777;
  margin-top:6px;
  }

  /* BUTTON */

  .btn-explore{
  display:inline-block;
  padding:12px 32px;
  background:#111;
  color:#fff;
  font-size:15px;
  border-radius:6px;
  text-decoration:none;
  transition:all .3s ease;
  letter-spacing:.5px;
  }

  .btn-explore:hover{
  background:#b8962e;
  color:#fff;
  transform:translateY(-2px);
  box-shadow:0 8px 20px rgba(0,0,0,0.2);
  }


.disclaimer-text p, .footer-note{
  font-size: 14px;
  color: #3a3a3a;
  line-height: 24px;
  text-align: justify;
  font-family: 'Roboto', sans-serif;
}
  
.enquiry-box{
  background:rgba(255,255,255,0.05);
  backdrop-filter:blur(10px);
  padding:35px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,0.1);
  box-shadow:0 2px 5px rgba(0, 0, 0, 0.5);
}

.enquiry-box h5 {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.3px;
    font-family: 'Poppins', sans-serif;
    color: #777;
}


.enquiry-box input,
.enquiry-box textarea{
  width:100%;
  padding:12px;
  margin-bottom:15px;
  color:#fff;
  border-radius:5px;
  font-size: 16px;
  font-weight: 500;
  color: #555;
  margin-bottom: 4px;
  font-family: 'Roboto';
}

.enquiry-box label, .contact-section label {
    font-size: 16px;
    font-weight: 500;
    color: #555;
    margin-bottom: 4px;
    font-family: 'Roboto';
}

.enquiry-box button{
  width:100%;
  background:#000;
  border:none;
  padding:12px;
  color:#fff;
  font-weight:500;
  border-radius:5px;
  transition:.3s;
   font-family: 'Roboto';
}

.enquiry-box button:hover{
background:#555;
}

.main-heading:after{
content:"";
width:60px;
height:3px;
background:#caa85d;
display:block;
margin-top:10px;
}

.check-col {
    color: #2c2c2c;
    padding: 8px 12px;
    border-radius: 6px;
    background: #e5e5e5;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: #333;
    font-weight: 400;
    font-family: 'Roboto';
}
.ap-btn{
    padding: 12px 28px;
    font-size: 1rem;
    border: none;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    background-color: #000000;
    color: #fff;
}

.tax-cases{
  background: #fff;
  padding: 50px 0px;
}

.img-round{
  border-radius: 5px;
}

.cgit-and-labour-court-matters {
    padding: 50px 0px;
    background: #fff;
}
.list-style-none{
  list-style-type: none;
}
.check-list li{
  font-size: 16px;
    color: #3a3a3a;
    line-height: 30px;
    text-align: justify;
    font-family: 'Roboto', sans-serif;
}

label.form-label {
    font-size: 16px;
    font-weight: 500;
    color: #555;
    margin-bottom: 4px;
    font-family: 'Roboto';
}