@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Harmonious Slate & Amber Color Palette */
  --primary-color: #0f172a;    /* Slate 900 */
  --secondary-color: #f59e0b;  /* Amber 500 */
  --accent-color: #2563eb;     /* Royal Blue 600 */
  --body-bg: #f8fafc;          /* Slate 50 */
  
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  
  /* Elevating Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  --shadow-glow: 0 0 20px 0 rgba(245, 158, 11, 0.15);
  
  /* Transitions */
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Border Radii */
  --radius-sm: 0.375rem;
  --radius-md: 0.75rem;
  --radius-lg: 1.5rem;
  --radius-full: 9999px;
  
  /* Fonts */
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* Global Polish */
body {
  font-family: var(--font-body);
  background-color: var(--body-bg);
  color: var(--slate-800);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .section-title {
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--slate-900);
}

/* Dynamic Hero Slider */
.hero-slider {
  position: relative;
  width: 100%;
  height: 680px;
  background-color: var(--slate-900);
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 10;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), visibility 1s;
  display: flex;
  align-items: center;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 20;
}

.slide-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  transform: scale(1.1);
  transition: transform 7s ease-out;
  z-index: 5;
}

.hero-slide.active .slide-bg-img {
  transform: scale(1);
}

.slide-content {
  position: relative;
  z-index: 30;
  max-width: 650px;
  text-align: left;
  color: white;
  margin-left: 0;
  margin-right: auto;
}

.section-subtitle {
  font-family: var(--font-title);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 1rem;
}

.title-divider {
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color);
  border-radius: var(--radius-full);
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-full);
  transition: var(--transition-normal);
  cursor: pointer;
  border: none;
  gap: 0.5rem;
}

.btn-secondary, .default-btn, .btn-primary {
  background-color: var(--secondary-color);
  color: var(--slate-900) !important;
  box-shadow: 0 10px 15px -3px rgba(245, 158, 11, 0.3);
}

.btn-secondary:hover, .default-btn:hover, .btn-primary:hover {
  background-color: white;
  color: var(--slate-900) !important;
  transform: translateY(-3px);
  box-shadow: 0 15px 20px -5px rgba(255, 255, 255, 0.4);
}

.btn-secondary svg, .default-btn svg {
  transition: transform 0.3s ease;
}

.btn-secondary:hover svg, .default-btn:hover svg {
  transform: translateX(4px);
}

.page-heading {
  background: linear-gradient(135deg, var(--slate-900) 0%, var(--slate-800) 100%) !important;
  position: relative;
  overflow: hidden;
  padding: 200px 0 80px !important; /* Premium spacious padding to prevent any overlapping even when navbar wraps */
  margin-top: 0 !important;
}

@media (max-width: 991px) {
  .page-heading {
    padding: 130px 0 50px !important; /* Sleek and clean mobile spacing */
  }
}

.page-heading::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
  filter: blur(40px);
}

.page-title-content h2 {
  color: white !important;
  font-size: 3rem !important;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Sections py */
.section-py {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

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

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
  position: relative;
}

.section-title-wrap .title-divider {
  margin: 1.5rem auto 0;
}

/* Cards & Grid Boxes */
.services-box, .team-item, .blog-item, .vs-gallery-item, .card {
  background-color: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--slate-100);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.services-box:hover, .team-item:hover, .blog-item:hover, .vs-gallery-item:hover, .card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--slate-200);
}

.services-box .image, .team-img, .blog-pic, .vs-gallery-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background-color: var(--slate-100);
  position: relative;
}

.services-box .image img, .team-img img, .blog-pic img, .vs-gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.services-box:hover .image img, .team-item:hover .team-img img, .blog-item:hover .blog-pic img, .vs-gallery-item:hover .vs-gallery-img img {
  transform: scale(1.08);
}

.services-box .content, .team-name, .blog-name, .vs-gallery-name {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.services-box .content h3, .team-name, .blog-name, .vs-gallery-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.services-box .content h3 a, .team-name a, .blog-name a, .vs-gallery-name a {
  color: var(--slate-900);
  text-decoration: none;
  transition: var(--transition-fast);
}

.services-box .content h3 a:hover, .team-name a:hover, .blog-name a:hover, .vs-gallery-name a:hover {
  color: var(--secondary-color);
}

.do-desc, .blog-desc, .other-pro-desc {
  color: var(--slate-500);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: auto !important;
}

.read-more-btn {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--secondary-color) !important;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  transition: var(--transition-fast);
}

