:root {
  --primary-color: #570D61;
  --primary-dark: #3d0844;
  --primary-light: #7A1B85;
  --secondary-color: #7A1B85;
  --accent-color: #9B2FA0;
  --light-bg: #F8F9FA;
  --light-gray: #E9ECEF;
  --dark-text: #212529;
  --muted-text: #6C757D;
  --white: #FFFFFF;
  --border-radius: 12px;
  --border-radius-sm: 8px;
  --border-radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(87, 13, 97, 0.08);
  --shadow-md: 0 4px 16px rgba(87, 13, 97, 0.12);
  --shadow-lg: 0 8px 32px rgba(87, 13, 97, 0.16);
  --transition-base: all 0.3s ease;
  --transition-fast: all 0.15s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark-text);
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--dark-text);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
  color: var(--muted-text);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--primary-light);
}

.section {
  padding: 5rem 0;
}

.section-light {
  background-color: var(--light-bg);
}

.section-dark {
  background-color: var(--primary-color);
  color: var(--white);
}

.section-dark h2,
.section-dark h3,
.section-dark p {
  color: var(--white);
}

.container {
  max-width: 1200px;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

.section-title p {
  max-width: 600px;
  margin: 1rem auto 0;
  font-size: 1.1rem;
}

.text-primary { color: var(--primary-color) !important; }
.text-secondary { color: var(--secondary-color) !important; }
.bg-primary { background-color: var(--primary-color) !important; }
.bg-light { background-color: var(--light-bg) !important; }

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius-sm);
  font-weight: 500;
  transition: var(--transition-base);
  border: none;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--white);
}

.btn-secondary:hover {
  background-color: var(--accent-color);
  color: var(--white);
}

.btn-outline-primary {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background: transparent;
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-light {
  background-color: var(--white);
  color: var(--primary-color);
}

.btn-light:hover {
  background-color: var(--light-bg);
  color: var(--primary-dark);
}

.card {
  border: none;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  background-color: var(--white);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.card-body {
  padding: 1.5rem;
}

.navbar {
  padding: 1rem 0;
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-color) !important;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--dark-text);
  padding: 0.5rem 1rem !important;
  transition: var(--transition-fast);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color);
}

.dropdown-menu {
  border: none;
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  margin-top: 0.5rem;
}

.dropdown-item {
  padding: 0.75rem 1rem;
  border-radius: var(--border-radius-sm);
  transition: var(--transition-fast);
}

.dropdown-item:hover {
  background-color: var(--light-bg);
  color: var(--primary-color);
}

.hero-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></svg>');
  background-size: 200px 200px;
  opacity: 0.5;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-section h1 {
  color: var(--white);
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease-out;
}

.hero-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 600px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-section .btn {
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-base);
  z-index: 1000;
  border: none;
  box-shadow: var(--shadow-md);
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background-color: var(--primary-dark);
  transform: translateY(-4px);
}

footer {
  background-color: #1a1a2e;
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 0 2rem;
}

footer h5 {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer ul li {
  margin-bottom: 0.75rem;
}

footer a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-fast);
}

footer a:hover {
  color: var(--white);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-base);
}

.social-icons a:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-color);
  color: var(--white);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--primary-color);
}

.accordion-button::after {
  filter: invert(1);
}

.accordion-button:not(.collapsed)::after {
  filter: invert(0);
}

.nav-tabs .nav-link {
  border: none;
  color: var(--muted-text);
  font-weight: 500;
  padding: 1rem 1.5rem;
  transition: var(--transition-fast);
}

.nav-tabs .nav-link:hover {
  border: none;
  color: var(--primary-color);
}

.nav-tabs .nav-link.active {
  border: none;
  border-bottom: 3px solid var(--primary-color);
  color: var(--primary-color);
  background: transparent;
}

.badge-primary {
  background-color: var(--primary-color);
}

.pagination {
  gap: 0.5rem;
}

.page-link {
  border: none;
  border-radius: var(--border-radius-sm);
  color: var(--primary-color);
  padding: 0.5rem 1rem;
}

.page-link:hover {
  background-color: var(--light-bg);
  color: var(--primary-color);
}

