@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');
@import url('https://fonts.cdnfonts.com/css/rajdhani');
@import url('https://fonts.cdnfonts.com/css/roboto');
@import url('https://fonts.cdnfonts.com/css/salsa');

body {
  font-family: 'Rajdhani', sans-serif;
  background-color: #ffffff;
  color: #1b263b;
  overflow-x: hidden;
}

/* Custom Buttons */
.btn-gold {
  background-color: #c59d5f;
  color: #091a2f;
  font-weight: 600;
  border: 1px solid #c59d5f;
  padding: 10px 24px;
  border-radius: 50px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-gold:hover {
  background-color: #b48a4c;
  border-color: #b48a4c;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-outline-gold {
  background-color: transparent;
  color: #c59d5f;
  font-weight: 600;
  border: 2px solid #c59d5f;
  padding: 10px 24px;
  border-radius: 50px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline-gold:hover {
  background-color: #c59d5f;
  color: #091a2f;
  transform: translateY(-2px);
}

.btn-outline-white {
  background-color: transparent;
  color: #f8f9fa;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 10px 24px;
  border-radius: 50px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline-white:hover {
  background-color: #ffffff;
  color: #091a2f;
  border-color: #ffffff;
  transform: translateY(-2px);
}

/* Navbar */
.pg-home-navbar {
  background-color: #051b35;
  border-bottom: 3px solid #c59d5f;
  padding: 10px 0;
  z-index: 1050;
}

/* Offcanvas Mobile Side Menu */
.ppa-offcanvas-menu,
.ppa-offcanvas-menu .offcanvas-body,
.offcanvas.ppa-offcanvas-menu {
  background-color: #0d1b2a !important;
  color: #ffffff !important;
  width: 85% !important;
  max-width: 330px !important;
  border-right: 2px solid #c59d5f !important;
  z-index: 1000000 !important;
}

.ppa-offcanvas-menu .offcanvas-header {
  background-color: #051325 !important;
  border-bottom: 1px solid rgba(197, 157, 95, 0.25) !important;
}

.ppa-offcanvas-tabs {
  background-color: #051325;
}

.ppa-tab-btn {
  background: transparent;
  border: none;
  color: #8d99ae;
  font-size: 13.5px;
  letter-spacing: 0.05em;
  position: relative;
  transition: all 0.25s ease;
  border-bottom: 2.5px solid transparent;
}

.ppa-tab-btn.active {
  color: #c59d5f;
  border-bottom-color: #c59d5f;
  background-color: rgba(197, 157, 95, 0.05);
}

.ppa-mobile-nav-list {
  padding: 0;
  margin: 0;
}

.ppa-mobile-nav-list .ppa-mobile-nav-link,
a.ppa-mobile-nav-link {
  font-family: 'Roboto', sans-serif !important;
  color: #f8fafc !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  padding: 13px 20px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  transition: all 0.2s ease !important;
  display: block !important;
  text-decoration: none !important;
}

.ppa-mobile-nav-list .ppa-mobile-nav-link:hover,
.ppa-mobile-nav-list .ppa-mobile-nav-link.active,
a.ppa-mobile-nav-link.active {
  color: #c59d5f !important;
  background-color: rgba(197, 157, 95, 0.15) !important;
  padding-left: 26px !important;
  font-weight: 700 !important;
}

.ppa-mobile-subnav-link {
  font-family: 'Roboto', sans-serif;
  color: #cbd5e1 !important;
  font-size: 13.5px;
  font-weight: 400;
  padding: 8px 16px;
  transition: all 0.2s ease;
  display: block;
}

.ppa-mobile-subnav-link:hover {
  color: #c59d5f !important;
  padding-left: 20px;
}

/* Fix: ensure toggler button is always clickable */
.pg-home-navbar .navbar-toggler {
  position: relative;
  z-index: 1052;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.navbar-brand-custom {
  font-weight: 700;
  color: #c59d5f !important;
  font-size: 1.6rem;
}

.nav-link-custom {
  font-family: 'Roboto', sans-serif;
  color: #f8f9fa !important;
  font-weight: 500;
  margin: 0 8px;
  position: relative;
  font-size: 14px;
  white-space: nowrap;
}

.nav-link-custom::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 0;
  right: 0;
  height: 2.5px;
  background-color: #c59d5f;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-link-custom:hover::after,
.nav-link-custom.active::after {
  transform: scaleX(1);
}

.nav-link-custom:hover {
  color: #c59d5f !important;
}

/* Navbar Dropdown Menu Styling */
.navbar-custom .dropdown-menu {
  background-color: #051b35 !important;
  border: 1px solid rgba(197, 160, 89, 0.4) !important;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  margin-top: 10px;
  padding: 8px 0;
}

.navbar-custom .dropdown-item {
  color: #f8f9fa !important;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  padding: 10px 20px;
  transition: all 0.2s ease;
}

.navbar-custom .dropdown-item:hover,
.navbar-custom .dropdown-item:focus {
  background-color: rgba(197, 160, 89, 0.15) !important;
  color: #c59d5f !important;
}

@media (min-width: 992px) {
  .navbar-custom .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

/* Footer Styling */
.bg-navy, .pg-footer {
  background-color: #d6a649 !important;
  color: #091a2f !important;
}

.pg-footer a {
  color: #091a2f !important;
  transition: opacity 0.2s ease;
}

.pg-footer a:hover {
  opacity: 0.75;
  text-decoration: underline !important;
}

.pg-footer .text-gold, .text-gold {
  color: #c59d5f !important;
}

.border-gold {
  border-color: #c59d5f !important;
}

/* Consultation Pill Button Design */
.consultation-pill-btn {
  display: inline-flex;
  align-items: center;
  background-color: #c59d5f;
  border-radius: 50px;
  padding: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid #c59d5f;
}

.consultation-pill-btn .inner-blue-pill {
  font-family: 'Roboto', sans-serif;
  background-color: #051b35;
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.05em;
  padding: 8px 24px;
  border-radius: 50px;
  transition: background-color 0.3s ease;
}

.consultation-pill-btn .arrow-icon {
  color: #051b35;
  padding: 0 12px 0 10px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.consultation-pill-btn:hover {
  background-color: #ffffff;
  border-color: #ffffff;
}

.consultation-pill-btn:hover .inner-blue-pill {
  background-color: #c59d5f;
  color: #051b35;
}

.consultation-pill-btn:hover .arrow-icon {
  color: #c59d5f;
}

/* ===================================
   993px - 1199px (Small Desktop / Large Laptop)
   =================================== */
@media (min-width: 993px) and (max-width: 1199px) {
  .navbar-logo-img {
    height: 50px !important;
    width: 210px !important;
  }

  .logo-white-card {
    padding: 5px 12px !important;
  }

  .nav-link-custom {
    margin: 0 5px;
    font-size: 14px;
    white-space: nowrap;
  }

  .consultation-pill-btn .inner-blue-pill {
    font-size: 14px;
    padding: 7px 18px;
  }
}

/* ===================================
   768px - 992px (Tablet)
   Navbar collapses to hamburger here
   =================================== */
@media (min-width: 768px) and (max-width: 992px) {
  .pg-home-navbar {
    padding: 8px 0;
  }

  .navbar-logo-img {
    height: 46px !important;
    width: 190px !important;
  }

  .logo-white-card {
    padding: 5px 12px !important;
  }

  .navbar-collapse {
    background-color: #051b35;
    border-top: 1px solid rgba(197, 157, 95, 0.3);
    margin-top: 10px;
    padding: 15px 10px;
    border-radius: 8px;
  }

  .nav-link-custom {
    margin: 8px 0;
    font-size: 16px;
    display: inline-block;
  }

  .nav-link-custom::after {
    bottom: -2px;
  }

  .consultation-pill-btn {
    width: fit-content;
  }
}

/* ===================================
   576px - 767px (Large Mobile)
   =================================== */
@media (min-width: 576px) and (max-width: 767px) {
  .pg-home-navbar {
    padding: 8px 0;
  }

  .navbar-logo-img {
    height: 42px !important;
    width: 170px !important;
  }

  .logo-white-card {
    padding: 4px 10px !important;
  }

  .navbar-toggler {
    padding: 4px 8px;
    font-size: 14px;
  }

  .navbar-collapse {
    background-color: #051b35;
    border-top: 1px solid rgba(197, 157, 95, 0.3);
    margin-top: 10px;
    padding: 15px 10px;
    border-radius: 8px;
  }

  .nav-link-custom {
    margin: 6px 0;
    font-size: 15px;
    display: inline-block;
  }

  .consultation-pill-btn {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
  }

  .consultation-pill-btn .inner-blue-pill {
    font-size: 14px;
    padding: 8px 20px;
    flex: 1;
    text-align: center;
  }
}

/* ===================================
   Max 575px (Small Mobile)
   =================================== */
@media (max-width: 575px) {
  .pg-home-navbar {
    padding: 6px 0;
  }

  .navbar-logo-img {
    height: 50px !important;
    width: 200px !important;
  }

  .logo-white-card {
    padding: 4px 8px !important;
    border-radius: 6px !important;
  }

  .navbar-toggler {
    padding: 3px 7px;
    font-size: 13px;
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }

  .navbar-collapse {
    background-color: #051b35;
    border-top: 1px solid rgba(197, 157, 95, 0.3);
    margin-top: 8px;
    padding: 12px 8px;
    border-radius: 6px;
  }

  .nav-link-custom {
    margin: 5px 0;
    font-size: 14px;
    display: block;
  }

  .nav-link-custom::after {
    bottom: -1px;
  }

  .d-flex.justify-content-start {
    justify-content: center !important;
  }

  .consultation-pill-btn {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
    padding: 3px;
  }

  .consultation-pill-btn .inner-blue-pill {
    font-size: 13px;
    padding: 7px 16px;
    flex: 1;
    text-align: center;
    letter-spacing: 0.03em;
  }

  .consultation-pill-btn .arrow-icon {
    padding: 0 10px 0 8px;
    font-size: 0.85rem;
  }
}

/* Hero Section */
.pg-home-hero-section {
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 120px 0 160px 0;
  position: relative;
  color: #f8f9fa;
}

.hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(5, 27, 53, 0.85) 0%, rgba(5, 27, 53, 0.7) 50%, rgba(5, 27, 53, 0.3) 100%);
  z-index: 2;
}

.hero-title {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.hero-subtitle-container {
  display: inline-block;
  border-bottom: 3.5px solid #c59d5f;
  padding-bottom: 12px;
}

.hero-subtitle {
  font-size: 26px;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 400;
  line-height: 1.6;
}

/* Hero Custom Primary Button */
.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  background-color: #c59d5f;
  border-radius: 50px;
  padding: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1.5px solid #c59d5f;
}

.hero-btn-primary .inner-blue-pill {
  background-color: #051b35;
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.05em;
  padding: 10px 26px;
  border-radius: 50px;
  transition: background-color 0.3s ease;
}

.hero-btn-primary .arrow-icon {
  color: #051b35;
  padding: 0 14px 0 10px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-btn-primary:hover {
  background-color: #ffffff;
  border-color: #ffffff;
  transform: translateY(-2px);
}

.hero-btn-primary:hover .inner-blue-pill {
  background-color: #c59d5f;
  color: #051b35;
}

.hero-btn-primary:hover .arrow-icon {
  color: #c59d5f;
}

/* Hero Custom Secondary Button */
.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  background-color: transparent;
  border-radius: 50px;
  padding: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1.5px solid #c59d5f;
}

.hero-btn-secondary .inner-text {
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.05em;
  padding: 10px 24px;
  border-radius: 50px;
}

.hero-btn-secondary .arrow-icon {
  color: #c59d5f;
  padding: 0 14px 0 10px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-btn-secondary:hover {
  background-color: #c59d5f;
  transform: translateY(-2px);
}

.hero-btn-secondary:hover .inner-text {
  color: #051b35;
}

.hero-btn-secondary:hover .arrow-icon {
  color: #051b35;
}

/* ===================================
   993px - 1199px (Small Desktop / Large Laptop)
   =================================== */
@media (min-width: 993px) and (max-width: 1199px) {
  .pg-home-hero-section {
    min-height: 75vh;
    padding: 100px 0 130px 0;
  }

  .hero-title {
    font-size: 48px;
  }

  .hero-subtitle {
    font-size: 22px;
  }

  .hero-subtitle-container {
    padding-bottom: 10px;
    border-bottom-width: 3px;
  }

  .hero-btn-primary .inner-blue-pill,
  .hero-btn-secondary .inner-text {
    font-size: 16px;
    padding: 9px 22px;
  }
}

/* ===================================
   768px - 992px (Tablet)
   =================================== */
@media (min-width: 768px) and (max-width: 992px) {
  .pg-home-hero-section {
    min-height: 65vh;
    padding: 80px 0 100px 0;
  }

  .hero-overlay-gradient {
    background: linear-gradient(to right, #051b35 50%, rgba(5, 27, 53, 0.85) 70%, rgba(5, 27, 53, 0.5) 100%);
  }

  .hero-title {
    font-size: 38px;
  }

  .hero-subtitle-container {
    padding-bottom: 10px;
    border-bottom-width: 3px;
    margin-bottom: 24px !important;
  }

  .hero-subtitle {
    font-size: 18px;
    line-height: 1.5;
  }

  .hero-btn-primary,
  .hero-btn-secondary {
    padding: 4px;
    border-width: 1.25px;
  }

  .hero-btn-primary .inner-blue-pill,
  .hero-btn-secondary .inner-text {
    font-size: 15px;
    padding: 9px 20px;
  }

  .hero-btn-primary .arrow-icon,
  .hero-btn-secondary .arrow-icon {
    padding: 0 12px 0 8px;
    font-size: 0.9rem;
  }
}

/* ===================================
   576px - 767px (Large Mobile)
   =================================== */
@media (min-width: 576px) and (max-width: 767px) {
  .pg-home-hero-section {
    min-height: auto;
    padding: 60px 0 70px 0;
  }

  .hero-overlay-gradient {
    background: linear-gradient(to bottom, rgba(5, 27, 53, 0.55) 0%, #051b35 75%);
  }

  .hero-title {
    font-size: 30px;
    line-height: 1.25;
    margin-bottom: 14px;
  }

  .hero-subtitle-container {
    padding-bottom: 8px;
    border-bottom-width: 2.5px;
    margin-bottom: 20px !important;
  }

  .hero-subtitle {
    font-size: 16px;
    line-height: 1.5;
  }

  .d-flex.flex-wrap.gap-3 {
    gap: 12px !important;
    flex-direction: column;
    align-items: stretch !important;
  }

  .hero-btn-primary,
  .hero-btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .hero-btn-primary .inner-blue-pill,
  .hero-btn-secondary .inner-text {
    font-size: 14px;
    padding: 10px 20px;
    flex: 1;
    text-align: center;
  }

  .hero-btn-primary .arrow-icon,
  .hero-btn-secondary .arrow-icon {
    padding: 0 12px 0 8px;
    font-size: 0.9rem;
  }
}

/* ===================================
   Max 575px (Small Mobile)
   =================================== */
@media (max-width: 575px) {
  .pg-home-hero-section {
    min-height: 400px;
    padding: 50px 0 55px 0;
  }

  .hero-title {
    font-size: 24px;
    line-height: 1.3;
    letter-spacing: 0.01em;
    margin-bottom: 12px;
  }

  .hero-subtitle-container {
    padding-bottom: 8px;
    border-bottom-width: 2px;
    margin-bottom: 18px !important;
  }

  .hero-subtitle {
    font-size: 14px;
    line-height: 1.5;
  }

  .d-flex.flex-wrap.gap-3 {
    gap: 10px !important;
    flex-direction: column;
    align-items: stretch !important;
  }

  .hero-btn-primary,
  .hero-btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 4px;
  }

  .hero-btn-primary .inner-blue-pill,
  .hero-btn-secondary .inner-text {
    font-size: 13px;
    padding: 9px 16px;
    flex: 1;
    text-align: center;
    letter-spacing: 0.03em;
  }

  .hero-btn-primary .arrow-icon,
  .hero-btn-secondary .arrow-icon {
    padding: 0 10px 0 6px;
    font-size: 0.8rem;
  }
}

/* Intro Section */
.pg-home-intro-section {
  position: relative;
  margin-top: 40px;
  z-index: 10;
}

.intro-top-block {
  background-color: #faf7f2;
  border-top: 1.5px solid rgba(9, 26, 47, 0.15);
  border-left: 1.5px solid rgba(9, 26, 47, 0.15);
  border-right: 1.5px solid rgba(9, 26, 47, 0.15);
  border-bottom: 1.5px solid rgba(9, 26, 47, 0.15);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
}

.border-right-split {
  border-right: 1.5px solid rgba(9, 26, 47, 0.1);
}

@media (max-width: 991.98px) {
  .border-right-split {
    border-right: none;
    border-bottom: 1px solid rgba(9, 26, 47, 0.15);
  }
}

.intro-title {
  color: #091a2f;
  font-size: 70px;
  line-height: 1.15;
  position: relative;
  z-index: 2;
}

.intro-lead {
  font-size: 30px;
  color: #091a2f;
  line-height: 1.45;
}

.intro-body {
  font-size: 25px;
  line-height: 1.6;
}

.watermark-img {
  position: absolute;
  opacity: 0.035;
  pointer-events: none;
  z-index: 1;
}

.watermark-gavel {
  width: 140px;
  bottom: 20px;
  left: 20px;
  transform: rotate(-15deg);
}

.watermark-scales {
  width: 180px;
  right: 40px;
  bottom: 20px;
}

.btn-read-firm {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: transparent;
  color: #091a2f;
  border: 1px solid #091a2f;
  border-radius: 6px;
  padding: 8px 20px;
  font-weight: 700;
  font-size: 22px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-read-firm:hover {
  background-color: #091a2f;
  color: #ffffff;
}

.intro-bottom-container {
  padding-bottom: 20px;
  width: 95%;
  margin: auto;
}

.intro-gold-card-wrapper {
  background-color: #ffffff;
  border: 2px solid #c59d5f;
  border-radius: 80px;
  padding: 25px 35px;
  margin-top: -35px;
  position: relative;
  z-index: 5;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.feature-column-card {
  position: relative;
}

@media (min-width: 992px) {
  .feature-column-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -12px;
    top: 10%;
    height: 80%;
    width: 1.5px;
    background-color: rgba(197, 157, 95, 0.3);
  }
}

.feature-icon-img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  flex-shrink: 0;
}

.feature-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #091a2f;
}

.feature-card-desc {
  font-size: 16px;
  color: #5e6e7f;
}

/* ===================================
   993px - 1199px (Small Desktop / Large Laptop)
   =================================== */
@media (min-width: 993px) and (max-width: 1199px) {
  .intro-title {
    font-size: 52px;
  }

  .intro-lead {
    font-size: 24px;
    line-height: 1.4;
  }

  .intro-body {
    font-size: 18px;
  }

  .col-lg-4.p-5,
  .col-lg-8.p-5 {
    padding: 2.5rem !important;
  }

  .btn-read-firm {
    font-size: 18px;
    padding: 7px 18px;
  }

  .intro-gold-card-wrapper {
    border-radius: 50px;
    padding: 20px 28px;
    margin-top: -30px;
  }

  .feature-icon-img {
    width: 70px;
    height: 70px;
  }

  .feature-card-title {
    font-size: 17px;
  }

  .feature-card-desc {
    font-size: 14px;
  }

  .watermark-gavel {
    width: 110px;
  }

  .watermark-scales {
    width: 140px;
  }
}

/* ===================================
   768px - 992px (Tablet)
   =================================== */
@media (min-width: 768px) and (max-width: 992px) {
  .pg-home-intro-section {
    margin-top: 30px;
  }

  .col-lg-4.p-5,
  .col-lg-8.p-5 {
    padding: 2rem !important;
  }

  .intro-title {
    font-size: 40px;
  }

  .intro-lead {
    font-size: 21px;
    line-height: 1.4;
    margin-bottom: 20px !important;
  }

  .intro-body {
    font-size: 16px;
    margin-bottom: 20px !important;
  }

  .btn-read-firm {
    font-size: 16px;
    padding: 7px 16px;
  }

  .watermark-gavel {
    width: 90px;
    bottom: 15px;
    left: 15px;
  }

  .watermark-scales {
    width: 110px;
    right: 20px;
    bottom: 15px;
  }

  .intro-bottom-container {
    width: 100%;
    padding-bottom: 15px;
  }

  .intro-gold-card-wrapper {
    border-radius: 30px;
    padding: 25px 20px;
    margin-top: 0;
  }

  .feature-column-card {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(197, 157, 95, 0.25);
  }

  .row.g-4.align-items-center > .feature-column-card:nth-last-child(-n+2) {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
  }

  .feature-icon-img {
    width: 65px;
    height: 65px;
  }

  .feature-card-title {
    font-size: 17px;
  }

  .feature-card-desc {
    font-size: 14px;
  }
}

/* ===================================
   576px - 767px (Large Mobile)
   =================================== */
@media (min-width: 576px) and (max-width: 767px) {
  .pg-home-intro-section {
    margin-top: 20px;
  }

  .intro-top-block {
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
  }

  .col-lg-4.p-5,
  .col-lg-8.p-5 {
    padding: 1.75rem !important;
  }

  .intro-title {
    font-size: 32px;
  }

  .intro-lead {
    font-size: 19px;
    line-height: 1.45;
    margin-bottom: 16px !important;
  }

  .intro-body {
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 18px !important;
  }

  .btn-read-firm {
    font-size: 15px;
    padding: 7px 16px;
  }

  .watermark-gavel {
    width: 75px;
    bottom: 10px;
    left: 10px;
  }

  .watermark-scales {
    width: 90px;
    right: 15px;
    bottom: 10px;
  }

  .intro-bottom-container {
    width: 100%;
    padding-bottom: 10px;
  }

  .intro-gold-card-wrapper {
    border-radius: 20px;
    padding: 20px 18px;
    margin-top: 0;
  }

  .feature-column-card {
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(197, 157, 95, 0.25);
  }

  .feature-column-card:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
  }

  .feature-icon-img {
    width: 55px;
    height: 55px;
  }

  .feature-card-title {
    font-size: 16px;
  }

  .feature-card-desc {
    font-size: 13.5px;
  }
}

/* ===================================
   Max 575px (Small Mobile)
   =================================== */
@media (max-width: 575px) {
  .pg-home-intro-section {
    margin-top: 15px;
  }

  .intro-top-block {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    border-left-width: 1px;
    border-right-width: 1px;
    border-top-width: 1px;
  }

  .col-lg-4.p-5,
  .col-lg-8.p-5 {
    padding: 1.25rem !important;
  }

  .intro-title {
    font-size: 26px;
    line-height: 1.25;
  }

  .intro-lead {
    font-size: 16px;
    line-height: 1.45;
    margin-bottom: 14px !important;
  }

  .intro-body {
    font-size: 13.5px;
    line-height: 1.55;
    margin-bottom: 16px !important;
  }

  .btn-read-firm {
    font-size: 13.5px;
    padding: 6px 14px;
    gap: 6px;
  }

  .watermark-gavel {
    width: 60px;
    bottom: 8px;
    left: 8px;
  }

  .watermark-scales {
    width: 70px;
    right: 10px;
    bottom: 8px;
  }

  .intro-bottom-container {
    width: 100%;
    padding-bottom: 8px;
  }

  .intro-gold-card-wrapper {
    border-radius: 16px;
    padding: 16px 14px;
    margin-top: 0;
    border-width: 1.5px;
  }

  .feature-column-card {
    padding-bottom: 14px;
    margin-bottom: 14px;
    border-bottom: 1px solid rgba(197, 157, 95, 0.25);
  }

  .feature-column-card:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
  }

  .feature-column-card .d-flex {
    gap: 12px !important;
  }

  .feature-icon-img {
    width: 46px;
    height: 46px;
  }

  .feature-card-title {
    font-size: 15px;
    margin-bottom: 3px !important;
  }

  .feature-card-desc {
    font-size: 13px;
    line-height: 1.4;
  }
}

/* Practice Areas */
.section-tag {
  background-color: rgba(197, 157, 95, 0.1);
  color: #c59d5f;
  font-weight: 600;
  font-size: 0.8rem;
  padding: 6px 16px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-block;
  margin-bottom: 15px;
}

/* Practice Areas Section Header */
.practice-badge-wrapper {
  display: block;
}

.practice-badge-pill {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid #c59d5f;
  color: #c59d5f;
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.practice-main-title {
  font-size: 70px;
  color: #051b35;
}

.practice-main-title .text-gold {
  color: #c59d5f;
}

.practice-header-right-block {
  max-width: 480px;
  width: 100%;
}

.practice-top-line {
  height: 2px;
  background-color: #c59d5f;
  width: 100%;
}

.practice-header-desc {
  font-size: 20px;
  font-weight: 600;
  color: #1b263b;
  line-height: 1.5;
}

.practice-bottom-line-wrapper {
  width: 100%;
}

.practice-bottom-line {
  height: 2px;
  background-color: #c59d5f;
}

.gold-gavel-icon {
  color: #c59d5f;
  font-size: 1.1rem;
}

/* Practice Card New with Bottom-Left Notch */
.practice-card-new {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 100%;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding-bottom: 45px;
  /* Offset to leave room for Notch overlay */
}

.practice-card-new.blue-theme {
  background-color: #051b35;
  color: #ffffff;
}

.practice-card-new.gold-theme {
  background-color: #e3ae57;
  color: #ffffff;
}

.practice-card-img-holder {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.practice-card-img-holder .card-img-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.practice-card-new:hover .card-img-element {
  transform: scale(1.08);
}

.practice-card-new:hover {
  transform: translateY(-8px);

}

.practice-card-new .practice-card-body {
  padding: 25px;
  flex-grow: 1;
}

.practice-card-new .practice-card-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
}

.practice-card-new .practice-card-text {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.9;
}

/* Bottom-left cut-out notch for button */
.practice-card-notch-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  /* matches page background */
  border-top-right-radius: 20px;
  padding: 10px 15px 0 0;
  z-index: 5;
}

/* Inverted border radius curve top of notch */
.practice-card-notch-footer::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  width: 10px;
  height: 10px;
  background-color: transparent;
  border-bottom-left-radius: 10px;
  box-shadow: 0 10px 0 0 #ffffff;
  pointer-events: none;
  display: block;
}

/* Inverted border radius curve right of notch */
.practice-card-notch-footer::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: -10px;
  width: 10px;
  height: 10px;
  background-color: transparent;
  border-bottom-left-radius: 10px;
  box-shadow: -10px 0 0 0 #ffffff;
  pointer-events: none;
  display: block;
}

.explore-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.blue-theme .explore-more-btn {
  background-color: #051b35;
  color: #ffffff;
}

.blue-theme .explore-more-btn:hover {
  opacity: 0.9;
  color: #ffffff;
}

.gold-theme .explore-more-btn {
  background-color: #e3ae57;
  color: #ffffff;
}

.gold-theme .explore-more-btn:hover {
  opacity: 0.9;
  color: #ffffff;
}

/* View all practice areas bottom button */
.btn-view-all-practice {
  display: inline-flex;
  align-items: center;
  background-color: transparent;
  border: 1.5px solid #c59d5f;
  color: #c59d5f;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 26px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-view-all-practice:hover {
  background-color: #c59d5f;
  color: #ffffff;
  transform: translateY(-2px);
}

/* ===================================
   993px - 1199px (Small Desktop / Large Laptop)
   =================================== */
@media (min-width: 993px) and (max-width: 1199px) {
  .practice-badge-pill {
    font-size: 16px;
    padding: 5px 16px;
  }

  .practice-main-title {
    font-size: 50px;
  }

  .practice-header-desc {
    font-size: 17px;
  }

  .practice-card-new {
    min-height: 400px;
  }

  .practice-card-img-holder {
    height: 190px;
  }

  .practice-card-new .practice-card-body {
    padding: 20px;
  }

  .practice-card-new .practice-card-title {
    font-size: 21px;
  }

  .practice-card-new .practice-card-text {
    font-size: 15px;
  }

  .explore-more-btn {
    font-size: 15px;
    padding: 7px 20px;
  }

  .btn-view-all-practice {
    font-size: 20px;
    padding: 10px 24px;
  }
}

/* ===================================
   768px - 992px (Tablet)
   =================================== */
@media (min-width: 768px) and (max-width: 992px) {
  .pg-home-practice-section {
    padding: 3rem 0 !important;
    margin: 3rem 0 !important;
  }

  .col-lg-6.text-end {
    text-align: left !important;
  }

  .practice-header-right-block {
    max-width: 100%;
    margin-top: 20px;
  }

  .practice-badge-pill {
    font-size: 15px;
    padding: 5px 14px;
  }

  .practice-main-title {
    font-size: 38px;
    margin-top: 12px !important;
  }

  .practice-header-desc {
    font-size: 16px;
    margin: 12px 0 !important;
  }

  .practice-card-new {
    min-height: auto;
    padding-bottom: 40px;
  }

  .practice-card-img-holder {
    height: 200px;
  }

  .practice-card-new .practice-card-body {
    padding: 20px;
  }

  .practice-card-new .practice-card-title {
    font-size: 20px;
  }

  .practice-card-new .practice-card-text {
    font-size: 15px;
    line-height: 1.5;
  }

  .explore-more-btn {
    font-size: 14px;
    padding: 7px 18px;
  }

  .btn-view-all-practice {
    font-size: 18px;
    padding: 10px 22px;
  }
}

/* ===================================
   576px - 767px (Large Mobile)
   =================================== */
@media (min-width: 576px) and (max-width: 767px) {
  .pg-home-practice-section {
    padding: 2rem 0 !important;
    margin: 2rem 0 !important;
  }

  .col-lg-6.text-end {
    text-align: left !important;
  }

  .practice-header-right-block {
    max-width: 100%;
    margin-top: 18px;
  }

  .practice-badge-pill {
    font-size: 13px;
    padding: 5px 12px;
  }

  .practice-badge-pill i {
    margin-right: 6px !important;
  }

  .practice-main-title {
    font-size: 28px;
    margin-top: 10px !important;
  }

  .practice-header-desc {
    font-size: 15px;
    margin: 10px 0 !important;
    line-height: 1.45;
  }

  .practice-card-new {
    min-height: auto;
    padding-bottom: 38px;
    border-radius: 18px;
  }

  .practice-card-img-holder {
    height: 190px;
  }

  .practice-card-new .practice-card-body {
    padding: 18px;
  }

  .practice-card-new .practice-card-title {
    font-size: 19px;
    margin-bottom: 8px;
  }

  .practice-card-new .practice-card-text {
    font-size: 14px;
    line-height: 1.5;
  }

  .practice-card-notch-footer {
    padding: 8px 12px 0 0;
  }

  .explore-more-btn {
    font-size: 13px;
    padding: 6px 16px;
  }

  .btn-view-all-practice {
    font-size: 16px;
    padding: 9px 20px;
    width: 100%;
    justify-content: center;
  }

  .text-center.mt-5 {
    margin-top: 2.5rem !important;
  }
}

/* ===================================
   Max 575px (Small Mobile)
   =================================== */
@media (max-width: 575px) {
  .pg-home-practice-section {
    padding: 1.5rem 0 !important;
    margin: 1.5rem 0 !important;
  }

  .col-lg-6.text-end {
    text-align: left !important;
  }

  .practice-header-right-block {
    max-width: 100%;
    margin-top: 14px;
  }

  .practice-badge-pill {
    font-size: 12px;
    padding: 4px 12px;
  }

  .practice-badge-pill i {
    margin-right: 5px !important;
  }

  .practice-main-title {
    font-size: 24px;
    margin-top: 8px !important;
  }

  .practice-header-desc {
    font-size: 13.5px;
    margin: 8px 0 !important;
    line-height: 1.45;
    br {
      display: none;
    }
  }

  .practice-top-line,
  .practice-bottom-line {
    height: 1.5px;
  }

  .gold-gavel-icon {
    font-size: 0.9rem;
  }

  .practice-card-new {
    min-height: auto;
    padding-bottom: 34px;
    border-radius: 16px;
  }

  .practice-card-img-holder {
    height: 170px;
  }

  .practice-card-new .practice-card-body {
    padding: 16px;
  }

  .practice-card-new .practice-card-title {
    font-size: 17px;
    margin-bottom: 6px;
  }

  .practice-card-new .practice-card-text {
    font-size: 13px;
    line-height: 1.5;
  }

  .practice-card-notch-footer {
    padding: 7px 10px 0 0;
  }

  .practice-card-notch-footer::before,
  .practice-card-notch-footer::after {
    width: 8px;
    height: 8px;
  }

  .explore-more-btn {
    font-size: 12.5px;
    padding: 6px 14px;
    gap: 6px;
  }

  .btn-view-all-practice {
    font-size: 14px;
    padding: 9px 18px;
    width: 100%;
    justify-content: center;
  }

  .text-center.mt-5 {
    margin-top: 2rem !important;
  }
}


/* Experience Section - Curved Interlocking Cards & Center Consult Card */
.exp-card-curved {
  background: #ffffff;
  padding: 30px;
  border: 1px solid rgba(197, 157, 95, 0.18);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  flex: 1;
}

.exp-card-curved:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(197, 157, 95, 0.12);
}