.read-more-btn:hover {
  color: var(--slate-900) !important;
}

.read-more-btn::after {
  content: '→';
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

.read-more-btn:hover::after {
  transform: translateX(4px);
}

/* About Us Section Home Override */
.about-area {
  position: relative;
  background-color: white;
}

.about-content h2 {
  font-size: 1rem;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.about-content span {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--slate-900);
  display: block;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
}

.about-content p {
  color: var(--slate-600);
  line-height: 1.7;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.about-img {
  position: relative;
}

.about-img img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 8px solid white;
}

/* USP counters */
.C-usp-item, .T-usp-item {
  background-color: var(--slate-50);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  border: none;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.C-usp-item:hover, .T-usp-item:hover {
  background-color: white;
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.C-usp-flag {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--secondary-color);
  font-family: var(--font-title);
  margin-bottom: 0.5rem;
}

.C-usp-counter {
  letter-spacing: -0.03em;
}

/* Testimonials */
.feedback-area {
  background-color: var(--slate-50);
}

.single-feedback-item {
  background-color: white;
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--slate-100);
  position: relative;
  margin-bottom: 0 !important;
  transition: var(--transition-normal);
}

.single-feedback-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.feedback-desc p {
  color: var(--slate-600);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 2rem;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.client-info img {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 3px solid var(--slate-100);
}

.client-info h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 0;
}

.vs-testi-video {
  position: absolute;
  bottom: 2rem;
  right: 2.5rem;
  background: white;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  transition: var(--transition-fast);
}

.vs-testi-video:hover {
  transform: scale(1.1);
  color: #ef4444;
}

/* FAQ Accordion Styling */
.accordion {
  background-color: white;
  color: var(--slate-800);
  border-radius: var(--radius-md);
  border: 1px solid var(--slate-200);
  padding: 1.25rem 2rem;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  transition: var(--transition-fast);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion:hover {
  border-color: var(--secondary-color);
  background-color: var(--slate-50);
}

.accordion::after {
  content: '↓';
  font-size: 1.2rem;
  color: var(--slate-400);
  transition: transform 0.3s ease;
}

.accordion.vs_active {
  border-color: var(--secondary-color);
  background-color: var(--slate-50);
  color: var(--slate-900);
}

.accordion.vs_active::after {
  transform: rotate(180deg);
  color: var(--secondary-color);
}

.panel {
  border-left: 1px solid var(--slate-200);
  border-right: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
  border-bottom-left-radius: var(--radius-md);
  border-bottom-right-radius: var(--radius-md);
  margin-top: -0.5rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
}

/* Modals */
.modal-content.quick-view-modal {
  border-radius: var(--radius-lg);
  border: none;
  box-shadow: var(--shadow-2xl);
  overflow: hidden;
}

.modal-body {
  padding: 3rem !important;
}

.form-control {
  border-radius: var(--radius-md) !important;
  border: 1px solid var(--slate-200) !important;
  padding: 0.875rem 1.25rem !important;
  font-family: var(--font-body);
  font-size: 0.95rem !important;
  height: auto !important;
  transition: var(--transition-fast) !important;
}

.form-control:focus {
  border-color: var(--secondary-color) !important;
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.15) !important;
}

/* Social icons sharing */
.socialShare {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.socialShare a {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-full);
  background-color: var(--slate-100);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  color: var(--slate-600);
  text-decoration: none;
}

.socialShare a:hover {
  background-color: var(--secondary-color);
  color: var(--slate-900);
  transform: translateY(-3px);
}

/* Font override utilities */
.vs-bigsize1 { font-family: var(--font-title); font-size: 2.5rem; font-weight: 800; }
.vs-bigsize2 { font-family: var(--font-title); font-size: 1.25rem; font-weight: 700; }
.vs-bigsize3 { font-family: var(--font-title); font-size: 1.1rem; font-weight: 600; }
.vs-smallsize1 { font-family: var(--font-body); font-size: 2.25rem; font-weight: 300; }
.vs-smallsize2 { font-family: var(--font-body); font-size: 1.15rem; font-weight: 400; }
.vs-smallsize3 { font-family: var(--font-body); font-size: 0.95rem; font-weight: 400; color: var(--slate-500); }

/* Responsive styles */
@media (min-width: 992px) {
  .T-usp-container, .C-usp-container {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 2rem !important;
  }
  .T-usp-row, .C-usp-row {
    display: contents !important;
  }
  .T-usp-item-new, .C-usp-item-new {
    display: block !important;
    float: none !important;
    background-color: transparent !important;
    padding: 0 !important;
    border: none !important;
  }
}

/* News Card Styling */
.single-blog-post {
  background-color: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--slate-100);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  overflow: hidden;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
}