.page-item.active .page-link {
  background-color: var(--primary-color);
}

@media (max-width: 991.98px) {
  .hero-section {
    min-height: 60vh;
  }
  
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .section {
    padding: 3rem 0;
  }
}

@media (max-width: 767.98px) {
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .hero-section p {
    font-size: 1rem;
  }
  
  .section-title h2 {
    font-size: 1.75rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

.nav_scroll {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav_scroll > li {
  position: relative;
}

.nav_scroll > li > a {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--dark-text);
  font-weight: 500;
  transition: var(--transition-fast);
}

.nav_scroll > li > a:hover {
  color: var(--primary-color);
}

.nav_scroll > li > a i {
  margin-left: 5px;
  font-size: 0.75rem;
}

.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-base);
  z-index: 1000;
  list-style: none;
}

.nav_scroll li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sub-menu li {
  position: relative;
}

.sub-menu li a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--dark-text);
  border-radius: var(--border-radius-sm);
  transition: var(--transition-fast);
}

.sub-menu li a:hover {
  background-color: var(--light-bg);
  color: var(--primary-color);
}

.sub-menu li a i {
  font-size: 0.7rem;
}

.sub-menu .sub-menu {
  top: 0;
  left: 100%;
}

.sub-menu li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.has-submenu > a {
  position: relative;
}

@media (max-width: 991.98px) {
  .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding-left: 1rem;
  }
  
  .sub-menu .sub-menu {
    transform: none;
    left: 0;
  }
  
  .nav_scroll li:hover > .sub-menu {
    transform: none;
  }
  
  .sub-menu li:hover > .sub-menu {
    transform: none;
  }
}

/* ==========================================================
   MODERN LAYOUT – Preloader, Top Bar, Header, Mega Menu,
   Search Overlay, Mobile Nav, Footer, Scroll-to-Top
   ========================================================== */

/* ----- Preloader ----- */
#preloader {
  position: fixed; inset: 0;
  background: var(--primary-color);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity .5s ease, visibility .5s ease;
}
#preloader.loaded { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; }
.preloader-logo img { height: 72px; margin-bottom: 1.5rem; filter: brightness(0) invert(1); }
.preloader-bar {
  width: 200px; height: 4px;
  background: rgba(255,255,255,.2); border-radius: 2px; overflow: hidden;
  margin: 0 auto;
}
.preloader-bar-fill {
  height: 100%; width: 0; background: #fff; border-radius: 2px;
  animation: preloaderFill 1.4s ease-in-out infinite;
}
@keyframes preloaderFill {
  0%   { width: 0;   margin-left: 0; }
  50%  { width: 80%; margin-left: 0; }
  100% { width: 0;   margin-left: 100%; }
}