.exp-card-icon-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.exp-card-title {
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 10px;
  color: #051b35;
}

.exp-card-text {
  font-size: 20px;
  color: #5e6e7f;
  line-height: 1.55;
  margin-bottom: 0;
}

/* Interlocking border radiuses */
.left-top-card {
  border-radius: 20px;
  border-bottom-right-radius: 65px;
}

.left-bottom-card {
  border-radius: 20px;
  border-top-left-radius: 65px;
}

.right-top-card {
  border-radius: 20px;
  border-bottom-left-radius: 65px;
}

.right-bottom-card {
  border-radius: 20px;
  border-top-right-radius: 65px;
}

/* Center card consultation block */
.center-consult-card {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
  background-color: #ffffff;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.center-consult-card .center-card-img-holder {
  flex-grow: 1;
  overflow: hidden;
}

.center-consult-card .center-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 300px;
  transition: transform 0.5s ease;
}

.center-consult-card:hover .center-img {
  transform: scale(1.06);
}

.three-gold-lines {
  display: flex;
  flex-direction: column;
  gap: 3px;
  background-color: #ffffff;
  padding: 8px 0;
}

.three-gold-lines .gold-line {
  height: 10px;
  background-color: #e3ae57;
  width: 100%;
}

.center-card-footer-block {
  background-color: #e3ae57;
  padding: 20px 15px;
}