.single-blog-post:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.single-blog-post .post-content {
  padding: 2.25rem;
}

.single-blog-post .post-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.single-blog-post .post-content h3 a {
  color: var(--slate-900);
  text-decoration: none;
  transition: var(--transition-fast);
}

.single-blog-post .post-content h3 a:hover {
  color: var(--secondary-color);
}

.single-blog-post .post-content p {
  color: var(--slate-600);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 72px !important;
}

/* Greeting slide styling */
.greeting-slide .item img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  max-width: 100%;
  height: auto;
  border: 4px solid white;
}

/* Team Styling */
.team-item {
  border: 1px solid var(--slate-100);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  transition: var(--transition-normal);
  background-color: white;
}

.team-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.team-img {
  aspect-ratio: 1/1;
  overflow: hidden;
  margin-bottom: 1.5rem;
  background-color: var(--slate-50);
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.team-item:hover .team-img img {
  transform: scale(1.08);
}

.team-name {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 0.25rem;
}

.team-designation {
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

.team-social-icon ul {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.team-social-icon ul li a {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-full);
  background-color: var(--slate-100);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.team-social-icon ul li a:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
}

.team-social-img {
  width: 1.25rem !important;
  margin-right: 0 !important;
}

/* Gallery subpage & list overrides */
.vs-gallery-item {
  text-align: center;
  background-color: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--slate-100);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition-normal);
}

.vs-gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.vs-gallery-img-pic {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: var(--transition-slow);
}

.vs-gallery-item:hover .vs-gallery-img-pic {
  transform: scale(1.08);
}

.vs-gallery-name {
  padding: 1.5rem;
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--slate-900);
}

/* Other Products row overrides */
.other-pro-row {
  background-color: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--slate-100);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  overflow: hidden;
  margin-bottom: 2rem;
}

.other-pro-row:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.other-pro-pic {
  aspect-ratio: 1/1;
  overflow: hidden;
}

.other-pro-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.other-pro-row:hover .other-pro-pic img {
  transform: scale(1.08);
}

.other-pro-info h3 {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--slate-900);
}

/* Footer modern layout */
.footer-area {
  background-color: var(--slate-900);
  color: white;
  padding-top: 5rem;
  padding-bottom: 3rem;
}

.footer-widget h3 {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: white;
  border-bottom: 2px solid var(--secondary-color) !important;
  padding-bottom: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-widget ul {
  padding-left: 0;
  list-style: none;
}

.footer-widget ul li {
  padding: 0.5rem 0;
}

.footer-widget ul li a {
  color: var(--slate-400);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.footer-widget ul li a:hover {
  color: var(--secondary-color);
  padding-left: 4px;
}

.footer-widget .social-icon {
  margin-bottom: 2rem;
}

.footer_bottom {
  border-top: 1px solid var(--slate-800);
  background-color: #0b0f19 !important;
}

/* Header Area Modernized */
.header-area {
  background-color: white;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 100;
}

.top-header {
  background-color: var(--slate-900);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--slate-800);
}

.top-header-logo img {
  height: 50px !important;
}

.top-header-right-side ul {
  display: flex;
  justify-content: flex-end;
  gap: 2.5rem;
  margin-bottom: 0;
  list-style: none;
  padding-left: 0;
}

.top-header-right-side ul li {
  position: relative;
  padding-left: 2.5rem !important;
  color: var(--slate-300);
  font-size: 0.85rem;
}

.top-header-right-side ul li .icon {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  border-radius: var(--radius-full);
  background-color: var(--slate-800);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color) !important;
  font-size: 0.9rem;
}