/* ----- Top Bar ----- */
.top-bar {
  background: var(--primary-dark);
  color: rgba(255,255,255,.82);
  font-size: .8rem; padding: .4rem 0;
}
.top-bar-tagline { color: rgba(255,255,255,.82); font-style: normal; }
.top-bar a { color: rgba(255,255,255,.75); text-decoration: none; transition: color .2s; }
.top-bar a:hover { color: #fff; }
.top-bar-social { display: flex; gap: .5rem; }
.top-bar-social a {
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; transition: background .2s;
}
.top-bar-social a:hover { background: rgba(255,255,255,.25); color: #fff; }

/* ----- Main Header ----- */
.main-header {
  position: sticky; top: 0; z-index: 1040;
  background: #fff;
  box-shadow: 0 2px 12px rgba(87,13,97,.1);
  transition: background .3s ease, box-shadow .3s ease;
}
.main-header.scrolled {
  background: var(--primary-color);
  box-shadow: 0 4px 20px rgba(87,13,97,.35);
}
.main-header .navbar { padding: .55rem 0; position: relative; }

/* ----- Logo ----- */
.navbar-brand {
  display: flex; align-items: center; gap: .65rem;
  text-decoration: none;
}
.logo-img { height: 46px; width: auto; object-fit: contain; }
.logo-text {
  font-weight: 700; font-size: 1.1rem;
  color: var(--primary-color); line-height: 1.2;
  transition: color .3s;
}
.logo-text span { color: var(--secondary-color); }
.scrolled .logo-text,
.scrolled .logo-text span { color: #fff; }

/* ----- Mobile toggler ----- */
.navbar-toggler-custom {
  border: none; background: none; padding: 8px;
  display: flex; flex-direction: column; gap: 5px;
  cursor: pointer; margin-left: auto;
}
.navbar-toggler-custom .bar {
  display: block; width: 24px; height: 2px;
  background: var(--primary-color); border-radius: 2px; transition: all .3s;
}
.scrolled .navbar-toggler-custom .bar { background: #fff; }

/* ----- Desktop nav list ----- */
.main-nav-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; align-items: center; gap: 0;
}
.mnl-item { position: relative; }
.mnl-link {
  display: flex; align-items: center; gap: 4px;
  padding: .5rem .75rem;
  font-size: .86rem; font-weight: 500;
  color: var(--dark-text); white-space: nowrap;
  border-radius: 6px; text-decoration: none;
  transition: color .2s, background .2s;
}
.mnl-link:hover { color: var(--primary-color); background: var(--light-bg); }
.mnl-link .drop-icon { font-size: .6rem; transition: transform .25s; }
.mnl-item:hover > .mnl-link .drop-icon { transform: rotate(180deg); }
.scrolled .mnl-link { color: rgba(255,255,255,.9); }
.scrolled .mnl-link:hover { color: #fff; background: rgba(255,255,255,.15); }

/* ----- Standard dropdown ----- */
.has-dropdown .nav-dropdown {
  position: absolute; top: calc(100% + 6px); left: 0;
  min-width: 235px; background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 28px rgba(87,13,97,.16);
  padding: .5rem;
  list-style: none; margin: 0;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all .25s ease;
  z-index: 1050;
  border-top: 3px solid var(--primary-color);
}
.has-dropdown { align-self: stretch; display: flex; align-items: center; }
.has-dropdown:hover > .nav-dropdown,
.has-dropdown.menu-open > .nav-dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dropdown li a {
  display: flex; align-items: center; gap: 6px;
  padding: .55rem .9rem;
  font-size: .875rem; color: var(--dark-text);
  border-radius: 6px; text-decoration: none; transition: all .2s;
}
.nav-dropdown li a:hover {
  background: var(--light-bg); color: var(--primary-color); padding-left: 1.1rem;
}

/* ----- Mega menu ----- */
/*
  Positioning chain:
    header.main-header  ? position: sticky  (positioned, but further up)
    nav.navbar          ? position: relative ? THIS is the containing block
    .desktop-nav        ? position: static
    .main-nav-list      ? position: static
    li.has-mega         ? position: static !important
    .mega-panel         ? position: absolute; left:0; right:0; top:100%
  Result: panel spans the full width of the navbar, drops below it.
*/
.has-mega { position: static !important; align-self: stretch; display: flex; align-items: center; }

.mega-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #fff;
  border-top: 3px solid var(--primary-color);
  box-shadow: 0 16px 48px rgba(87, 13, 97, 0.18);
  border-radius: 0 0 14px 14px;
  padding: 2rem 0;
  /* hidden state */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .28s ease, transform .28s ease, visibility .28s ease;
  z-index: 1045;
}

.has-mega:hover > .mega-panel,
.has-mega.menu-open > .mega-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/* Mega-row: pure flex, no Bootstrap row negative-margin pollution */
.mega-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  width: 100%;
}

.mega-col {
  flex: 1 1 0;
  min-width: 0;           /* prevent overflow in flex children */
  padding: 0 1.25rem;
  border-right: 1px solid var(--light-gray);
}
.mega-col:first-child { padding-left: 0; }
.mega-col:last-child  { border-right: none; padding-right: 0; }

.mega-col-head {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .7px;
  color: var(--primary-color);
  margin-bottom: .85rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--light-gray);
  display: flex;
  align-items: center;
  gap: 6px;
}

.mega-col > ul { list-style: none; padding: 0; margin: 0; }

.mega-col > ul li a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: .4rem .4rem;
  font-size: .855rem;
  color: var(--dark-text);
  border-radius: 6px;
  text-decoration: none;
  transition: color .18s, background .18s, padding-left .18s;
}
.mega-col > ul li a i.bi-chevron-right { font-size: .58rem; color: var(--primary-light); flex-shrink: 0; }
.mega-col > ul li a:hover {
  color: var(--primary-color);
  background: var(--light-bg);
  padding-left: .65rem;
}