.center-card-footer-block p {
  font-size: 22px;
  font-weight: 700;
  color: #051b35;
  letter-spacing: 0.02em;
}

/* ===================================
   993px - 1199px (Small Desktop / Large Laptop)
   =================================== */
@media (min-width: 993px) and (max-width: 1199px) {
  .exp-card-curved {
    padding: 22px;
  }

  .exp-card-icon-img {
    width: 38px;
    height: 38px;
  }

  .exp-card-title {
    font-size: 22px;
    margin-bottom: 8px;
  }

  .exp-card-text {
    font-size: 16px;
  }

  .left-top-card,
  .right-top-card,
  .left-bottom-card,
  .right-bottom-card {
    border-radius: 16px;
  }

  .left-top-card {
    border-bottom-right-radius: 45px;
  }

  .left-bottom-card {
    border-top-left-radius: 45px;
  }

  .right-top-card {
    border-bottom-left-radius: 45px;
  }

  .right-bottom-card {
    border-top-right-radius: 45px;
  }

  .center-consult-card .center-img {
    min-height: 220px;
  }

  .three-gold-lines .gold-line {
    height: 8px;
  }

  .center-card-footer-block {
    padding: 16px 12px;
  }

  .center-card-footer-block p {
    font-size: 17px;
  }
}