.top-header-right-side ul li span {
  display: block;
  font-weight: 500;
  color: var(--slate-400);
}

.top-header-right-side ul li a {
  color: white !important;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-fast);
}

.top-header-right-side ul li a:hover {
  color: var(--secondary-color) !important;
}

.navbar-area {
  padding: 0.5rem 0;
  background-color: white;
}

.pearo-nav {
  background-color: white;
}

.pearo-nav .navbar .navbar-nav ul li a {
  font-family: var(--font-title);
  color: var(--slate-700) !important;
  font-weight: 600;
  padding: 1.5rem 1rem !important;
  font-size: 0.95rem;
  text-transform: capitalize !important;
  transition: var(--transition-fast);
}

.pearo-nav .navbar .navbar-nav ul li a:hover {
  color: var(--secondary-color) !important;
}

/* Vertical Tabs Styling */
.nav-stacked {
  border: none;
  background-color: white;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--slate-100);
}
.nav-stacked li {
  margin-bottom: 0.5rem;
  list-style: none !important;
}
.nav-stacked li a {
  display: flex !important;
  align-items: center;
  padding: 1rem 1.25rem !important;
  border-radius: var(--radius-md) !important;
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--slate-700) !important;
  border: 1px solid transparent !important;
  transition: var(--transition-fast) !important;
  text-decoration: none !important;
}
.nav-stacked li a img {
  border-radius: var(--radius-sm);
  object-fit: cover;
  transition: var(--transition-fast);
}
.nav-stacked li.active a, .nav-stacked li a:hover {
  background-color: var(--slate-50) !important;
  border-color: var(--slate-100) !important;
  color: var(--secondary-color) !important;
}
.nav-stacked li.active a img, .nav-stacked li a:hover img {
  transform: scale(1.08);
}

/* Global Subpage Headers styling */
.page-title-area {
  background-color: var(--slate-900) !important;
  padding: 80px 0 !important;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-title-area::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(245, 158, 11, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.page-title-content h2 {
  font-family: var(--font-title) !important;
  font-size: 2.75rem !important;
  font-weight: 800 !important;
  color: white !important;
  margin-bottom: 0.5rem !important;
  letter-spacing: -0.025em !important;
  text-transform: uppercase !important;
}

.page-title-content {
  position: relative;
  z-index: 10;
}

.page-title-content::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background-color: var(--secondary-color);
  margin: 1rem auto 0 auto;
  border-radius: var(--radius-full);
}

/* Layout & Modern Styling Utilities */
.grid {
  display: grid;
}
.flex {
  display: flex;
}
.flex-col {
  flex-direction: column;
}
.items-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.hover-scale {
  transition: var(--transition-normal);
}
.hover-scale:hover {
  transform: scale(1.05);
}
.hover-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-fast);
}
.hover-link:hover svg {
  transform: translateX(4px);
}
.card-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--secondary-color);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.card:hover .card-accent {
  opacity: 1 !important;
}
.hover-bg-primary:hover {
  background-color: var(--accent-color) !important;
}
.hover-red:hover {
  color: #ef4444 !important;
}
.hover-underline:hover {
  text-decoration: underline;
}
.card-small {
  max-width: 220px;
  margin: 0 auto;
}
.card-small img {
  height: 130px !important;
}
.card-light {
  background-color: var(--slate-50) !important;
  color: var(--slate-900) !important;
  border: 1px solid var(--slate-200) !important;
}
.card-light h3, 
.card-light p, 
.card-light label {
  color: var(--slate-900) !important;
}
.card-light input, 
.card-light textarea {
  background-color: white !important;
  color: var(--slate-900) !important;
  border: 1px solid var(--slate-300) !important;
}
.card-light input:focus, 
.card-light textarea:focus {
  border-color: var(--secondary-color) !important;
}