.mega-col-accent { background: linear-gradient(160deg, #faf3fb 0%, #fff 100%); border-radius: 0 0 11px 0; }

.mega-badge {
  text-align: center;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #fff;
  border-radius: 10px;
  padding: 1rem .75rem;
  margin-top: 1.25rem;
}
.mega-badge > i   { color: rgba(255,255,255,.9); display: block; margin-bottom: .35rem; }
.mega-badge > p   { color: rgba(255,255,255,.85); margin: 0; line-height: 1.5; }

/* ----- Search button ----- */
.nav-search-btn {
  border: none; background: none;
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--dark-text); font-size: .9rem;
  cursor: pointer; transition: all .2s;
}
.nav-search-btn:hover { background: var(--light-bg); color: var(--primary-color); }
.scrolled .nav-search-btn { color: rgba(255,255,255,.9); }
.scrolled .nav-search-btn:hover { background: rgba(255,255,255,.15); color: #fff; }

/* ----- CTA button ----- */
.btn-ngec {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #fff !important;
  border: none; padding: .45rem 1.1rem; border-radius: 50px;
  font-size: .845rem; font-weight: 600;
  transition: all .3s; white-space: nowrap; text-decoration: none;
  display: inline-flex; align-items: center;
}
.btn-ngec:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(87,13,97,.4);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  color: #fff !important;
}

/* ----- Search overlay ----- */
.search-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(61,8,68,.95); backdrop-filter: blur(8px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all .3s ease;
}
.search-overlay.active { opacity: 1; visibility: visible; }
.search-overlay-close {
  position: absolute; top: 1.25rem; right: 1.5rem;
  background: rgba(255,255,255,.1); border: none;
  color: #fff; font-size: 1.35rem;
  width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .2s;
}
.search-overlay-close:hover { background: rgba(255,255,255,.2); }
.search-overlay-body { width: 100%; max-width: 620px; padding: 0 1rem; text-align: center; }
.search-overlay-hint { color: rgba(255,255,255,.6); font-size: .9rem; margin-bottom: 1rem; }
.search-overlay-form {
  display: flex; align-items: center;
  background: rgba(255,255,255,.1);
  border-radius: 50px; border: 2px solid rgba(255,255,255,.3);
  overflow: hidden; transition: border-color .2s;
}
.search-overlay-form:focus-within { border-color: rgba(255,255,255,.7); }
.search-overlay-form input {
  flex: 1; background: none; border: none; outline: none;
  padding: .9rem 1.4rem; color: #fff; font-size: 1.15rem;
  font-family: 'Poppins', sans-serif;
}
.search-overlay-form input::placeholder { color: rgba(255,255,255,.45); }
.search-overlay-form button {
  background: rgba(255,255,255,.15); border: none;
  color: #fff; padding: .9rem 1.4rem; cursor: pointer;
  font-size: 1rem; transition: background .2s;
}
.search-overlay-form button:hover { background: rgba(255,255,255,.25); }

/* ----- Mobile nav ----- */
.mob-nav-plain-item > a {
  display: flex; align-items: center; gap: 8px;
  padding: .85rem 1.25rem;
  font-weight: 500; font-size: .9rem; color: var(--dark-text);
  text-decoration: none; border-bottom: 1px solid var(--light-gray);
  transition: color .2s;
}
.mob-nav-plain-item > a:hover { color: var(--primary-color); }
.mob-nav-acc {
  font-weight: 600 !important; font-size: .9rem !important;
  background: none !important; color: var(--dark-text) !important;
  box-shadow: none !important; padding: .85rem 1.25rem !important;
}
.mob-nav-acc:not(.collapsed) { color: var(--primary-color) !important; }
.mob-nav-sub {
  display: flex; flex-direction: column; gap: 2px;
  padding: .4rem .75rem !important;
}
.mob-nav-sub a {
  display: block; padding: .5rem .75rem;
  font-size: .875rem; color: var(--muted-text);
  border-radius: 6px; text-decoration: none; transition: all .2s;
}
.mob-nav-sub a:hover { color: var(--primary-color); background: var(--light-bg); }
.mob-contact-strip { display: flex; flex-direction: column; gap: .4rem; font-size: .84rem; }
.mob-contact-strip a { color: var(--muted-text); text-decoration: none; }
.mob-contact-strip a:hover { color: var(--primary-color); }

/* ----- Footer ----- */
footer { background: #160524; color: rgba(255,255,255,.72); }
.footer-top { padding: 4rem 0 2.5rem; }
.footer-brand { display: flex; align-items: center; }
.footer-brand img { filter: brightness(0) invert(1); }
.footer-brand span { color: #fff; }
.footer-text { font-size: .875rem; line-height: 1.75; color: rgba(255,255,255,.62); }
.footer-heading {
  color: #fff; font-weight: 700; font-size: .95rem;
  margin-bottom: 1.2rem; padding-bottom: .65rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
  position: relative;
}
.footer-heading::after {
  content: ''; position: absolute; bottom: -1px; left: 0;
  width: 32px; height: 2px;
  background: linear-gradient(90deg, var(--primary-light), var(--secondary-color));
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .55rem; }
.footer-links a {
  color: rgba(255,255,255,.62); font-size: .875rem;
  text-decoration: none; transition: all .2s;
}
.footer-links a:hover { color: #fff; padding-left: 6px; }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: .95rem; font-size: .875rem;
}
.footer-contact li > i { color: var(--primary-light); margin-top: 3px; flex-shrink: 0; }
.footer-contact li span { color: rgba(255,255,255,.62); line-height: 1.65; }
.footer-contact a { color: rgba(255,255,255,.72); text-decoration: none; }
.footer-contact a:hover { color: #fff; }
.footer-bottom {
  background: rgba(0,0,0,.25); padding: 1.1rem 0; font-size: .82rem;
}
.footer-bottom p { color: rgba(255,255,255,.5); margin: 0; }
.footer-bottom a { color: rgba(255,255,255,.5); text-decoration: none; transition: color .2s; }
.footer-bottom a:hover { color: #fff; }

/* social-icons (used in footer) */
.social-icons { display: flex; gap: .65rem; flex-wrap: wrap; margin-top: .5rem; }
.social-icons a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7); font-size: .82rem;
  transition: all .3s; text-decoration: none;
}
.social-icons a:hover {
  background: var(--primary-color); color: #fff; transform: translateY(-3px);
}

/* ----- Scroll to top ----- */
.scroll-to-top {
  position: fixed; bottom: 1.75rem; right: 1.75rem;
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #fff; border: none; font-size: .95rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 999;
  opacity: 0; visibility: hidden; transform: translateY(16px);
  transition: all .3s ease;
  box-shadow: 0 4px 16px rgba(87,13,97,.4);
}
.scroll-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }

/* ----- Main content ----- */
#main-content { background: #fff; }
.scroll-to-top:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(87,13,97,.5); }

/* ----- Contact info cards (home page) ----- */
.contact-info-card {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.5rem; background: #fff;
  border-radius: var(--border-radius); box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
}
.contact-info-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.contact-info-card .icon-box {
  width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.1rem;
}
.contact-info-card h4 { font-size: 1rem; margin-bottom: .25rem; }
.contact-info-card p { margin: 0; color: var(--muted-text); font-size: .9rem; }

/* ----- Responsive navbar ----- */
@media (max-width: 1199.98px) {
  .mnl-link { padding: .5rem .55rem; font-size: .82rem; }
  .btn-ngec { padding: .4rem .85rem; font-size: .8rem; }
}
@media (max-width: 991.98px) {
  .main-header .navbar { padding: .5rem 0; }
  .mega-panel { display: none !important; }
  .has-dropdown .nav-dropdown { display: none !important; }
}