/* ===================================
   768px - 992px (Tablet)
   =================================== */
@media (min-width: 768px) and (max-width: 992px) {
  .pg-home-experience-section {
    padding: 3rem 0 !important;
  }

  .col-lg-6.text-end {
    text-align: left !important;
  }

  .practice-header-right-block {
    max-width: 100%;
    margin-top: 20px;
  }

  /* Reorder: center card first, then left cards, then right cards */
  .row.g-4.align-items-stretch {
    display: flex;
    flex-wrap: wrap;
  }

  .col-lg-4:nth-child(2) {
    order: -1;
    margin-bottom: 20px;
  }

  .exp-card-curved {
    padding: 24px;
  }

  .exp-card-icon-img {
    width: 40px;
    height: 40px;
  }

  .exp-card-title {
    font-size: 22px;
    margin-bottom: 8px;
  }

  .exp-card-text {
    font-size: 16px;
    line-height: 1.5;
  }

  .left-top-card {
    border-radius: 16px;
    border-bottom-right-radius: 45px;
  }

  .left-bottom-card {
    border-radius: 16px;
    border-top-left-radius: 45px;
  }

  .right-top-card {
    border-radius: 16px;
    border-bottom-left-radius: 45px;
  }

  .right-bottom-card {
    border-radius: 16px;
    border-top-right-radius: 45px;
  }

  .center-consult-card .center-img {
    min-height: 260px;
  }

  .three-gold-lines .gold-line {
    height: 8px;
  }

  .center-card-footer-block {
    padding: 18px 14px;
  }

  .center-card-footer-block p {
    font-size: 18px;
  }
}

/* ===================================
   576px - 767px (Large Mobile)
   =================================== */
@media (min-width: 576px) and (max-width: 767px) {
  .pg-home-experience-section {
    padding: 2.5rem 0 !important;
  }

  .col-lg-6.text-end {
    text-align: left !important;
  }

  .practice-header-right-block {
    max-width: 100%;
    margin-top: 16px;
  }

  .col-lg-4:nth-child(2) {
    order: -1;
    margin-bottom: 16px;
  }

  .col-lg-4.col-md-6.d-flex {
    gap: 16px !important;
  }

  .exp-card-curved {
    padding: 20px;
  }

  .exp-card-icon-img {
    width: 36px;
    height: 36px;
  }

  .exp-card-title {
    font-size: 19px;
    margin-bottom: 6px;
  }

  .exp-card-text {
    font-size: 14.5px;
    line-height: 1.5;
  }

  .left-top-card {
    border-radius: 14px;
    border-bottom-right-radius: 35px;
  }

  .left-bottom-card {
    border-radius: 14px;
    border-top-left-radius: 35px;
  }

  .right-top-card {
    border-radius: 14px;
    border-bottom-left-radius: 35px;
  }

  .right-bottom-card {
    border-radius: 14px;
    border-top-right-radius: 35px;
  }

  .center-consult-card .center-img {
    min-height: 220px;
  }

  .three-gold-lines .gold-line {
    height: 7px;
  }

  .center-card-footer-block {
    padding: 16px 12px;
  }

  .center-card-footer-block p {
    font-size: 16px;
  }
}

/* ===================================
   Max 575px (Small Mobile)
   =================================== */
@media (max-width: 575px) {
  .pg-home-experience-section {
    padding: 2rem 0 !important;
  }

  .col-lg-6.text-end {
    text-align: left !important;
  }

  .practice-header-right-block {
    max-width: 100%;
    margin-top: 12px;
  }

  .col-lg-4:nth-child(2) {
    order: -1;
    margin-bottom: 14px;
  }

  .col-lg-4.col-md-6.d-flex {
    gap: 14px !important;
  }

  .exp-card-curved {
    padding: 16px;
  }

  .exp-card-icon-img {
    width: 32px;
    height: 32px;
  }

  .exp-card-title {
    font-size: 17px;
    margin-bottom: 5px;
  }

  .exp-card-text {
    font-size: 13.5px;
    line-height: 1.5;
  }

  .left-top-card {
    border-radius: 12px;
    border-bottom-right-radius: 28px;
  }

  .left-bottom-card {
    border-radius: 12px;
    border-top-left-radius: 28px;
  }

  .right-top-card {
    border-radius: 12px;
    border-bottom-left-radius: 28px;
  }

  .right-bottom-card {
    border-radius: 12px;
    border-top-right-radius: 28px;
  }

  .center-consult-card {
    border-radius: 16px;
  }

  .center-consult-card .center-img {
    min-height: 180px;
  }

  .three-gold-lines .gold-line {
    height: 6px;
  }

  .center-card-footer-block {
    padding: 14px 10px;
  }

  .center-card-footer-block p {
    font-size: 14px;
    letter-spacing: 0.01em;
  }

  .center-card-footer-block p br {
    display: none;
  }
}


/* Stats Block */
.pg-home-stats-container {
  background-color: #ffffff;
  border-top: 1px solid rgba(197, 157, 95, 0.15);
  border-bottom: 1px solid rgba(197, 157, 95, 0.15);
  padding: 40px 0;
}

.stat-item {
  text-align: center;
}

/* Center the row on desktop with only 3 cards */
.row.g-4.text-center {
  justify-content: center;
} 

/* border right separator on desktop viewport sizes */
@media (min-width: 768px) {
  .stat-column:not(:last-child) {
    border-right: 1px solid rgba(9, 26, 47, 0.15);
  }
}

.stat-number {
  font-size: 70px;
  font-weight: 800;
  color: #051b35;
  margin-bottom: 2px;
  line-height: 1.1;
}

.stat-label {
  font-size: 22px;
  font-weight: 500;
  color: #5e6e7f;
  margin-bottom: 0;
}

/* ===================================
   993px - 1199px (Small Desktop / Large Laptop)
   =================================== */
@media (min-width: 993px) and (max-width: 1199px) {
  .pg-home-stats-container {
    padding: 32px 0;
  }

  .stat-number {
    font-size: 54px;
  }

  .stat-label {
    font-size: 18px;
  }
}

/* ===================================
   768px - 992px (Tablet)
   =================================== */
@media (min-width: 768px) and (max-width: 992px) {
  .pg-home-stats-container {
    padding: 26px 0;
  }

  .stat-number {
    font-size: 42px;
  }

  .stat-label {
    font-size: 15px;
  }
}

/* ===================================
   576px - 767px (Large Mobile)
   2-column grid (col-6) — add row/col dividers
   =================================== */
@media (min-width: 576px) and (max-width: 767px) {
  .pg-home-stats-container {
    padding: 22px 0;
  }

  .row.g-4.text-center {
    row-gap: 24px !important;
  }

  .stat-number {
    font-size: 36px;
  }

  .stat-label {
    font-size: 14px;
  }

  /* Right border only between item 1 and item 2 */
  .stat-column:nth-child(1) {
    border-right: 1px solid rgba(9, 26, 47, 0.15);
  }

  /* Bottom border under first row (items 1 & 2) */
  .stat-column:nth-child(1),
  .stat-column:nth-child(2) {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(9, 26, 47, 0.15);
  }

  /* Item 3 is alone on row 2 — center it as a full-width row */
  .stat-column:nth-child(3) {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* ===================================
   Max 575px (Small Mobile)
   2-column grid (col-6) — add row/col dividers
   =================================== */
@media (max-width: 575px) {
  .pg-home-stats-container {
    padding: 18px 0;
  }

  .row.g-4.text-center {
    row-gap: 20px !important;
  }

  .stat-number {
    font-size: 28px;
  }

  .stat-label {
    font-size: 12.5px;
    line-height: 1.3;
  }

  /* Right border only between item 1 and item 2 */
  .stat-column:nth-child(1) {
    border-right: 1px solid rgba(9, 26, 47, 0.15);
  }

  /* Bottom border under first row (items 1 & 2) */
  .stat-column:nth-child(1),
  .stat-column:nth-child(2) {
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(9, 26, 47, 0.15);
  }

  /* Item 3 is alone on row 2 — center it as a full-width row */
  .stat-column:nth-child(3) {
    flex: 0 0 100%;
    max-width: 100%;
  }
}


/* Experts Section */
.experts-img-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.experts-img {
  width: 100%;
  height: 750px;
  object-fit: cover;
}

.expert-card-item {
  background-color: #faf8f5;
  border-radius: 16px;
  padding: 18px 24px;
  border: 1px solid rgba(197, 157, 95, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expert-card-item:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
}

.expert-icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #051b35;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.expert-list-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.expert-card-title {
  font-weight: 700;
  font-size: 30px;
  color: #051b35;
}

.expert-card-desc {
  font-size: 24px;
  color: #5e6e7f;
  line-height: 1.5;
}

.btn-outline-blue-experts {
  display: inline-flex;
  align-items: center;
  background-color: transparent;
  border: 1.5px solid #051b35;
  color: #051b35;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline-blue-experts:hover {
  background-color: #051b35;
  color: #ffffff;
  transform: translateY(-2px);
}

/* ===================================
   993px - 1199px (Small Desktop / Large Laptop)
   =================================== */
@media (min-width: 993px) and (max-width: 1199px) {
  .experts-img {
    height: 600px;
  }

  .practice-header-desc {
    font-size: 17px;
  }

  .expert-card-item {
    padding: 14px 18px;
  }

  .expert-icon-circle {
    width: 56px;
    height: 56px;
  }

  .expert-list-icon {
    width: 32px;
    height: 32px;
  }

  .expert-card-title {
    font-size: 22px;
    margin-bottom: 4px !important;
  }

  .expert-card-desc {
    font-size: 16px;
  }

  .btn-outline-blue-experts {
    font-size: 16px;
    padding: 10px 22px;
  }
}

/* ===================================
   768px - 992px (Tablet)
   =================================== */
@media (min-width: 768px) and (max-width: 992px) {
  .pg-home-experts-section {
    margin: 3rem 0 !important;
  }

  .row.g-5 {
    row-gap: 2rem !important;
  }

  .experts-img {
    height: 380px;
  }

  .practice-header-desc {
    font-size: 16px;
    margin-bottom: 20px !important;
  }

  .expert-card-item {
    padding: 14px 16px;
  }

  .expert-icon-circle {
    width: 52px;
    height: 52px;
  }

  .expert-list-icon {
    width: 30px;
    height: 30px;
  }

  .expert-card-title {
    font-size: 20px;
    margin-bottom: 3px !important;
  }

  .expert-card-desc {
    font-size: 15px;
    line-height: 1.45;
  }

  .btn-outline-blue-experts {
    font-size: 15px;
    padding: 9px 20px;
  }
}

/* ===================================
   576px - 767px (Large Mobile)
   =================================== */
@media (min-width: 576px) and (max-width: 767px) {
  .pg-home-experts-section {
    margin: 2.5rem 0 !important;
  }

  .row.g-5 {
    row-gap: 1.75rem !important;
  }

  .experts-img-wrapper {
    border-radius: 18px;
  }

  .experts-img {
    height: 300px;
  }

  .practice-header-desc {
    font-size: 15px;
    margin-bottom: 18px !important;
  }

  .expert-card-item {
    padding: 12px 14px;
    gap: 12px !important;
    border-radius: 12px;
  }

  .expert-icon-circle {
    width: 46px;
    height: 46px;
  }

  .expert-list-icon {
    width: 26px;
    height: 26px;
  }

  .expert-card-title {
    font-size: 17px;
    margin-bottom: 2px !important;
  }

  .expert-card-desc {
    font-size: 13.5px;
    line-height: 1.4;
  }

  .btn-outline-blue-experts {
    font-size: 14px;
    padding: 9px 18px;
    width: 100%;
    justify-content: center;
  }
}

/* ===================================
   Max 575px (Small Mobile)
   =================================== */
@media (max-width: 575px) {
  .pg-home-experts-section {
    margin: 2rem 0 !important;
  }

  .row.g-5 {
    row-gap: 1.5rem !important;
  }

  .experts-img-wrapper {
    border-radius: 14px;
  }

  .experts-img {
    height: 240px;
  }

  .practice-header-desc {
    font-size: 13.5px;
    line-height: 1.5;
    margin-bottom: 16px !important;
  }

  .expert-card-item {
    padding: 10px 12px;
    gap: 10px !important;
    border-radius: 10px;
    margin-bottom: 10px !important;
  }

  .expert-icon-circle {
    width: 40px;
    height: 40px;
  }

  .expert-list-icon {
    width: 22px;
    height: 22px;
  }

  .expert-card-title {
    font-size: 15px;
    margin-bottom: 2px !important;
  }

  .expert-card-desc {
    font-size: 12.5px;
    line-height: 1.4;
  }

  .btn-outline-blue-experts {
    font-size: 13px;
    padding: 8px 16px;
    width: 100%;
    justify-content: center;
    letter-spacing: 0.03em;
  }
}


/* Testimonials */
.testimonial-card {
  background: #ffffff;
  border: 1px solid rgba(197, 157, 95, 0.15);
  border-radius: 24px;
  padding: 35px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-author-new {
  font-weight: 700;
  font-size: 26px;
  color: #051b35;
}

.testimonial-text-new {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.65;
  color: #1b263b;
  font-style: italic;
}

.testimonial-stars-new {
  color: #e3ae57;
  font-size: 0.9rem;
}

/* ===================================
   993px - 1199px (Small Desktop / Large Laptop)
   =================================== */
@media (min-width: 993px) and (max-width: 1199px) {
  .practice-badge-pill {
    font-size: 16px;
    padding: 5px 16px;
  }

  .practice-main-title {
    font-size: 46px;
  }

  .practice-header-desc {
    font-size: 17px;
  }

  .testimonial-card {
    padding: 28px 24px;
    border-radius: 18px;
  }

  .testimonial-author-new {
    font-size: 21px;
  }

  .testimonial-text-new {
    font-size: 16px;
  }
}

/* ===================================
   768px - 992px (Tablet)
   =================================== */
@media (min-width: 768px) and (max-width: 992px) {
  .pg-home-testimonials-section {
    margin: 3rem 0 !important;
  }

  .practice-badge-pill {
    font-size: 15px;
    padding: 5px 14px;
  }

  .practice-main-title {
    font-size: 34px;
  }

  .practice-header-desc {
    font-size: 16px;
    max-width: 90% !important;
  }

  .testimonial-card {
    padding: 26px 22px;
    border-radius: 16px;
  }

  .testimonial-author-new {
    font-size: 19px;
    margin-bottom: 8px !important;
  }

  .testimonial-text-new {
    font-size: 15px;
    line-height: 1.55;
  }

  .testimonial-stars-new {
    font-size: 0.8rem;
  }
}

/* ===================================
   576px - 767px (Large Mobile)
   =================================== */
@media (min-width: 576px) and (max-width: 767px) {
  .pg-home-testimonials-section {
    margin: 2.5rem 0 !important;
  }

  .practice-badge-pill {
    font-size: 13px;
    padding: 5px 12px;
  }

  .practice-main-title {
    font-size: 26px;
  }

  .practice-header-desc {
    font-size: 14.5px;
    max-width: 100% !important;
  }

  .testimonial-card {
    padding: 22px 20px;
    border-radius: 14px;
  }

  .testimonial-author-new {
    font-size: 17px;
    margin-bottom: 6px !important;
  }

  .testimonial-text-new {
    font-size: 14px;
    line-height: 1.5;
  }

  .testimonial-stars-new {
    font-size: 0.75rem;
  }
}

/* ===================================
   Max 575px (Small Mobile)
   =================================== */
@media (max-width: 575px) {
  .pg-home-testimonials-section {
    margin: 2rem 0 !important;
  }

  .practice-badge-pill {
    font-size: 12px;
    padding: 4px 10px;
  }

  .practice-badge-pill i {
    margin-right: 5px !important;
  }

  .practice-main-title {
    font-size: 21px;
  }

  .practice-header-desc {
    font-size: 13px;
    max-width: 100% !important;
    line-height: 1.5;
  }

  .testimonial-card {
    padding: 18px 16px;
    border-radius: 12px;
  }

  .testimonial-author-new {
    font-size: 15.5px;
    margin-bottom: 5px !important;
  }

  .testimonial-text-new {
    font-size: 13px;
    line-height: 1.5;
  }

  .testimonial-stars-new {
    font-size: 0.7rem;
  }
}

/* CTA Mid section banner */
.pg-home-cta-banner {
  background-color: #051b35;
  color: #f8f9fa;
  padding: 40px 0;
  border-top: 3px solid #c59d5f;
}

.cta-banner-tag {
  font-weight: 700;
  font-size: 35px;
  letter-spacing: 0.12em;
  color: #c59d5f;
  text-transform: uppercase;
}

.cta-banner-title {
  font-size: 55px;
  font-weight: 700;
  line-height: 1.35;
}

.btn-cta-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #e3ae57;
  color: #051b35;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 24px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1.5px solid #e3ae57;
}

.btn-cta-submit:hover {
  background-color: transparent;
  color: #e3ae57;
  transform: translateY(-2px);
}

/* ===================================
   993px - 1199px (Small Desktop / Large Laptop)
   =================================== */
@media (min-width: 993px) and (max-width: 1199px) {
  .pg-home-cta-banner {
    padding: 34px 0;
  }

  .cta-banner-tag {
    font-size: 26px;
  }

  .cta-banner-title {
    font-size: 40px;
  }

  .btn-cta-submit {
    font-size: 19px;
    padding: 12px 26px;
  }
}

/* ===================================
   768px - 992px (Tablet)
   =================================== */
@media (min-width: 768px) and (max-width: 992px) {
  .pg-home-cta-banner {
    padding: 30px 0;
  }

  .cta-banner-tag {
    font-size: 20px;
    letter-spacing: 0.08em;
    margin-bottom: 12px !important;
  }

  .cta-banner-title {
    font-size: 30px;
    line-height: 1.3;
    margin-bottom: 20px !important;
  }

  .btn-cta-submit {
    font-size: 17px;
    padding: 11px 24px;
  }
}

/* ===================================
   576px - 767px (Large Mobile)
   =================================== */
@media (min-width: 576px) and (max-width: 767px) {
  .pg-home-cta-banner {
    padding: 26px 0;
    border-top-width: 2.5px;
  }

  .cta-banner-tag {
    font-size: 16px;
    letter-spacing: 0.06em;
    margin-bottom: 10px !important;
  }

  .cta-banner-title {
    font-size: 24px;
    line-height: 1.35;
    margin-bottom: 18px !important;
  }

  .btn-cta-submit {
    font-size: 15px;
    padding: 11px 22px;
    width: 100%;
    justify-content: center;
  }
}

/* ===================================
   Max 575px (Small Mobile)
   =================================== */
@media (max-width: 575px) {
  .pg-home-cta-banner {
    padding: 22px 0;
    border-top-width: 2px;
  }

  .cta-banner-tag {
    font-size: 13px;
    letter-spacing: 0.05em;
    margin-bottom: 8px !important;
  }

  .cta-banner-title {
    font-size: 19px;
    line-height: 1.4;
    margin-bottom: 16px !important;
  }

  .btn-cta-submit {
    font-size: 13.5px;
    padding: 10px 18px;
    width: 100%;
    justify-content: center;
    gap: 6px;
  }
}


/* Footer Section */
.pg-home-footer-main {
  background-color: #dfb15b;
  color: #051b35;
  padding: 80px 0 40px 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.footer-watermark {
  position: absolute;
  opacity: 0.045;
  right: 5%;
  bottom: -5%;
  width: 320px;
  pointer-events: none;
  z-index: 1;
  transform: rotate(-10deg);
}

.footer-logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.footer-brand-title {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.05;
  color: #051b35;
}

.footer-brand-tagline {
  font-size: 1.25rem;
  font-weight: 700;
  color: #051b35;
}

.footer-brand-desc {
  font-size: 0.95rem;
  line-height: 1.55;
  color: #051b35;
  font-weight: 700;
}

.footer-col-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #051b35;
  text-transform: none;
}

.footer-nav-list a {
  color: #051b35;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: opacity 0.25s ease;
}

.footer-nav-list a:hover {
  opacity: 0.8;
}

.footer-contact-list .contact-link {
  color: #051b35;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
}

.contact-dot {
  color: #051b35;
  font-size: 1.2rem;
  font-weight: 900;
}

.footer-social-link {
  color: #051b35;
  font-size: 1.4rem;
  transition: transform 0.2s ease;
}

.footer-social-link:hover {
  transform: scale(1.15);
}

.footer-divider-line {
  border-top: 1.5px solid #ffffff;
  opacity: 1;
  margin: 40px 0 20px 0;
}

.copyright-text {
  font-size: 0.95rem;
  font-weight: 700;
  color: #051b35;
}

/* ===================================
   993px - 1199px (Small Desktop / Large Laptop)
   =================================== */
@media (min-width: 993px) and (max-width: 1199px) {
  .pg-home-footer-main {
    padding: 60px 0 32px 0;
  }

  .footer-logo-img {
    width: 38px;
    height: 38px;
  }

  .footer-brand-title {
    font-size: 2.5rem;
  }

  .footer-brand-tagline {
    font-size: 1.05rem;
  }

  .footer-brand-desc {
    font-size: 0.88rem;
  }

  .footer-col-title {
    font-size: 1.15rem;
    margin-bottom: 20px !important;
  }

  .footer-nav-list a,
  .footer-contact-list .contact-link {
    font-size: 0.88rem;
  }

  .col-lg-1.text-end {
    text-align: start !important;
  }

  .footer-social-icons-wrapper {
    justify-content: flex-start !important;
  }
}

/* ===================================
   768px - 992px (Tablet)
   =================================== */
@media (min-width: 768px) and (max-width: 992px) {
  .pg-home-footer-main {
    padding: 50px 0 28px 0;
  }

  .row.g-4.align-items-start {
    row-gap: 28px !important;
  }

  .col-lg-5.text-start {
    max-width: 100%;
  }

  .footer-logo-img {
    width: 36px;
    height: 36px;
  }

  .footer-brand-title {
    font-size: 2.1rem;
  }

  .footer-brand-tagline {
    font-size: 1rem;
  }

  .footer-brand-desc {
    font-size: 0.88rem;
    max-width: 480px;
  }

  .col-lg-3.col-md-6.ps-lg-5 {
    padding-left: var(--bs-gutter-x, 0.75rem) !important;
  }

  .footer-col-title {
    font-size: 1.15rem;
    margin-bottom: 16px !important;
  }

  .footer-nav-list a,
  .footer-contact-list .contact-link {
    font-size: 0.88rem;
  }

  .col-lg-1.text-end {
    text-align: start !important;
  }

  .footer-social-icons-wrapper {
    justify-content: flex-start !important;
  }

  .footer-social-link {
    font-size: 1.25rem;
  }

  .footer-divider-line {
    margin: 32px 0 16px 0;
  }

  .copyright-text {
    font-size: 0.88rem;
  }
}

/* ===================================
   576px - 767px (Large Mobile)
   =================================== */
@media (min-width: 576px) and (max-width: 767px) {
  .pg-home-footer-main {
    padding: 40px 0 24px 0;
  }

  .row.g-4.align-items-start {
    row-gap: 24px !important;
  }

  .footer-logo-img {
    width: 34px;
    height: 34px;
  }

  .footer-brand-title {
    font-size: 1.7rem;
  }

  .footer-brand-tagline {
    font-size: 0.95rem;
  }

  .footer-brand-desc {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .col-lg-3.col-md-6.ps-lg-5 {
    padding-left: var(--bs-gutter-x, 0.75rem) !important;
  }

  .footer-col-title {
    font-size: 1.05rem;
    margin-bottom: 14px !important;
  }

  .footer-nav-list a,
  .footer-contact-list .contact-link {
    font-size: 0.85rem;
  }

  .footer-nav-list li,
  .footer-contact-list li {
    margin-bottom: 8px !important;
  }

  .col-lg-1.text-end {
    text-align: start !important;
  }

  .footer-social-icons-wrapper {
    justify-content: flex-start !important;
    gap: 16px !important;
  }

  .footer-social-link {
    font-size: 1.2rem;
  }

  .footer-divider-line {
    margin: 26px 0 14px 0;
  }

  .copyright-text {
    font-size: 0.82rem;
  }
}

/* ===================================
   Max 575px (Small Mobile)
   =================================== */
@media (max-width: 575px) {
  .pg-home-footer-main {
    padding: 32px 0 20px 0;
  }

  .row.g-4.align-items-start {
    row-gap: 22px !important;
  }

  .footer-logo-img {
    width: 30px;
    height: 30px;
  }

  .footer-brand-title {
    font-size: 1.5rem;
  }

  .footer-brand-tagline {
    font-size: 0.88rem;
    margin-bottom: 10px !important;
  }

  .footer-brand-desc {
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .col-lg-3.col-md-6.ps-lg-5 {
    padding-left: var(--bs-gutter-x, 0.75rem) !important;
  }

  .footer-col-title {
    font-size: 0.98rem;
    margin-bottom: 12px !important;
  }

  .footer-nav-list a,
  .footer-contact-list .contact-link {
    font-size: 0.8rem;
  }

  .footer-nav-list li,
  .footer-contact-list li {
    margin-bottom: 6px !important;
  }

  .contact-dot {
    font-size: 1rem;
  }

  .col-lg-1.text-end {
    text-align: start !important;
  }

  .footer-social-icons-wrapper {
    justify-content: flex-start !important;
    gap: 14px !important;
  }

  .footer-social-link {
    font-size: 1.05rem;
  }

  .footer-divider-line {
    margin: 20px 0 12px 0;
  }

  .copyright-text {
    font-size: 0.75rem;
  }
}

/* Clientele Ticker Styling */
.client-ticker-wrap {
  overflow: hidden;
  width: 100%;
  position: relative;
  background-color: #051b35;
  border-top: 3px solid #c59d5f;
  border-bottom: 3px solid #c59d5f;
  padding: 30px 0;
}

.client-ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 35s linear infinite;
}

.client-ticker-list {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-right: 40px;
}

.client-ticker-item {
  font-family: 'Rajdhani', sans-serif;
  color: #f8f9fa;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(197, 157, 95, 0.2);
  border-radius: 8px;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.client-ticker-item:hover {
  background: rgba(197, 157, 95, 0.15);
  border-color: #c59d5f;
  color: #c59d5f;
  transform: translateY(-2px);
  cursor: pointer;
}

@keyframes ticker-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/* ===================================
   993px - 1199px (Small Desktop / Large Laptop)
   =================================== */
@media (min-width: 993px) and (max-width: 1199px) {
  .practice-badge-pill {
    font-size: 16px;
    padding: 5px 16px;
  }

  .practice-main-title {
    font-size: 46px;
  }

  .client-ticker-wrap {
    padding: 24px 0;
  }

  .client-ticker-list {
    gap: 30px;
    padding-right: 30px;
  }

  .client-ticker-item {
    font-size: 17px;
    padding: 9px 20px;
  }
}

/* ===================================
   768px - 992px (Tablet)
   =================================== */
@media (min-width: 768px) and (max-width: 992px) {
  .pg-home-clientele-ticker-section {
    padding: 3rem 0 !important;
  }

  .practice-badge-pill {
    font-size: 15px;
    padding: 5px 14px;
  }

  .practice-main-title {
    font-size: 34px;
  }

  .client-ticker-wrap {
    padding: 20px 0;
    border-top-width: 2.5px;
    border-bottom-width: 2.5px;
  }

  .client-ticker-track {
    animation-duration: 28s;
  }

  .client-ticker-list {
    gap: 22px;
    padding-right: 22px;
  }

  .client-ticker-item {
    font-size: 15px;
    padding: 8px 18px;
    border-radius: 6px;
  }
}

/* ===================================
   576px - 767px (Large Mobile)
   =================================== */
@media (min-width: 576px) and (max-width: 767px) {
  .pg-home-clientele-ticker-section {
    padding: 2.5rem 0 !important;
  }

  .practice-badge-pill {
    font-size: 13px;
    padding: 5px 12px;
  }

  .practice-main-title {
    font-size: 26px;
  }

  .client-ticker-wrap {
    padding: 16px 0;
    border-top-width: 2px;
    border-bottom-width: 2px;
  }

  .client-ticker-track {
    animation-duration: 22s;
  }

  .client-ticker-list {
    gap: 16px;
    padding-right: 16px;
  }

  .client-ticker-item {
    font-size: 13px;
    padding: 7px 14px;
    border-radius: 6px;
  }
}

/* ===================================
   Max 575px (Small Mobile)
   =================================== */
@media (max-width: 575px) {
  .pg-home-clientele-ticker-section {
    padding: 2rem 0 !important;
  }

  .practice-badge-pill {
    font-size: 12px;
    padding: 4px 10px;
  }

  .practice-badge-pill i {
    margin-right: 5px !important;
  }

  .practice-main-title {
    font-size: 21px;
  }

  .client-ticker-wrap {
    padding: 12px 0;
    border-top-width: 2px;
    border-bottom-width: 2px;
  }

  .client-ticker-track {
    animation-duration: 18s;
  }

  .client-ticker-list {
    gap: 12px;
    padding-right: 12px;
  }

  .client-ticker-item {
    font-size: 11.5px;
    padding: 6px 12px;
    border-radius: 5px;
    letter-spacing: 0.02em;
  }
}

/* ===================================
   Legal Disclaimer Popup Modal
   =================================== */
body.ppa-disclaimer-open {
  overflow: hidden !important;
}

.ppa-disclaimer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(2, 10, 20, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.ppa-disclaimer-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.ppa-disclaimer-modal {
  position: relative;
  width: 100%;
  max-width: 620px;
  max-height: 90vh;
  overflow-y: auto;
  background: linear-gradient(160deg, #091a2f 0%, #051b35 100%);
  border: 1.5px solid rgba(197, 157, 95, 0.45);
  border-radius: 16px;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.75), 0 0 30px rgba(197, 157, 95, 0.12);
  padding: 38px 36px 34px 36px;
  text-align: center;
  transform: scale(0.95) translateY(12px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.ppa-disclaimer-overlay.active .ppa-disclaimer-modal {
  transform: scale(1) translateY(0);
}

.ppa-disclaimer-title {
  color: #c59d5f;
  font-family: 'Rajdhani', 'Outfit', sans-serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.ppa-disclaimer-body {
  color: #d1d9e2;
  font-family: 'Roboto', 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 400;
  margin-bottom: 22px;
}

.ppa-disclaimer-subheading {
  color: #c59d5f;
  font-family: 'Rajdhani', 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.ppa-disclaimer-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 26px;
}

.ppa-disclaimer-item {
  background: rgba(4, 18, 36, 0.7);
  border: 1px solid rgba(197, 157, 95, 0.28);
  border-radius: 8px;
  padding: 12px 18px;
  text-align: left;
  color: #e5edf5;
  font-family: 'Roboto', 'Inter', sans-serif;
  font-size: 13.5px;
  line-height: 1.5;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.ppa-disclaimer-item:hover {
  border-color: rgba(197, 157, 95, 0.55);
  background: rgba(4, 18, 36, 0.9);
}

.ppa-disclaimer-btn {
  background-color: #c59d5f;
  color: #051b35;
  border: none;
  outline: none;
  font-family: 'Rajdhani', 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 10px 48px;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(197, 157, 95, 0.35);
  transition: all 0.3s ease;
  display: inline-block;
}

.ppa-disclaimer-btn:hover {
  background-color: #d6af6f;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(197, 157, 95, 0.5);
  color: #051b35;
}

.ppa-disclaimer-btn:active {
  transform: translateY(0);
}

.ppa-disclaimer-modal::-webkit-scrollbar {
  width: 6px;
}
.ppa-disclaimer-modal::-webkit-scrollbar-thumb {
  background: rgba(197, 157, 95, 0.4);
  border-radius: 4px;
}

@media (max-width: 576px) {
  .ppa-disclaimer-modal {
    padding: 26px 18px 22px 18px;
  }
  .ppa-disclaimer-title {
    font-size: 21px;
    letter-spacing: 2px;
    margin-bottom: 14px;
  }
  .ppa-disclaimer-body {
    font-size: 12.5px;
    line-height: 1.6;
    margin-bottom: 18px;
  }
  .ppa-disclaimer-subheading {
    font-size: 14px;
    letter-spacing: 1.5px;
  }
  .ppa-disclaimer-item {
    font-size: 12.5px;
    padding: 10px 14px;
  }
  .ppa-disclaimer-btn {
    width: 100%;
    padding: 10px 20px;
  }
}