/*
Theme Name: AgenticSwift Scratch Theme
Theme URI:  https://agenticswift.ai/
Author: Saikumar
Author URI: https://agenticswift.ai/
Description: A lightweight scratch theme with Products and Services CPTs, theme options for logo upload, and a hero with overlap menu layout.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: agenticswift-scratch
*/

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Source+Serif+Pro:wght@400;600;700&display=swap');

/* CSS Custom Properties for Typography */
:root {
  /* Font Families */
  --font-primary: "Roboto", sans-serif;
  --font-heading: 'Source Serif Pro', Georgia, serif;
  
  /* Font Weights */
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;
  
  /* Font Sizes */
  --fs-xs: 0.75rem;    /* 12px */
  --fs-sm: 0.875rem;   /* 14px */
  --fs-base: 1rem;     /* 16px */
  --fs-lg: 1.125rem;   /* 18px */
  --fs-xl: 1.25rem;    /* 20px */
  --fs-2xl: 1.5rem;    /* 24px */
  --fs-3xl: 1.875rem;  /* 30px */
  --fs-4xl: 2.25rem;   /* 36px */
  --fs-5xl: 3rem;      /* 48px */
  --fs-6xl: 3.75rem;   /* 60px */
  
  /* Line Heights */
  --lh-tight: 1.25;
  --lh-normal: 1.5;
  --lh-relaxed: 1.625;
  --lh-loose: 2;
  
  /* Light Theme Colors */
  --color-primary: #0f1724;
  --color-secondary: #475569;
  --color-accent: #3b82f6;
  --color-gradient:linear-gradient(90deg, #189BFE 0%, #9924FA 51.61%, #6E1DE4 100%);

  --color-text: #1e293b;
  --color-text-light: #64748b;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-gray-50: #f8fafc;
  --color-gray-100: #f1f5f9;
  --color-gray-200: #e2e8f0;
  --color-gray-800: #1e293b;
  --color-gray-900: #0f172a;
  
  /* Background Colors */
  --bg-primary: var(--color-white);
  --bg-secondary: var(--color-gray-50);
  --bg-card: var(--color-white);
  --bg-footer: var(--color-primary);
  
  /* Border Colors */
  --border-color: var(--color-gray-200);
  --border-color-light: var(--color-gray-100);
}

/* Dark Theme */
[data-theme="dark"] {
  --color-primary: #f1f5f9;
  --color-secondary: #94a3b8;
  --color-accent: #60a5fa;
  --color-text: #f8fafc;
  --color-text-light: #cbd5e1;
  --color-white: #f1f5f9;
  --color-black: #ffffff;
  --color-gray-50: #1e293b;
  --color-gray-100: #334155;
  --color-gray-200: #475569;
  --color-gray-800: #f1f5f9;
  --color-gray-900: #ffffff;
  
  /* Dark Background Colors */
  --bg-primary: #0f172a;
  --bg-secondary: #1e293b;
  --bg-card: #1e293b;
  --bg-footer: #020617;
  
  /* Dark Border Colors */
  --border-color: #334155;
  --border-color-light: #475569;
}

/* Reset & Typography Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  height: 100%;
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
  font-size: var(--fs-base);
  line-height: var(--lh-normal);
  color: var(--color-text);
  background-color: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color 0.3s ease, color 0.3s ease;
  overflow-x: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Typography Scale */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  color: var(--color-primary);
  margin-bottom: 0.5em;
}

h1 { font-size: var(--fs-5xl); font-weight: var(--fw-bold); }
h2 { font-size: var(--fs-4xl); font-weight: var(--fw-semibold); }
h3 { font-size: var(--fs-3xl); font-weight: var(--fw-semibold); }
h4 { font-size: var(--fs-2xl); font-weight: var(--fw-medium); }
h5 { font-size: var(--fs-xl); font-weight: var(--fw-medium); }
h6 { font-size: var(--fs-lg); font-weight: var(--fw-medium); }

p {
  margin-bottom: 1em;
  line-height: var(--lh-relaxed);
}

.lead {
  font-size: var(--fs-lg);
  font-weight: var(--fw-light);
  line-height: var(--lh-relaxed);
  color: var(--color-text-light);
}

.small {
  font-size: var(--fs-sm);
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Link Styles */
a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  text-decoration: underline;
}
/* Header & Navigation */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  padding: 20px 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.scrolled {
  position: fixed;
  background: var(--bg-primary);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.site-header .header-inner {
  background: rgba(255, 255, 255);
  border: 2px solid var(--color-gray-200);
  border-radius: 100px;
  margin: 15px 0px 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  padding: 10px 15px;
}
.site-header.scrolled .header-inner {
  margin: 0;
  box-shadow: 0px 0px 0px #fff;
  border: 0px;
  padding: 8px 10px;

}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-branding {
  display: flex;
  align-items: center;
  z-index: 1001;
}

.site-logo img {
  max-height: 48px;
  display: block;
  transition: all 0.3s ease;
}

.site-header.scrolled .site-logo img {
  max-height: 40px;
}

/* Main Navigation */
.main-navigation {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 8px;
}

.nav-menu li {
  position: relative;
}

.nav-menu li a {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: var(--fw-medium);
  font-size: var(--fs-base);
  color: var(--color-text);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.nav-menu li a:hover,
.nav-menu li:hover > a,
.nav-menu li a:focus-visible {
  color: var(--color-accent);
}

/* Dropdown Indicators */
.dropdown-indicator {
  margin-left: 6px;
  display: inline-flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.has-dropdown:hover > a .dropdown-indicator {
  transform: rotate(180deg);
}

/* Desktop Dropdown Menus */
@media (min-width: 769px) {
  /* First Level Dropdown */
  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-color-light);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    margin-top: 8px;
    min-width: 220px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    list-style: none;
  }

  .has-dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .dropdown-menu li {
    position: relative;
    width: 100%;
  }

  .dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: var(--color-text);
    font-weight: var(--fw-regular);
    white-space: nowrap;
  }

  .dropdown-menu li a:hover {
    background: var(--color-gray-100);
    color: var(--color-accent);
  }

  /* Second Level Dropdown */
  .dropdown-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-color-light);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    margin-top: 8px;
    min-width: 200px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    list-style: none;
  }

  .dropdown-menu .has-dropdown:hover > .dropdown-submenu {
    opacity: 1;
    visibility: hidden;
    transform: translateY(0);
  }

  .dropdown-submenu li a {
    display: block;
    padding: 10px 18px;
    color: var(--color-text);
    font-weight: var(--fw-regular);
    white-space: nowrap;
  }

  .dropdown-submenu li a:hover {
    background: var(--color-gray-100);
    color: var(--color-accent);
  }
}

/* Desktop Mega Menu Styles */
@media (min-width: 769px) {
  .mega-menu-dropdown {
    min-width: 600px;
    max-width: 800px;
    padding: 20px;
    white-space: normal;
  }
  
  .mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .mega-menu-item {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .mega-menu-item a {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    white-space: normal;
  }
  
  .mega-menu-item a:hover {
    background: var(--color-gray-100);
    transform: translateX(4px);
  }
  
  .mega-menu-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .mega-menu-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
  }
  
  .mega-menu-title {
    font-weight: var(--fw-semibold);
    color: var(--color-text);
    font-size: 0.9375rem;
    line-height: 1.3;
  }
  
  .mega-menu-desc {
    font-size: 0.8125rem;
    color: var(--color-text-secondary);
    line-height: 1.4;
    opacity: 0.8;
  }
  
  .mega-menu-item a:hover .mega-menu-title {
    color: var(--color-accent);
  }
  
  .mega-menu-item a:hover .mega-menu-desc {
    opacity: 1;
  }
}
.nav-menu > li > a::after {
  content: '';
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 6px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-menu > li > a:hover::after,
.nav-menu > li:hover > a::after,
.nav-menu > li > a:focus-visible::after,
.nav-menu > li.current-menu-item > a::after,
.nav-menu > li.current_page_item > a::after,
.nav-menu > li.current-menu-ancestor > a::after {
  transform: scaleX(1);
}

.nav-menu > li.current-menu-item > a,
.nav-menu > li.current_page_item > a,
.nav-menu > li.current-menu-ancestor > a {
  color: var(--color-accent);
  font-weight: var(--fw-semibold);
}

.nav-menu > li:not(:last-child) > a:hover,
.nav-menu > li:not(:last-child):hover > a,
.nav-menu > li:not(:last-child) > a:focus-visible {
  background: transparent;
  transform: none;
}

.nav-menu > li:last-child > a {
  border-radius: 999px;
  background: var(--color-gradient);
  color: var(--color-white);
  box-shadow: 0 12px 28px rgba(24, 155, 254, 0.28);
  padding: 12px 26px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.nav-menu > li:last-child > a::after {
  display: none;
}

.nav-menu > li:last-child > a:hover,
.nav-menu > li:last-child:hover > a,
.nav-menu > li:last-child > a:focus-visible {
  background: linear-gradient(135deg, rgba(24, 155, 254, 1), rgba(153, 36, 250, 1));
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(24, 155, 254, 0.32);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: transparent;
  border: none;
  padding: 8px;
  cursor: pointer;
  z-index: 1002;
}

.hamburger {
  width: 25px;
  height: 3px;
  background: var(--color-text);
  margin: 3px 0;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger:nth-child(1) {
  transform: rotate(-45deg) translate(-6px, 6px);
}

.mobile-menu-toggle.active .hamburger:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger:nth-child(3) {
  transform: rotate(45deg) translate(-6px, -6px);
}

/* Hero Section */
.hero-slider {
  position: relative;
  min-height: 100vh;
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-primary) 0%, #1e40af 100%);
  overflow: hidden;
}

.hero-slider .slider-container {
  position: relative;
  min-height: 100vh;
}

.hero-slider .slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary) 0%, #1e40af 100%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  z-index: 0;
  overflow: hidden;
}

.hero-slider .slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.4) 100%);
  pointer-events: none;
  z-index: 2;
}

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

.hero-slider .slide-background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.85);
}

.hero-slider .hero-inner {
  position: relative;
  z-index: 3;
  max-width: 860px;
  margin: 0 auto;
  padding: 120px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.hero-slider .hero-copy {
  width: 100%;
}

.hero-slider .hero-content {
  font-size: var(--fs-2xl);
  line-height: var(--lh-relaxed);
  opacity: 0.95;
  max-width: 680px;
  margin: 0 auto;
}

.hero-slider .hero-cta {
  justify-content: center;
}

.hero-slider .hero-copy .kicker {
  margin-left: auto;
  margin-right: auto;
}

.hero-slider .hero-title {
  max-width: 450px;
  line-height: 1;
  text-transform: uppercase;
  margin-left: auto;
  margin-right: auto;
}

.hero-slider .slider-pagination {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 5;
}

.hero-slider .pagination-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.6);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.hero-slider .pagination-dot.active,
.hero-slider .pagination-dot:hover {
  background: var(--color-white);
  border-color: var(--color-white);
}

.hero-slider .slider-controls {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  pointer-events: none;
  z-index: 5;
}

.hero-slider .slider-controls button {
  pointer-events: auto;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
  background: rgba(15,23,42,0.35);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.hero-slider .slider-controls button:hover {
  background: rgba(15,23,42,0.65);
  border-color: rgba(255,255,255,0.9);
}

.hero-slider .slider-controls svg {
  width: 20px;
  height: 20px;
}

@media (prefers-reduced-motion: reduce) {
  .hero-slider .slide {
    transition: none;
  }
  .hero-slider .pagination-dot,
  .hero-slider .slider-controls button {
    transition: none;
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-primary) 0%, #1e40af 100%);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

/* Prevent body scroll when mobile menu is open */
body.menu-open {
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.4) 100%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  padding: 80px 24px;
  text-align: left;
  display: flex;
  gap: 40px;
  align-items: center;
}

.hero-copy {
  flex: 1;
}


.hero-title {
  font-family: var(--font-primary);
  font-size: var(--fs-5xl);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  margin-bottom: 24px;
  color: var(--color-white);
}

.hero-sub {
  font-size: var(--fs-lg);
  font-weight: var(--fw-light);
  opacity: 0.95;
  margin-bottom: 32px;
  max-width: 600px;
  line-height: var(--lh-relaxed);
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 8px;
  background: var(--color-gradient);
  color: var(--color-white);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-base);
  text-decoration: none;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  min-height: 48px;
}

.btn:hover {
  background: #2563eb;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.btn.btn-secondary {
  background: rgba(255,255,255,0.15);
  color: var(--color-white);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
}

.btn.btn-secondary:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.3);
}

/* Hero Media */
.hero-media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-media-content {
  max-width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* Inner Page Shell */
body.has-inner-page {
  --header-offset: 120px;
  scroll-padding-top: var(--header-offset);
}

/*body.has-inner-page .site-main {
  padding-top: var(--header-offset);
}*/

@media (max-width: 1024px) {
  body.has-inner-page {
    --header-offset: 108px;
  }
}

@media (max-width: 640px) {
  body.has-inner-page {
    --header-offset: 92px;
  }
}

.site-main.page-shell {
  background: var(--bg-primary);
  transition: background-color 0.3s ease;
}

/* Overlap Hero Templates */
.service-hero,
.page-hero,
.error-hero {
  position: relative;
  margin-top: calc(-1 * var(--header-offset));
  padding: calc(150px + var(--header-offset)) 0 110px;
  color: var(--color-white);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.service-hero {
  background-image: linear-gradient(135deg, rgba(15, 23, 42, 0.78) 0%, rgba(30, 64, 175, 0.78) 100%), var(--overlap-hero-image, url('assets/hero-default.svg'));
}

.page-hero {
  padding: calc(140px + var(--header-offset)) 0 90px;
  background-image: linear-gradient(135deg, rgba(15, 23, 42, 0.84) 0%, rgba(59, 130, 246, 0.68) 100%), var(--overlap-hero-image, url('assets/hero-default.svg'));
}

.single-post-hero {
  position: relative;
  margin-top: calc(-1 * var(--header-offset));
  padding: calc(150px + var(--header-offset)) 0 110px;
  color: var(--color-white);
  background-image: linear-gradient(135deg, rgba(15, 23, 42, 0.86) 0%, rgba(76, 29, 149, 0.72) 100%), var(--overlap-hero-image, url('assets/hero-default.svg'));
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.error-hero {
  background-image: linear-gradient(135deg, rgba(220, 38, 38, 0.82) 0%, rgba(59, 130, 246, 0.78) 100%), var(--overlap-hero-image, url('assets/hero-default.svg'));
}

.service-hero-backdrop,
.page-hero-backdrop,
.error-hero-backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.service-hero-backdrop {
  background: radial-gradient(62% 62% at 50% 50%, rgba(59, 130, 246, 0.15) 0%, rgba(15, 23, 42, 0.65) 100%);
  mix-blend-mode: screen;
}

.page-hero-backdrop {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.1) 0%, rgba(59, 130, 246, 0.25) 100%);
}

.error-hero-backdrop {
  background: linear-gradient(145deg, rgba(248, 113, 113, 0.25) 0%, rgba(59, 130, 246, 0.35) 100%);
  mix-blend-mode: screen;
}

.single-post-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}

.service-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}
.single-post-meta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.single-post-kicker {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.72);
}

.single-post-title {
 
  font-size: clamp(2.5rem, 4vw, 3.4rem);
  font-weight: var(--fw-bold);
  line-height: 1.05;
  color: var(--color-white);
}

.single-post-submeta {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: rgba(255, 255, 255, 0.78);
}


.service-hero-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-hero-icon {
  width: 92px;
  height: 92px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.35), rgba(99, 102, 241, 0.45));
  display: grid;
  place-items: center;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.35);
  overflow: hidden;
}

.service-hero-icon-symbol {
  font-size: 2.4rem;
  font-weight: var(--fw-semibold);
  color: var(--color-white);
  letter-spacing: 0.1em;
}

.service-hero-icon-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.service-hero-content {
 width:100%;
 text-align:center;
}

.service-hero-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: var(--fw-bold);
  color: var(--color-white);
  line-height: 1.05;
}

.service-hero-subtitle {
  font-size: var(--fs-lg);
  color: rgba(255, 255, 255, 0.85);
  line-height: var(--lh-relaxed);
  max-width: 70%;
	margin:auto;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-hero-content {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}

.page-hero-kicker {
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.page-hero-title {
  font-size: clamp(2.4rem, 4.2vw, 3.2rem);
  font-weight: var(--fw-bold);
  color: var(--color-white);
  line-height: 1.08;
}

.page-hero-subtitle {
  font-size: var(--fs-lg);
  color: rgba(255, 255, 255, 0.82);
  line-height: var(--lh-relaxed);
  max-width: 620px;
}

.page-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 14px;
}

.page-hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 999px;
  background: var(--color-gradient);
  color: var(--color-white);
  font-weight: var(--fw-semibold);
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(59, 130, 246, 0.32);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-hero-button:hover,
.page-hero-button:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px rgba(59, 130, 246, 0.42);
}

.error-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: center;
  align-items: center;
  max-width: 760px;
  margin: 0 auto;
}

.error-hero-kicker {
  font-size: var(--fs-xs);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.error-hero-title {
  font-size: clamp(2.6rem, 4.6vw, 3.8rem);
  font-weight: var(--fw-bold);
  line-height: 1.06;
  color: var(--color-white);
}

.error-hero-subtitle {
  font-size: var(--fs-lg);
  color: rgba(255, 255, 255, 0.85);
  line-height: var(--lh-relaxed);
}

.error-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.service-content-section {
  position: relative;
  padding: 80px 0 100px;
  background: var(--bg-primary);
}

.single-post-content-section {
  position: relative;
  padding: 90px 0 120px;
  background: var(--bg-primary);
}

.single-post-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 0.9fr);
  gap: 60px;
  align-items: start;
}

.single-post-content {
  background: var(--bg-card);
  border: 1px solid var(--border-color-light);
  border-radius: 26px;
  padding: 48px;
  box-shadow: 0 26px 64px rgba(15, 23, 42, 0.08);
}

.single-post-content > *:first-child {
  margin-top: 0;
}

.single-post-content > *:last-child {
  margin-bottom: 0;
}

.single-post-footer {
  margin-top: 60px;
  padding-top: 36px;
  border-top: 1px solid var(--border-color-light);
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
  align-items: center;
  justify-content: space-between;
}

.single-post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: var(--fs-sm);
  color: var(--color-secondary);
}

.single-post-tags span {
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
}

.single-post-tags a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.08);
  color: var(--color-accent);
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease;
}

.single-post-tags a:hover,
.single-post-tags a:focus-visible {
  background: rgba(59, 130, 246, 0.16);
  transform: translateY(-1px);
}

.single-post-navigation {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 14px;
}

.single-post-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 14px;
  border: 1px solid var(--border-color-light);
  background: var(--bg-secondary);
  color: var(--color-primary);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  text-decoration: none;
  transition: all 0.3s ease;
}

.single-post-nav-link:hover,
.single-post-nav-link:focus-visible {
  background: var(--color-gradient);
  color: var(--color-white);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(24, 155, 254, 0.25);
}

.single-post-sidebar {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.single-post-author-card,
.single-post-topic-card,
.single-post-related-card,
.single-post-quick-actions {
  background: var(--bg-card);
  border: 1px solid var(--border-color-light);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 22px 52px rgba(15, 23, 42, 0.08);
}

.single-post-sidebar-title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
  margin-bottom: 18px;
}

.single-post-category-list,
.single-post-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.single-post-category-link,
.single-post-tag-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.1);
  color: var(--color-accent);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease;
}

.single-post-category-link:hover,
.single-post-category-link:focus-visible,
.single-post-tag-link:hover,
.single-post-tag-link:focus-visible {
  background: rgba(59, 130, 246, 0.18);
  transform: translateY(-1px);
}

.single-post-tags-empty {
  margin: 0;
  color: var(--color-secondary);
  font-size: var(--fs-sm);
}

.single-post-related-list {
  display: grid;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.single-post-related-item {
  margin: 0;
}

.single-post-related-link {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  align-items: center;
  text-decoration: none;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid var(--border-color-light);
  background: var(--bg-secondary);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.single-post-related-link:hover,
.single-post-related-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.12);
}

.single-post-related-thumb {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(24, 155, 254, 0.16), rgba(153, 36, 250, 0.22));
}

.single-post-related-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-post-related-fallback {
  font-size: 1.8rem;
  font-weight: var(--fw-semibold);
  color: var(--color-white);
}

.single-post-related-meta {
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-light);
}

.single-post-related-title {
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
  line-height: 1.4;
}

.single-post-author-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.single-post-author-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}

.single-post-author-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.single-post-author-name {
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
}

.single-post-author-bio {
  font-size: var(--fs-sm);
  color: var(--color-secondary);
  line-height: var(--lh-relaxed);
}

.single-post-quick-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.single-post-share-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.14), rgba(99, 102, 241, 0.22));
  color: var(--color-primary);
  font-weight: var(--fw-semibold);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.single-post-share-button:hover,
.single-post-share-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(59, 130, 246, 0.25);
}

.single-post-comments {
  margin-top: 70px;
  background: var(--bg-card);
  border: 1px solid var(--border-color-light);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 22px 52px rgba(15, 23, 42, 0.08);
}

.single-post-comments > *:first-child {
  margin-top: 0;
}

.single-post-comments > *:last-child {
  margin-bottom: 0;
}

.comments-area {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.comments-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.comments-title {

  font-size: clamp(1.6rem, 2.6vw, 2rem);
  margin: 0;
  color: var(--color-primary);
}

.comments-rss {
  font-size: var(--fs-sm);
  color: var(--color-accent);
  text-decoration: none;
}

.comments-rss:hover,
.comments-rss:focus-visible {
  text-decoration: underline;
}

.comments-jump-link {
  align-self: flex-start;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--color-secondary);
  text-decoration: none;
  display: inline-flex;
  gap: 6px;
  align-items: center;
  margin-bottom: 4px;
}

.comments-jump-link::after {
  content: '↓';
  font-size: 0.9em;
}

.comments-jump-link:hover,
.comments-jump-link:focus-visible {
  color: var(--color-accent);
  text-decoration: underline;
}

.comment-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 24px;
}

.comment-item {
  margin: 0;
}

.comment-item .children {
  list-style: none;
  margin: 18px 0 0 48px;
  padding: 0;
  display: grid;
  gap: 18px;
}

.comment-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  border: 1px solid var(--border-color-light);
  border-radius: 18px;
  padding: 20px 24px;
  background: var(--bg-card);
}

.comment-meta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.comment-avatar {
  flex-shrink: 0;
}

.comment-meta-inner {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.comment-author {
  margin: 0;
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
}

.comment-time {
  font-size: var(--fs-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-light);
}

.comment-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(153, 36, 250, 0.14);
  color: #6e1de4;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-left: auto;
}

.comment-content {
  font-size: var(--fs-sm);
  color: var(--color-text);
  line-height: var(--lh-relaxed);
}

.comment-awaiting-moderation {
  margin-top: 12px;
  font-size: var(--fs-xs);
  color: var(--color-secondary);
}

.comment-actions {
  display: flex;
  gap: 18px;
  font-size: var(--fs-sm);
}

.comment-reply,
.comment-actions a {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: var(--fw-medium);
}

.comment-reply {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.comment-reply a {
  color: inherit;
}

.comment-reply:hover,
.comment-reply:focus-visible,
.comment-actions a:hover,
.comment-actions a:focus-visible {
  text-decoration: underline;
}

.comment-hint {
  margin: 0;
  font-size: var(--fs-xs);
  color: var(--color-text-light);
}

.comment-form-grid {
  display: grid;
  gap: 18px;
}

.comment-form-grid p {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.comment-form-grid label {
  font-size: var(--fs-sm);
  color: var(--color-secondary);
  font-weight: var(--fw-medium);
}

.comment-form-grid input,
.comment-form-grid textarea {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--border-color-light);
  background: var(--bg-primary);
  color: var(--color-text);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.comment-form-grid input:focus,
.comment-form-grid textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.comment-form-comment textarea {
  min-height: 160px;
  resize: vertical;
}

.comment-submit-wrapper {
  display: flex;
  justify-content: flex-start;
}

.comment-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 999px;
  border: none;
  background: var(--color-gradient);
  color: var(--color-white);
  font-weight: var(--fw-semibold);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.comment-submit-btn:hover,
.comment-submit-btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(24, 155, 254, 0.3);
}

.no-comments-note {
  margin: 0;
  font-size: var(--fs-sm);
  color: var(--color-secondary);
}

@media (max-width: 768px) {
  .single-post-related-link {
    grid-template-columns: 56px 1fr;
  }
  .services-shortcode-title{
    text-align: left;
  }
  .container{
    padding:0 18px;
  }
  h2{
    font-size:1.5rem;
  }
  h3{
    font-size:1.2rem;
  }
  h4{
    font-size:1rem;
  }

  .comment-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .comment-item .children {
    margin-left: 24px;
  }

  .comment-badge {
    margin-left: 0;
  }

  .comment-submit-wrapper {
    justify-content: stretch;
  }

  .comment-submit-btn {
    width: 100%;
  }
}

.service-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.3fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}

.service-content {
  background: var(--bg-card);
  border: 1px solid var(--border-color-light);
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.service-content > *:first-child {
  margin-top: 0;
}

.service-content > *:last-child {
  margin-bottom: 0;
}

.service-sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.page-content-section {
  position: relative;
  padding: 90px 0 110px;
  background: var(--bg-primary);
}

.page-content {
  background: var(--bg-card);
  border: 1px solid var(--border-color-light);
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.page-comments {
  margin-top: 60px;
  background: var(--bg-card);
  border: 1px solid var(--border-color-light);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

.page-comments > *:first-child {
  margin-top: 0;
}

.page-comments > *:last-child {
  margin-bottom: 0;
}

.error-content-section {
  padding: 90px 0 120px;
  background: var(--bg-primary);
}

.error-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  align-items: start;
}

.error-search-card,
.error-links-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color-light);
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 20px 46px rgba(15, 23, 42, 0.08);
}

.error-search-card h2,
.error-links-card h3 {
  margin-bottom: 16px;
}

.error-search-card .search-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.error-search-card .search-field {
  flex: 1 1 220px;
  min-width: 0;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--border-color-light);
  background: var(--bg-primary);
  color: var(--color-text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.error-search-card .search-field:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.error-search-card .search-submit {
  flex: 0 0 auto;
  padding: 14px 26px;
  border-radius: 12px;
  border: none;
  background: var(--color-gradient);
  color: var(--color-white);
  font-weight: var(--fw-semibold);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.error-search-card .search-submit:hover,
.error-search-card .search-submit:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(59, 130, 246, 0.3);
}

.error-links-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.error-links-card a {
  color: var(--color-primary);
  font-weight: var(--fw-medium);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.error-links-card a::after {
  content: '\2192';
  font-size: 0.85em;
  color: var(--color-accent);
}

.error-links-card a:hover,
.error-links-card a:focus-visible {
  color: var(--color-accent);
  transform: translateX(2px);
}

/* Rich Content Formatting */
.entry-content {
  font-size: var(--fs-base);
  line-height: var(--lh-relaxed);
  color: var(--color-text);
}

.entry-content > * {
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}

.entry-content > * + * {
  margin-top: 1.8em;
}

.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {

  color: var(--color-primary);
  margin-bottom: 0.6em;
  margin-top: 1.2em;
}

.entry-content h2:first-child,
.entry-content h3:first-child,
.entry-content h4:first-child,
.entry-content h5:first-child,
.entry-content h6:first-child {
  margin-top: 0;
}

.entry-content p {
  margin: 12px 0px;
	/* text-align:justify; */
}

.entry-content ul,
.entry-content ol {
  padding-left: 1.4em;
  margin: 0;
  display: grid;
  gap: 0.55em;
}

.entry-content ul li {
  position: relative;
  padding-left: 0.4em;
}

.entry-content ul li::marker {
  color: var(--color-accent);
  font-size: 0.85em;
}

.entry-content ol {
  list-style: decimal;
}

.entry-content blockquote {
  margin: 2.4em 0;
  padding: 1.6em 2em;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(99, 102, 241, 0.12));
  border-left: 6px solid rgba(59, 130, 246, 0.35);
  font-style: italic;
  color: var(--color-secondary);
}

.entry-content blockquote p:last-child {
  margin-bottom: 0;
}

.entry-content table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  margin: 2em 0;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  overflow: hidden;
}

.entry-content thead {
  background: linear-gradient(135deg, rgba(24, 155, 254, 0.16), rgba(153, 36, 250, 0.2));
  color: var(--color-primary);
}

.entry-content th,
.entry-content td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border-color-light);
}

.entry-content tbody tr:nth-child(even) {
  background: rgba(148, 163, 184, 0.08);
}

.entry-content img,
.entry-content figure {
  display: block;
  margin: 2.2em auto;
  max-width: 100%;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
}

.entry-content figure figcaption {
  margin-top: 0.75em;
  font-size: var(--fs-sm);
  color: var(--color-secondary);
  text-align: center;
}

.entry-content .alignleft {
  float: left;
  margin: 0.4em 1.6em 1.2em 0;
  max-width: 45%;
}

.entry-content .alignright {
  float: right;
  margin: 0.4em 0 1.2em 1.6em;
  max-width: 45%;
}

.entry-content .aligncenter {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.entry-content .wp-caption {
  text-align: center;
  margin: 2em auto;
}

.entry-content .wp-caption img {
  margin: 0;
}

.entry-content .wp-caption-text {
  font-size: var(--fs-sm);
  color: var(--color-secondary);
  margin-top: 0.6em;
}

.entry-content hr {
  margin: 3em auto;
  border: none;
  height: 1px;
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.3) 0%, rgba(99, 102, 241, 0.3) 100%);
}

.entry-content pre,
.entry-content code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  background: var(--color-gray-100);
  border-radius: 12px;
  border: 1px solid var(--border-color-light);
}

.entry-content pre {
  padding: 20px 24px;
  overflow-x: auto;
}

.entry-content code {
  padding: 0.2em 0.45em;
}

.entry-content::after {
  content: "";
  display: table;
  clear: both;
}

.service-meta-card,
.service-cta-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color-light);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 20px 46px rgba(15, 23, 42, 0.08);
}

.service-meta-title {
  font-size: var(--fs-xl);
  margin-bottom: 18px;
}

.service-meta-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  padding: 0;
}

.service-meta-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: var(--fs-sm);
  border-bottom: 1px solid var(--border-color-light);
  padding-bottom: 12px;
}

.service-meta-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.service-meta-label {
  font-weight: var(--fw-medium);
  color: var(--color-secondary);
}

.service-meta-value {
  color: var(--color-primary);
  font-weight: var(--fw-semibold);
}

/* Other Services Card */
.service-other-services-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color-light);
  border-radius: 24px;
  padding: 28px 24px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
  margin-bottom: 24px;
}

.service-other-services-title {

  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  margin: 0 0 20px;
  line-height: var(--lh-tight);
}

.service-other-services-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-other-services-item {
  margin: 0;
  border-bottom: 1px solid var(--border-color-light);
}

.service-other-services-item:last-child {
  border-bottom: none;
}

.service-other-services-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.service-other-services-link:hover {
  transform: translateX(4px);
  text-decoration: none;
}

.service-hero-content ul {
    list-style: none;
}

.service-other-services-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(99, 102, 241, 0.15));
  border-radius: 12px;
  overflow: hidden;
}

.service-other-services-icon-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-other-services-icon-symbol {
  font-size: 1.5rem;
  font-weight: var(--fw-bold);
}

.service-other-services-fallback {
  font-size: 1.25rem;
  font-weight: var(--fw-bold);
  color: var(--color-accent);
}

.service-other-services-text {
  flex: 1;
  min-width: 0;
}

.service-other-services-name {
  display: block;
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
  line-height: var(--lh-tight);
}

.service-other-services-arrow {
  flex-shrink: 0;
  font-size: var(--fs-xl);
  color: var(--color-accent);
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s ease;
}

.service-other-services-link:hover .service-other-services-arrow {
  opacity: 1;
  transform: translateX(0);
}

.service-cta-card {
  background: linear-gradient(135deg, rgba(24, 155, 254, 0.12), rgba(153, 36, 250, 0.18));
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.service-cta-title {
  font-size: var(--fs-xl);
  margin-bottom: 12px;
}

.service-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  padding: 12px 28px;
  border-radius: 999px;
  background: var(--color-gradient);
  color: var(--color-white);
  font-weight: var(--fw-semibold);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 16px 38px rgba(24, 155, 254, 0.28);
}

.service-cta-button:hover,
.service-cta-button:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(24, 155, 254, 0.36);
}

@media (max-width: 1024px) {
  .service-content-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .service-sidebar {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-meta-card,
  .service-cta-card {
    flex: 1 1 320px;
  }

  .page-content {
    padding: 40px;
  }

  .page-comments {
    padding: 32px;
  }

  .error-content {
    grid-template-columns: minmax(0, 1fr);
  }

  .single-post-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 48px;
  }

  .single-post-content {
    padding: 40px;
  }

  .single-post-sidebar {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
  }

  .single-post-author-card,
  .single-post-quick-actions {
    flex: 1 1 320px;
  }
}

@media (max-width: 768px) {
  .service-hero {
    padding: calc(130px + var(--header-offset)) 0 90px;
  }

  .page-hero,
  .error-hero {
    padding: calc(140px + var(--header-offset)) 0 80px;
  }

  .service-content-section {
    padding: 30px 0 50px;
  }

  .page-content-section,
  .error-content-section {
    padding: 30px 0 40px;
  }

  .single-post-hero {
    padding: calc(130px + var(--header-offset)) 0 90px;
  }

  .single-post-content-section {
    padding: 70px 0 100px;
  }

   .service-content {
    padding: 30px;
    word-break: break-word;
  }

  .page-content,
  .page-comments,
  .error-search-card,
  .error-links-card {
    padding: 32px;
  }

  .single-post-content,
  .single-post-comments {
    padding: 32px;
  }

  .single-post-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .page-hero-content {
    align-items: center;
    text-align: left;
  }

  .page-hero-actions,
  .error-hero-actions {
    flex-direction: column;
  }
}

@media (max-width: 540px) {
  .service-hero-inner {
    gap: 24px;
  }

  .service-hero-icon {
    width: 72px;
    height: 72px;
  }

  .service-hero-title {
    font-size: clamp(2rem, 7vw, 2.6rem);
  }

  .page-hero-inner,
  .error-hero-inner {
    align-items: flex-start;
    text-align: left;
    gap: 20px;
  }

 

  .single-post-hero-inner {
    padding: 0 10px;
  }

  .page-hero-title {
    font-size: clamp(2rem, 7.5vw, 2.6rem);
  }

  .error-hero-title {
    font-size: clamp(2.2rem, 8vw, 2.8rem);
  }

  .page-content,
  .page-comments,
  .error-search-card,
  .error-links-card {
    padding: 26px;
  }

  .single-post-content,
  .single-post-comments,
  .single-post-author-card,
  .single-post-quick-actions {
    padding: 26px;
  }

  .single-post-sidebar {
    flex-direction: column;
  }

  .single-post-share-button {
    width: 100%;
    justify-content: center;
  }

  .error-search-card .search-form {
    flex-direction: column;
  }

  .error-search-card .search-submit {
    width: 100%;
  }

  .service-sidebar {
    flex-direction: column;
  }

  .service-meta-card,
  .service-cta-card {
    width: 100%;
  }

  .single-post-nav-link {
    width: 100%;
    justify-content: space-between;
  }
}

/* Services Shortcode */
.services-shortcode {
  margin: 30px auto 60px;
  max-width: 1160px;
  padding: 0 24px;
}

.services-shortcode-grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 640px) {
  .services-shortcode-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .services-shortcode-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.services-shortcode-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-color-light);
  border-radius: 22px;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
  opacity: 0;
  transform: translateY(18px);
  animation: servicesCardFloat 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--card-delay, 0s);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-shortcode-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: var(--color-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.services-shortcode-link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 28px;
  color: inherit;
  text-decoration: none!important;
  position: relative;
  z-index: 1;
  height: 100%;
}

.services-shortcode-link:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 6px;
}

.services-shortcode-icon {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.18), rgba(99, 102, 241, 0.28));
  display: grid;
  place-items: center;
  overflow: hidden;
}

.services-shortcode-icon-symbol,
.services-shortcode-fallback {
  font-size: 1.75rem;
  font-weight: var(--fw-semibold);
  color: var(--color-white);
}

.services-shortcode-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.services-shortcode-title {

  font-size: var(--fs-lg);
  color: var(--color-primary);
  /* white-space: nowrap; */
  overflow: hidden;
  text-overflow: ellipsis;
}

.services-shortcode-excerpt {
  font-size: var(--fs-sm);
  color: var(--color-secondary);
  line-height: var(--lh-relaxed);
  display: -webkit-box;
  -webkit-line-clamp: 6;
  line-clamp: 6;
  text-align: left;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.services-shortcode-arrow {
  margin-top: auto;
  display: inline-flex;
}

.services-shortcode-arrow-circle {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--border-color-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.services-shortcode-arrow-icon {
  font-size: 1.25rem;
  color: var(--color-accent);
  transition: transform 0.3s ease, color 0.3s ease;
}

.services-shortcode-card:hover,
.services-shortcode-card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 22px 46px rgba(15, 23, 42, 0.16);
}

.services-shortcode-card:hover::before,
.services-shortcode-card:focus-within::before {
  opacity: 1;
}

.services-shortcode-card:hover .services-shortcode-arrow-circle,
.services-shortcode-card:focus-within .services-shortcode-arrow-circle {
  background: var(--color-gradient);
  border-color: transparent;
  transform: translateX(6px);
}

.services-shortcode-card:hover .services-shortcode-arrow-icon,
.services-shortcode-card:focus-within .services-shortcode-arrow-icon {
  color: var(--color-white);
  transform: translateX(2px);
}

.services-shortcode-footer {
  margin-top: 36px;
  text-align: center;
}

.services-shortcode-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 30px;
  border-radius: 999px;
  background: var(--color-accent);
  color: var(--color-white);
  font-weight: var(--fw-semibold);
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-shortcode-more:hover,
.services-shortcode-more:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(59, 130, 246, 0.45);
}

.services-shortcode-empty {
  text-align: center;
  color: var(--color-text-light);
  padding: 32px 0;
}

@media (max-width: 580px) {
  .services-shortcode-link {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .services-shortcode-title {
    white-space: normal;
  }
}

@keyframes servicesCardFloat {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* =============================================
   Industries List Shortcode
   ============================================= */

.industries-shortcode {
  padding: 0;
  margin: 0;
}

.industries-shortcode-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

@media (max-width: 768px) {
  .industries-shortcode-list {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
  }
}

@media (max-width: 580px) {
  .industries-shortcode-list {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
  }
}

.industries-shortcode-item {
  margin: 0;
  padding: 0;
  opacity: 0;
  animation: industriesItemFadeIn 0.5s ease-out forwards;
  animation-delay: var(--item-delay, 0s);
}

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

.industries-shortcode-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  background: var(--color-white);
  border-radius: 12px;
  text-decoration: none;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 2px 8px rgba(15, 23, 42, 0.06),
    0 1px 3px rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(226, 232, 240, 0.8);
  overflow: hidden;
}

body.dark-mode .industries-shortcode-link {
  background: var(--color-surface);
  border-color: rgba(71, 85, 105, 0.4);
  box-shadow: 
    0 2px 8px rgba(0, 0, 0, 0.15),
    0 1px 3px rgba(0, 0, 0, 0.1);
}

.industries-shortcode-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.industries-shortcode-link:hover,
.industries-shortcode-link:focus-visible {
  transform: translateY(-4px) translateX(2px);
  box-shadow: 
    0 12px 28px rgba(59, 130, 246, 0.15),
    0 4px 12px rgba(15, 23, 42, 0.08);
  border-color: rgba(59, 130, 246, 0.4);
}

body.dark-mode .industries-shortcode-link:hover,
body.dark-mode .industries-shortcode-link:focus-visible {
  box-shadow: 
    0 12px 28px rgba(59, 130, 246, 0.22),
    0 4px 12px rgba(0, 0, 0, 0.2);
  border-color: rgba(59, 130, 246, 0.5);
}

.industries-shortcode-link:hover::before,
.industries-shortcode-link:focus-visible::before {
  opacity: 0.05;
}

body.dark-mode .industries-shortcode-link:hover::before,
body.dark-mode .industries-shortcode-link:focus-visible::before {
  opacity: 0.08;
}

.industries-shortcode-link:focus-visible {
  outline: 2px solid rgba(59, 130, 246, 0.5);
  outline-offset: 3px;
}

.industries-shortcode-title {

  font-size: 1.0625rem;
  font-weight: var(--fw-semibold);
  line-height: 1.4;
  color: var(--color-heading);
  margin: 0;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
  flex: 1;
}

.industries-shortcode-link:hover .industries-shortcode-title,
.industries-shortcode-link:focus-visible .industries-shortcode-title {
  color: var(--color-accent);
}

.industries-shortcode-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.1);
  color: var(--color-accent);
  font-size: 1.125rem;
  font-weight: var(--fw-bold);
  position: relative;
  z-index: 1;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

body.dark-mode .industries-shortcode-arrow {
  background: rgba(59, 130, 246, 0.15);
}

.industries-shortcode-link:hover .industries-shortcode-arrow,
.industries-shortcode-link:focus-visible .industries-shortcode-arrow {
  background: var(--color-accent);
  color: var(--color-white);
  transform: translateX(4px) scale(1.1);
}

.industries-shortcode-footer {
  margin-top: 32px;
  text-align: center;
}

.industries-shortcode-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 36px;
  border-radius: 999px;
  background: var(--color-gradient);
  color: var(--color-white);
  font-weight: var(--fw-semibold);
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 
    0 12px 32px rgba(59, 130, 246, 0.35),
    0 4px 12px rgba(59, 130, 246, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.industries-shortcode-more::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.industries-shortcode-more:hover,
.industries-shortcode-more:focus-visible {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 
    0 20px 48px rgba(59, 130, 246, 0.45),
    0 8px 20px rgba(59, 130, 246, 0.3);
}

.industries-shortcode-more:hover::before,
.industries-shortcode-more:focus-visible::before {
  opacity: 1;
}

.industries-shortcode-more:focus-visible {
  outline: 3px solid rgba(59, 130, 246, 0.5);
  outline-offset: 4px;
}

.industries-shortcode-empty {
  text-align: center;
  color: var(--color-text-light);
  padding: 48px 24px;
  font-size: 1.0625rem;
}

@media (max-width: 480px) {
  .industries-shortcode-link {
    padding: 14px 16px;
    gap: 10px;
  }

  .industries-shortcode-title {
    font-size: 0.9375rem;
  }

  .industries-shortcode-arrow {
    width: 24px;
    height: 24px;
    font-size: 1rem;
  }

  .industries-shortcode-more {
    padding: 12px 28px;
    font-size: 0.9375rem;
  }
}

/* =============================================
   Products List Shortcode
   ============================================= */

.products-shortcode {
  padding: 0;
  margin: 0;
}

.products-shortcode-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 0;
  padding: 0;
}

@media (max-width: 768px) {
  .products-shortcode-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.products-shortcode-card {
  margin: 0;
  padding: 0;
  opacity: 0;
  animation: productsCardFloat 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: var(--card-delay, 0s);
}

@keyframes productsCardFloat {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.products-shortcode-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 36px 32px;
  background: var(--color-white);
  border-radius: 16px;
  position: relative;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(226, 232, 240, 0.8);
  overflow: hidden;
}

[data-theme="dark"] .products-shortcode-content {
  background: var(--bg-card);
  border-color: rgba(226, 232, 240, 0.8);
}

.products-shortcode-content::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-gradient);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
  pointer-events: none;
  border-radius: 16px;
}

.products-shortcode-card:hover .products-shortcode-content {
  transform: translateY(-8px);
  border-color: rgba(59, 130, 246, 0.6);
  box-shadow: 
    0 20px 48px rgba(59, 130, 246, 0.2),
    0 8px 24px rgba(15, 23, 42, 0.12);
}

[data-theme="dark"] .products-shortcode-card:hover .products-shortcode-content {
  box-shadow: 
    0 20px 48px rgba(59, 130, 246, 0.3),
    0 8px 24px rgba(0, 0, 0, 0.25);
  border-color: rgba(59, 130, 246, 0.7);
}

.products-shortcode-card:hover .products-shortcode-content::before {
  opacity: 0.06;
}

body.dark-mode .products-shortcode-card:hover .products-shortcode-content::before {
  opacity: 0.1;
}

.products-shortcode-title {
  font-size: 1.5rem;
  font-weight: var(--fw-bold);
  line-height: 1.3;
  color: var(--color-heading);
  margin: 0;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

[data-theme="dark"] .products-shortcode-title {
  color: white;
}

.products-shortcode-card:hover .products-shortcode-title {
  color: var(--color-accent);
}

.products-shortcode-intro {
  font-size: 0.9375rem;
  color: var(--color-secondary);
  line-height: 1.6;
  margin: 0;
  position: relative;
.products-shortcode-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 12px;
  background: var(--color-white);
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
  font-size: 0.9375rem;
  font-weight: var(--fw-semibold);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  align-self: flex-start;
  position: relative;
  z-index: 1;
}

body.dark-mode .products-shortcode-button {
  background: var(--color-white);
} transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  align-self: flex-start;
  position: relative;
  z-index: 1;
}

body.dark-mode .products-shortcode-button {
  background: var(--color-surface);
}

.products-shortcode-button:hover {
  background: var(--color-accent);
  color: var(--color-white);
  transform: translateX(4px);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.products-shortcode-arrow-icon {
  font-size: 1.125rem;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.products-shortcode-button:hover .products-shortcode-arrow-icon {
  transform: translateX(4px);
}

.products-shortcode-footer {
  margin-top: 36px;
  text-align: center;
}

.products-shortcode-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 30px;
  border-radius: 999px;
  background: var(--color-accent);
  color: var(--color-white);
  font-weight: var(--fw-semibold);
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.products-shortcode-more:hover,
.products-shortcode-more:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(59, 130, 246, 0.45);
}

.products-shortcode-empty {
  text-align: center;
  color: var(--color-text-light);
  padding: 32px 0;
}

@media (max-width: 580px) {
  .products-shortcode-content {
    padding: 28px 24px;
    gap: 14px;
  }

  .products-shortcode-title {
    font-size: 1.25rem;
  }

  .products-shortcode-intro {
    font-size: 0.875rem;
  }

  .products-shortcode-button {
    padding: 10px 20px;
    font-size: 0.875rem;
  }
}

/* Logos Shortcode Styles */
.logos-shortcode {
  margin: 40px auto 0px;
  max-width: 1200px;
  padding: 0 24px;
}

.logos-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-color-light);
}

.logos-filter-tab {
  padding: 12px 24px;
  border: 2px solid var(--border-color);
  border-radius: 999px;
  background: var(--bg-card);
  color: var(--color-text);
  font-weight: var(--fw-medium);
  font-size: 0.9375rem;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
}

.logos-filter-tab:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.logos-filter-tab.active {
  background: var(--color-gradient);
  border-color: transparent;
  color: var(--color-white);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.logos-filter-tab.active:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(59, 130, 246, 0.4);
}

/* Logos Carousel Styles */
.logos-carousel-wrapper {
  position: relative;
  margin: 0 auto;
  max-width: 100%;
  padding: 20px 60px;
}

.logos-carousel {
  overflow: hidden;
  position: relative;
  padding: 10px 0;
}

.logos-carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 32px;
}

/* Center logos when less than 4 */
.logos-carousel-track.center-items {
  justify-content: center;
  transform: none !important;
}

.logo-carousel-item {
  flex: 0 0 calc(25% - 24px);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-color-light);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  height: 140px;
}

.logo-carousel-item:hover {
  border-color: var(--color-accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.15);
}

.logo-carousel-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
}

.logo-carousel-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

.logo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(99, 102, 241, 0.08));
  border-radius: 8px;
  text-align: center;
}

.logo-placeholder span {
  font-weight: var(--fw-semibold);
  color: var(--color-text-secondary);
  font-size: 0.875rem;
}

/* Carousel Navigation Buttons */
.logos-carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  opacity: 1 !important;
  visibility: visible !important;
  font-size: 20px;
  font-weight: bold;
  color: #1e293b;
  line-height: 1;
}

.logos-carousel-nav::before {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  border-top: 3px solid currentColor;
  border-left: 3px solid currentColor;
}

.logos-carousel-prev::before {
  transform: rotate(-45deg);
  margin-left: 3px;
}

.logos-carousel-next::before {
  transform: rotate(135deg);
  margin-right: 3px;
}

body.dark-mode .logos-carousel-nav {
  background: #2a2a2a;
  border-color: #444;
  color: #ffffff;
}

.logos-carousel-nav:hover {
  background: #3b82f6;
  border-color: #3b82f6;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.25);
  color: #ffffff;
}

.logos-carousel-prev {
  left: 0;
}

.logos-carousel-next {
  right: 0;
}

.logos-carousel-nav svg {
  display: none;
}

/* Carousel Dots */
.logos-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
  padding: 10px 0;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  padding: 0;
}

body.dark-mode .carousel-dot {
  background: rgba(255, 255, 255, 0.3);
}

.carousel-dot:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  transform: scale(1.3);
}

.carousel-dot.active {
  width: 40px;
  border-radius: 6px;
  background: var(--color-gradient);
  border-color: transparent;
}

.logos-shortcode-empty {
  text-align: center;
  color: var(--color-text-light);
  padding: 48px 24px;
  font-size: 1.0625rem;
}

/* Dark Mode Support */
body.dark-mode .logo-carousel-item img {
  filter: grayscale(100%) brightness(0.9);
}

body.dark-mode .logo-carousel-item:hover img {
  filter: grayscale(0%) brightness(1);
}

/* Responsive */
@media (max-width: 768px) {
  .logos-shortcode {
    margin: 60px auto;
  }

  .logos-filter-tabs {
    gap: 8px;
    margin-bottom: 32px;
  }

  .logos-filter-tab {
    padding: 10px 18px;
    font-size: 0.875rem;
  }

  .logos-carousel {
    padding: 0;
    overflow: hidden;
  }
  
  .logos-carousel-wrapper {
    padding: 20px 0;
  }

  .logo-carousel-item {
    flex: 0 0 100%;
    min-width: 100%;
    height: 140px;
    padding: 30px;
    margin: 0;
  }

  .logos-carousel-track {
    gap: 0;
  }
  .logos-carousel-dots{
    margin-top:0px;
  }
}

@media (max-width: 480px) {
  .logos-carousel {
    padding: 0;
    overflow: hidden;
  }
  
  .logos-carousel-wrapper {
    padding: 20px 0;
  }
  
 .logos-shortcode {
    margin: 0px auto;
    padding: 0px;
  }
  .logo-carousel-item {
    flex: 0 0 100%;
    min-width: 100%;
    height: 110px;
    padding: 10px;
    margin: 0;
  }
  
  .logo-carousel-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
  }

  .logos-carousel-track {
    gap: 0;
  }

  .logos-carousel-prev,
  .logos-carousel-next {
    display: none !important;
  }
   

  .logos-carousel-nav svg {
    width: 16px;
    height: 16px;
  }
  .logos-carousel-wrapper{
    padding:20px;
  }
  article.industry-content.entry-content{
    padding: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .services-shortcode-card {
    animation: none;
    transform: none;
  }

  .services-shortcode-card:hover,
  .services-shortcode-card:focus-within {
    transform: none;
  }

  .blog-archive-card {
    animation: none;
    transform: none;
  }

  .blog-archive-card:hover,
  .blog-archive-card:focus-within {
    transform: none;
  }

  .industries-shortcode-item {
    animation: none;
    opacity: 1;
  }

  .industries-shortcode-link:hover,
  .industries-shortcode-link:focus-visible {
    transform: none;
  }

  .industries-shortcode-arrow:hover {
    transform: none;
  }
}

.services-archive-section {
  position: relative;
  padding: 80px 0 100px;
  background: var(--bg-primary);
}

.services-archive-intro {
  max-width: 760px;
  margin: 0 auto 60px;
  text-align: center;
}

.services-archive-intro.entry-content > * {
  margin-left: auto;
  margin-right: auto;
}

.services-archive-intro.entry-content > * + * {
  margin-top: 1.4em;
}

.services-archive-grid {
  margin-top: 24px;
  gap: 28px;
}

.services-archive-card {
  height: 100%;
}

.services-archive-link {
  height: 100%;
}

.services-archive-title {
  white-space: normal;
  text-overflow: initial;
  overflow: visible;
  font-size: var(--fs-xl);
}

.services-archive-excerpt {
  color: var(--color-secondary);
  line-height: var(--lh-relaxed);
}

.services-archive-pagination {
  margin-top: 56px;
  display: flex;
  justify-content: center;
}

.services-archive-page-numbers {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.services-archive-page-numbers .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid var(--border-color-light);
  color: var(--color-text);
  font-weight: var(--fw-medium);
  text-decoration: none;
  transition: all 0.25s ease;
}

.services-archive-page-numbers .page-numbers:hover,
.services-archive-page-numbers .page-numbers:focus-visible {
  background: var(--color-gradient);
  color: var(--color-white);
  border-color: transparent;
  outline: none;
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(24, 155, 254, 0.28);
}

.services-archive-page-numbers .page-numbers.current {
  background: var(--color-gradient);
  color: var(--color-white);
  border-color: transparent;
  box-shadow: 0 14px 28px rgba(24, 155, 254, 0.22);
}

.services-archive-page-numbers .page-numbers.prev,
.services-archive-page-numbers .page-numbers.next {
  padding: 10px 20px;
}

.services-archive-empty {
  margin-top: 48px;
  text-align: center;
  color: var(--color-text-light);
}

@media (max-width: 768px) {
  .services-archive-section {
    padding: 80px 0 100px;
  }

  .services-archive-intro {
    margin-bottom: 48px;
  }

  .services-archive-page-numbers {
    gap: 8px;
  }

  .services-archive-page-numbers .page-numbers {
    min-width: 40px;
    padding: 10px 14px;
  }
}

@media (max-width: 540px) {
  .services-archive-section {
    padding: 70px 0 90px;
  }

  .services-archive-page-numbers {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.blog-archive-section {
  position: relative;
  padding: 100px 0 120px;
  background: var(--bg-primary);
}

.blog-archive-intro {
  max-width: 760px;
  margin: 0 auto 60px;
  text-align: center;
}

.blog-archive-intro.entry-content > * {
  margin-left: auto;
  margin-right: auto;
}

.blog-archive-intro.entry-content > * + * {
  margin-top: 1.4em;
}

.blog-archive-grid {
  display: grid;
  gap: 28px;
  margin-top: 24px;
}

@media (min-width: 640px) {
  .blog-archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .blog-archive-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.blog-archive-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-color-light);
  border-radius: 22px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.1);
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  animation: blogCardFade 0.65s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--card-delay, 0s);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  height: 100%;
}

.blog-archive-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(99, 102, 241, 0.12));
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.blog-archive-card:hover,
.blog-archive-card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.18);
}

.blog-archive-card:hover::after,
.blog-archive-card:focus-within::after {
  opacity: 1;
}

.blog-archive-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
  text-align:left;
}
.blog-archive-link:hover{
  text-decoration: none;
}

.blog-archive-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.18), rgba(99, 102, 241, 0.32));
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-archive-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-archive-card:hover .blog-archive-image,
.blog-archive-card:focus-within .blog-archive-image {
  transform: scale(1.05);
}

.blog-archive-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 2.6rem;
  font-weight: var(--fw-semibold);
  color: var(--color-white);
  letter-spacing: 0.08em;
}

.blog-archive-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px;
  flex: 1;
}

.blog-archive-meta {
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-light);
}

.blog-archive-title {
  font-family: var(--font-primary);
  font-size: clamp(1.4rem, 2.4vw, 1.75rem);
  color: var(--color-primary);
  line-height: 1.2;
}

.blog-archive-excerpt {
  font-size: var(--fs-sm);
  color: var(--color-secondary);
  line-height: var(--lh-relaxed);
}

.blog-archive-more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: var(--fw-semibold);
  color: var(--color-accent);
  transition: transform 0.3s ease, color 0.3s ease;
}

.blog-archive-card:hover .blog-archive-more,
.blog-archive-card:focus-within .blog-archive-more {
  transform: translateX(4px);
  color: var(--color-primary);
}

.blog-archive-pagination {
  margin-top: 56px;
  display: flex;
  justify-content: center;
}

.blog-archive-page-numbers {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.blog-archive-page-numbers .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid var(--border-color-light);
  color: var(--color-text);
  font-weight: var(--fw-medium);
  text-decoration: none;
  transition: all 0.25s ease;
}

.blog-archive-page-numbers .page-numbers:hover,
.blog-archive-page-numbers .page-numbers:focus-visible {
  background: var(--color-gradient);
  color: var(--color-white);
  border-color: transparent;
  outline: none;
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(24, 155, 254, 0.28);
}

.blog-archive-page-numbers .page-numbers.current {
  background: var(--color-gradient);
  color: var(--color-white);
  border-color: transparent;
  box-shadow: 0 14px 28px rgba(24, 155, 254, 0.22);
}

.blog-archive-page-numbers .page-numbers.prev,
.blog-archive-page-numbers .page-numbers.next {
  padding: 10px 20px;
}

.blog-archive-empty {
  margin-top: 48px;
  text-align: center;
  color: var(--color-text-light);
}

@media (max-width: 768px) {
  .blog-archive-section {
    padding: 80px 0 100px;
  }

  .blog-archive-intro {
    margin-bottom: 48px;
  }

  .blog-archive-page-numbers {
    gap: 8px;
  }

  .blog-archive-page-numbers .page-numbers {
    min-width: 40px;
    padding: 10px 14px;
  }
}

@media (max-width: 540px) {
  .blog-archive-section {
    padding: 70px 0 90px;
  }

  .blog-archive-page-numbers {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* Blog Shortcode */
.blog-shortcode {
  margin: 80px auto 50px;
  max-width: 1160px;
  padding: 0 24px;
}

.blog-shortcode-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 640px) {
  .blog-shortcode-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .blog-shortcode-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.blog-shortcode-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-color-light);
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  opacity: 0;
  transform: translateY(18px);
  animation: blogCardFade 0.65s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--card-delay, 0s);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.blog-shortcode-link {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 28px;
  height: 100%;
  text-decoration: none;
  color: inherit;
  position: relative;
  z-index: 1;
}

@media (max-width: 520px) {
  .blog-shortcode-link {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .blog-shortcode-arrow {
    margin-left: 0;
    align-self: flex-start;
  }
}

.blog-shortcode-link:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 6px;
}

.blog-shortcode-icon {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.18), rgba(99, 102, 241, 0.28));
  display: grid;
  place-items: center;
  overflow: hidden;
  flex-shrink: 0;
}

.blog-shortcode-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-shortcode-fallback {
  font-size: 1.75rem;
  font-weight: var(--fw-semibold);
  color: var(--color-white);
}

.blog-shortcode-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.blog-shortcode-meta {
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-light);
}

.blog-shortcode-title {
  font-family: var(--font-primary);
  font-size: var(--fs-xl);
  color: var(--color-primary);
}

.blog-shortcode-excerpt {
  color: var(--color-secondary);
  line-height: var(--lh-relaxed);
  font-size: var(--fs-sm);
}

.blog-shortcode-arrow {
  font-size: 1.5rem;
  color: var(--color-accent);
  transition: transform 0.35s ease;
  margin-left: auto;
  align-self: center;
}

.blog-shortcode-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(99, 102, 241, 0.12));
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.blog-shortcode-card:hover,
.blog-shortcode-card:focus-within {
  transform: translateY(-8px);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.16);
}

.blog-shortcode-card:hover::after,
.blog-shortcode-card:focus-within::after {
  opacity: 1;
}

.blog-shortcode-card:hover .blog-shortcode-arrow,
.blog-shortcode-card:focus-within .blog-shortcode-arrow {
  transform: translateX(8px);
}

.blog-shortcode-footer {
  margin-top: 40px;
  text-align: center;
}

.blog-shortcode-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 999px;
  background: var(--color-accent);
  color: var(--color-white);
  font-weight: var(--fw-semibold);
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(59, 130, 246, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-shortcode-more:hover,
.blog-shortcode-more:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(59, 130, 246, 0.45);
}

.blog-shortcode-empty {
  text-align: center;
  color: var(--color-text-light);
  padding: 36px 0;
}

@keyframes blogCardFade {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .blog-shortcode-card {
    animation: none;
    transform: none;
  }

  .blog-shortcode-card:hover,
  .blog-shortcode-card:focus-within {
    transform: none;
  }
}

/* Sections */
.section {
  padding: 100px 24px;
  background: var(--bg-primary);
  transition: background-color 0.3s ease;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  box-sizing: border-box;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-family: var(--font-primary);
  font-size: var(--fs-4xl);
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: var(--fs-lg);
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: var(--lh-relaxed);
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  padding: 32px;
  border-radius: 16px;
  background: var(--bg-card);
  box-shadow: 0 4px 20px rgba(17,24,39,0.08);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color-light);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(17,24,39,0.12);
}

.service-card h3 {
  font-size: var(--fs-xl);
  margin-bottom: 12px;
  color: var(--color-primary);
}

.service-card p {
  color: var(--color-text-light);
  line-height: var(--lh-relaxed);
}
/* Logos section */
.logos-section {
box-shadow: 0px 0px 14px 0px #00000073;
border-radius: 30px!important;
margin-top:-80px!important;
}
[data-theme="dark"] .logos-section{
	background-color:#2e3b6a!important;
}
[data-theme="dark"] .logos-section p{
	color:#fff;
} 
[data-theme="dark"] .elementor-heading-title {
	color:#fff!important;
}
/* Footer */
.site-footer {
  background: var(--bg-footer, #1e293b);
  color: #cbd5e1;
  padding: 80px 0 30px 0;
  transition: background-color 0.3s ease;
  min-height: 200px; /* Ensure footer has minimum height */
}

.footer-content {
  display: grid;
  /* grid-template-columns: 2fr 1fr 1fr 1.5fr; */
  grid-template-columns: 1.5fr 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-column h4.footer-heading {
  font-family: var(--font-primary);
  color: var(--color-white);
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.footer-tagline {
  margin-top: 20px;
  line-height: var(--lh-relaxed);
  opacity: 0.9;
  font-size: var(--fs-base);
  color: #cbd5e1;
}
.footer-logo a{display:inline-block}
.footer-logo img{max-height:50px;width:auto}
.footer-logo a{color:#fff;font-size:24px;font-weight:700;text-decoration:none}
.footer-menu{list-style:none;padding:0;margin:0}
.footer-menu li{margin-bottom:12px}
.footer-menu a{color:#cbd5e1;text-decoration:none;transition:color 0.3s ease}
.footer-menu a:hover{color:#fff}
.social-icons{display:flex;gap:15px; margin-top: 30px;}
.social-icon{display:inline-flex;align-items:center;justify-content:center;width:40px;height:40px;background:#1e293b;border-radius:8px;color:#cbd5e1;transition:all 0.3s ease;text-decoration:none}
.social-icon:hover{transform:translateY(-2px);box-shadow:0 4px 12px rgba(0,0,0,0.3)}
.social-icon.facebook:hover{background:#1877f2;color:#fff}
.social-icon.linkedin:hover{background:#0a66c2;color:#fff}
.social-icon.twitter:hover{background:#1da1f2;color:#fff}
.social-icon.github:hover{background:#333;color:#fff}
.footer-bottom {
  border-top: 1px solid #334155;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0.8;
  gap: 20px;
}

.footer-copyright {
  text-align: right;
}

.footer-copyright p {
  margin: 0;
  font-size: var(--fs-sm);
  color: #cbd5e1;
}

/* Theme Toggle */
.theme-toggle {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-accent);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(59, 130, 246, 0.4);
}

.theme-toggle svg {
  width: 24px;
  height: 24px;
  fill: white;
  stroke: white;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: all 0.3s ease;
}

.theme-toggle:hover svg {
  transform: rotate(20deg);
}

/* Theme-specific icon visibility */
[data-theme="light"] .theme-toggle .sun-icon {
  display: block;
}

[data-theme="light"] .theme-toggle .moon-icon {
  display: none;
}

[data-theme="dark"] .theme-toggle .sun-icon {
  display: none;
}

[data-theme="dark"] .theme-toggle .moon-icon {
  display: block;
}

/* Dark mode specific adjustments */
/* Dark Theme Header Styles */
[data-theme="dark"] .site-header {
  color: var(--color-text);
}

/* [data-theme="dark"] .site-header.initial {
  background: rgba(15, 23, 42, 0.95);
  border: 2px solid var(--border-color);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
} */

[data-theme="dark"] .site-header.scrolled {
  background: var(--bg-primary);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

[data-theme="dark"] .site-header .header-inner{
  background:var(--bg-primary);
}
[data-theme="dark"] .logos-section {
  background:var(--bg-primary);
}
 
/* Dark Theme Navigation Links */
[data-theme="dark"] .nav-menu li a {
  color: var(--color-text);
}

[data-theme="dark"] .nav-menu li a:hover,
[data-theme="dark"] .nav-menu li:hover > a,
[data-theme="dark"] .nav-menu li a:focus-visible {
  color: var(--color-accent);
}

[data-theme="dark"] .nav-menu > li:last-child > a,
[data-theme="dark"] .nav-menu > li:last-child > a:hover,
[data-theme="dark"] .nav-menu > li:last-child:hover > a,
[data-theme="dark"] .nav-menu > li:last-child > a:focus-visible {
  color: var(--color-white);
}

/* Dark Theme Dropdowns */
[data-theme="dark"] .dropdown-menu,
[data-theme="dark"] .dropdown-submenu {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

[data-theme="dark"] .dropdown-menu li a {
  color: var(--color-text);
}

[data-theme="dark"] .dropdown-menu li a:hover {
  background: var(--color-gray-100);
  color: var(--color-accent);
}

/* Dark Theme Mobile Menu */
[data-theme="dark"] .hamburger {
  background: var(--color-text);
}

/* [data-theme="dark"] .nav-menu {
  background: var(--bg-primary);
  border-left: 1px solid var(--border-color);
} */

[data-theme="dark"] .dropdown-menu {
  background: var(--bg-secondary);
}

[data-theme="dark"] .dropdown-submenu {
  background: var(--bg-secondary);
}

/* Dark Theme Dropdown Indicators */
[data-theme="dark"] .dropdown-indicator svg {
  fill: currentColor;
}

/* Dark Theme Focus and Active States */
[data-theme="dark"] .nav-menu li a:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

[data-theme="dark"] .dropdown-menu li a:focus-visible {
  background: var(--color-gray-100);
  color: var(--color-accent);
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* Dark Theme Mobile Menu Toggle */
[data-theme="dark"] .mobile-menu-toggle:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

[data-theme="dark"] .mobile-menu-toggle:hover .hamburger {
  background: var(--color-accent);
}

/* Dark Theme Mobile Menu Active States */
[data-theme="dark"] .nav-menu.active {
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

/* Dark Theme Current Page Indicators */
[data-theme="dark"] .nav-menu .current-menu-item > a,
[data-theme="dark"] .nav-menu .current_page_item > a,
[data-theme="dark"] .nav-menu .current-menu-ancestor > a {
  background: transparent;
  color: var(--color-accent);
}

[data-theme="dark"] .service-card {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .service-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .btn {
  box-shadow: 0 2px 10px rgba(96, 165, 250, 0.3);
}

[data-theme="dark"] .btn:hover {
  box-shadow: 0 4px 20px rgba(96, 165, 250, 0.5);
}

[data-theme="dark"] .theme-toggle {
  background: var(--color-accent);
  box-shadow: 0 4px 20px rgba(96, 165, 250, 0.4);
}

[data-theme="dark"] .theme-toggle:hover {
  box-shadow: 0 6px 25px rgba(96, 165, 250, 0.6);
}

/* Body Theme Classes for Additional Styling */
body.theme-light {
  --theme-state: 'light';
}

body.theme-dark {
  --theme-state: 'dark';
}

/* Theme transition class for smooth switching animations */
body.theme-transitioning {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Smooth transitions for all theme-aware elements */
* {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Footer Theme Toggle */
.footer-theme-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.theme-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
}

.theme-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.theme-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #334155;
  transition: 0.3s;
  border-radius: 30px;
}

.theme-slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background: white;
  transition: 0.3s;
  border-radius: 50%;
}

input:checked + .theme-slider {
  background: var(--color-accent);
}

input:checked + .theme-slider:before {
  transform: translateX(30px);
}

.theme-label {
  color: #cbd5e1;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  display: flex;
  align-items: center;
  gap: 8px;
}

.theme-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .section {
    padding: 80px 24px;
  }
  
  .hero-inner {
    padding: 60px 24px;
  }
  
  .hero-slider .hero-inner {
    padding: 100px 24px;
  }
  
  .section-title {
    font-size: var(--fs-3xl);
  }

  .services-shortcode {
    margin: 80px auto;
    padding: 0 20px;
  }

  .services-shortcode-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }
}

@media (max-width: 768px) {
  /* Mobile Header */
  .site-header {
    padding: 15px 0;
  }
  
  .site-header.initial {
    border-radius: 12px;
  }
  
  .header-inner {
    padding: 0 20px;
  }
  
  /* Show Mobile Toggle Button */
  .mobile-menu-toggle {
    display: flex;
    z-index: 1001;
    position: relative;
  }
  
  /* Hide Desktop Navigation on Mobile */
  .main-navigation {
    position: static;
  }
  
  /* Mobile Menu Overlay */
  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-primary);
    flex-direction: column;
    align-items: stretch;
    padding: 100px 30px 30px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
  }
  
  .nav-menu.active {
    opacity: 1;
    visibility: visible;
  }
  
  /* Mobile Menu Items */
  .nav-menu > li {
    width: 100%;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid var(--border-color-light);
  }
  
  .nav-menu > li:last-child {
    border-bottom: none;
  }
  
  .nav-menu > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    font-size: 1.125rem;
    font-weight: var(--fw-medium);
    color: var(--color-text);
    border-radius: 0;
  }
  
  .nav-menu > li > a:hover {
    color: var(--color-accent);
    background: transparent;
  }

  /* Mobile Dropdown Indicators */
  .dropdown-indicator {
    transition: transform 0.3s ease;
  }

  .has-dropdown.active > a .dropdown-indicator {
    transform: rotate(180deg);
  }
  
  /* Mobile First Level Dropdown */
  .dropdown-menu {
    position: static;
    background: var(--bg-secondary);
    border: none;
    border-radius: 0;
    margin: 0;
    padding: 0 0 10px 20px;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    width: 100%;
    list-style: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  
  .has-dropdown.active > .dropdown-menu {
    display: block;
    max-height: 500px;
  }

  .dropdown-menu li {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .dropdown-menu li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 10px;
    font-size: 1rem;
    font-weight: var(--fw-regular);
    color: var(--color-text);
    opacity: 0.85;
  }
  
  .dropdown-menu li a:hover {
    color: var(--color-accent);
    opacity: 1;
    background: transparent;
  }
  
  /* Mobile Second Level Dropdown */
  .dropdown-submenu {
    position: static;
    background: transparent;
    margin: 0;
    padding: 0 0 8px 20px;
    border-radius: 0;
    display: none;
    width: 100%;
    list-style: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  
  .dropdown-menu .has-dropdown.active > .dropdown-submenu {
    display: block;
    max-height: 400px;
  }

  .dropdown-submenu li a {
    padding: 10px 0;
    font-size: 0.9375rem;
    opacity: 0.75;
  }
  
  .dropdown-submenu li a:hover {
    opacity: 1;
    color: var(--color-accent);
  }

  /* Remove Desktop-only Styles on Mobile */
  .nav-menu > li > a::after {
    display: none;
  }
  
  .nav-menu > li:last-child > a {
    background: var(--color-gradient);
    color: var(--color-white);
    padding: 15px 24px;
    border-radius: 8px;
    text-align: center;
    margin-top: 20px;
  }
  
  .nav-menu > li:last-child > a:hover {
    transform: none;
    box-shadow: none;
  }
  
  /* Mobile Mega Menu */
  .mega-menu-dropdown {
    padding: 10px 0;
    min-width: auto;
    max-width: none;
  }
  
  .mega-menu-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  
  .mega-menu-item {
    width: 100%;
  }
  
  .mega-menu-item a {
    padding: 12px 0;
    gap: 10px;
  }
  
  .mega-menu-icon {
    font-size: 1.25rem;
    width: 28px;
    height: 28px;
  }
  
  .mega-menu-title {
    font-size: 0.9375rem;
  }
  
  .mega-menu-desc {
    display: none;
  }
  
  .mega-menu-item a:hover {
    transform: none;
    background: transparent;
  }
  
  .mega-menu-content {
    flex: 1;
  }
  
  .hero-slider .slider-controls {
    display: none;
  }

  .hero-slider .slider-pagination {
    bottom: 24px;
  }

  .hero {
    min-height: 100vh;
  }
  
  .hero-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 50px 20px;
    text-align: left;
  }

  .hero-slider .hero-inner {
    align-items: center;
    text-align: center;
    padding: 80px 20px;
  }

  .hero-slider .hero-copy {
    width: 100%;
  }

  .hero-slider .hero-cta {
    justify-content: center;
  }
  
  .hero-title {
    font-size: var(--fs-4xl);
  }
  
  .hero-sub {
    font-size: var(--fs-base);
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .services-shortcode {
    margin: 60px auto;
  }

  .services-shortcode-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .services-shortcode-link {
    padding: 28px 24px;
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  
  .section {
    padding: 60px 20px;
  }
  
  .section-title {
    font-size: var(--fs-2xl);
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-shortcode-grid {
    grid-template-columns: 1fr;
  }

  .services-shortcode-link {
    padding: 26px 20px;
  }

  .services-shortcode-more {
    width: 100%;
  }
  
  .hero-title {
    font-size: var(--fs-3xl);
  }
  
  .hero-sub {
    font-size: var(--fs-sm);
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .hero-slider .hero-cta {
    align-items: center;
  }

  .hero-slider .slider-pagination {
    bottom: 18px;
  }
  
  .hero-slider .hero-inner {
    padding: 70px 16px;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .main-navigation ul {
    gap: 8px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .social-icons {
    justify-content: center;
  }
  
  .footer-column h4.footer-heading {
    margin-bottom: 15px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .footer-copyright {
    text-align: center;
  }
  
  .footer-theme-toggle {
    justify-content: center;
  }
  
  .section {
    padding: 50px 16px;
  }
  
  .service-card {
    padding: 24px;
  }
  .industries-shortcode-link img {
  display: none;
}
}

/* ========================================
   Industries Archive & Detail Pages
   ======================================== */

/* Industries Archive Section */
.industries-archive-section {
  position: relative;
  padding: 80px 0 100px;
  background: var(--bg-primary);
}

.industries-archive-intro {
  max-width: 760px;
  margin: 0 auto 60px;
  text-align: center;
}

.industries-archive-intro.entry-content > * {
  margin-left: auto;
  margin-right: auto;
}

.industries-archive-intro.entry-content > * + * {
  margin-top: 1.4em;
}

/* Industries Grid */
.industries-grid {
  display: grid;
  gap: 32px;
  margin-top: 30px;
}

@media (min-width: 640px) {
  .industries-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .industries-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Industry Card */
.industry-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-color-light);
  border-radius: 24px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.1);
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  animation: blogCardFade 0.65s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--card-delay, 0s);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  height: 100%;
}

.industry-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(99, 102, 241, 0.12));
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.industry-card:hover,
.industry-card:focus-within {
  transform: translateY(-8px);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.18);
}

.industry-card:hover::after,
.industry-card:focus-within::after {
  opacity: 1;
}

.industry-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.industry-card-link:hover {
  text-decoration: none;
}

.industry-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(99, 102, 241, 0.25));
}

.industry-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.industry-card:hover .industry-thumbnail {
  transform: scale(1.06);
}

.industry-card-content {
  padding: 28px 26px 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.industry-card-title {
  font-family: var(--font-primary);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  margin: 0 0 14px;
  line-height: var(--lh-tight);
}

.industry-card-excerpt {
  font-size: var(--fs-base);
  color: var(--color-secondary);
  line-height: var(--lh-relaxed);
  margin: 0 0 20px;
  flex-grow: 1;
}

.industry-card-readmore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: auto;
}

.industry-card-arrow {
  display: inline-flex;
  transition: transform 0.3s ease;
}

.industry-card:hover .industry-card-arrow {
  transform: translateX(4px);
}

/* Industries Pagination */
.industries-pagination {
  margin-top: 60px;
}

.industries-page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.industries-page-numbers li {
  margin: 0;
}

.industries-page-numbers a,
.industries-page-numbers .current {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--color-secondary);
  background: var(--bg-card);
  border: 1px solid var(--border-color-light);
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.industries-page-numbers a:hover {
  background: var(--color-accent);
  color: white;
  border-color: var(--color-accent);
  transform: translateY(-2px);
}

.industries-page-numbers .current {
  background: var(--color-accent);
  color: white;
  border-color: var(--color-accent);
  font-weight: var(--fw-semibold);
}

.industries-empty {
  text-align: center;
  padding: 60px 20px;
  font-size: var(--fs-lg);
  color: var(--color-secondary);
}

span.industries-shortcode-title {
    color: #000000;
}

/* [data-theme="dark"] .home-ind h3.elementor-heading-title {
    color: #000 !important;
} */

/* ========================================
   Industry Detail Page
   ======================================== */

/* Industry Hero */
.industry-hero {
  position: relative;
  padding: 140px 0 100px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(59, 130, 246, 0.85)), 
              var(--overlap-hero-image, url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg"/>')),
              linear-gradient(135deg, #0f1724, #1e293b);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.industry-hero-backdrop {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(59, 130, 246, 0.15), transparent 70%);
  pointer-events: none;
}

.industry-hero-inner {
  position: relative;
  z-index: 1;
}

.industry-hero-content {
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
}

.industry-hero-kicker {
  display: inline-block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.industry-hero-title {
  font-family: var(--font-primary);
  font-size: var(--fs-5xl);
  font-weight: var(--fw-bold);
  color: white;
  line-height: var(--lh-tight);
  margin: 0 0 24px;
}
@media (max-width: 1025px) {
  .main-navigation > ul > li > a{
    padding:10px 0px;;
  }
  
}
@media (min-width: 1024px) {
  .industry-hero-title {
    font-size: var(--fs-6xl);
  }
}

.industry-hero-subtitle {
  font-size: var(--fs-lg);
  color: rgba(255, 255, 255, 0.9);
  line-height: var(--lh-relaxed);
  margin: 0;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* Industry Content Section */
.industry-content-section {
  position: relative;
  padding: 80px 0 100px;
  background: var(--bg-primary);
}

.industry-content {

  background: var(--color-white);
  padding: 30px 40px;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
}

body.dark-mode .industry-content {
  background: var(--color-surface);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.industry-featured-image {
  margin: 0 0 50px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
}

article.industry-content.entry-content img, .industry-featured-image img {
    margin: auto;
	box-shadow: 0 10px 20px rgba(15, 23, 42, 0.16);
}

.industry-detail-thumbnail {
  width: 100%;
  height: auto;
  display: block;
}

.industry-content.entry-content {
  font-size: var(--fs-lg);
  line-height: var(--lh-relaxed);
  color: var(--color-text);
/*   color: var(--color-secondary); */
}

.industry-content.entry-content > * + * {
  margin-top: 1.2em;
}

.industry-content.entry-content h2 {
  font-family: var(--font-primary);
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  margin-top: 1.5em;
  margin-bottom: 0.8em;
  line-height: var(--lh-tight);
}

.industry-content.entry-content h3 {

  font-size: var(--fs-2xl);
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
  margin-top: 1.8em;
  margin-bottom: 0.7em;
}

.industry-content.entry-content ul,
.industry-content.entry-content ol {
  padding-left: 1.5em;
  line-height: 18px;
  margin-top: 1em;
}

.industry-content.entry-content li {
  margin-top: 0.5em;
}

article.industry-content.entry-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color-light);
    border-radius: 24px;
    padding: 48px;
}

[data-theme="dark"] .industry-content.entry-content img.emoji {
    filter: invert(1);
}

/* Industry CTA Section */
.industry-cta-section {
  max-width: 920px;
  margin: 60px auto 0;
  padding: 0 60px;
}

.industry-cta-card {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(99, 102, 241, 0.12));
  border: 1px solid var(--border-color-light);
  border-radius: 24px;
  padding: 48px 40px;
  text-align: center;
}

body.dark-mode .industry-cta-card {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(99, 102, 241, 0.16));
}

.industry-cta-title {

  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  margin: 0 0 16px;
}

.industry-cta-card p {
  font-size: var(--fs-lg);
  color: var(--color-secondary);
  line-height: var(--lh-relaxed);
  margin: 0 0 32px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.industry-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: white;
  background: var(--color-accent);
  border: none;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.industry-cta-button:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(59, 130, 246, 0.4);
}

/* Related Industries */
.related-industries {
  max-width: 920px;
  margin: 80px auto 0;
  padding: 60px 60px 0;
  border-top: 1px solid var(--border-color-light);
}

.related-industries-title {

  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  margin: 0 0 36px;
  text-align: center;
}

.related-industries-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .related-industries-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.related-industry-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color-light);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.related-industry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.15);
}

.related-industry-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.related-industry-link:hover {
  text-decoration: none;
}

.related-industry-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(99, 102, 241, 0.2));
}

.related-industry-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.related-industry-card:hover .related-industry-thumbnail {
  transform: scale(1.08);
}

.related-industry-content {
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.related-industry-title {

  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
  margin: 0;
  line-height: var(--lh-tight);
}

.related-industry-arrow {
  font-size: var(--fs-xl);
  color: var(--color-accent);
  transition: transform 0.3s ease;
}

.related-industry-card:hover .related-industry-arrow {
  transform: translateX(4px);
}

@media (max-width: 767px) {
  .industry-hero {
    padding: 100px 0 70px;
  }

  .industry-hero-title {
    font-size: var(--fs-3xl);
  }

  .industry-content-section {
    padding: 50px 0 70px;
  }

  .industry-content {
    padding: 40px 24px;
  }

  .industry-cta-section {
    padding: 0 24px;
  }

  .industry-cta-card {
    padding: 36px 24px;
  }

  .industry-cta-title {
    font-size: var(--fs-2xl);
  }

  .related-industries {
    margin-top: 60px;
    padding: 50px 24px 0;
  }

  .related-industries-title {
    font-size: var(--fs-2xl);
  }
}

/* ========================================
   Product Detail Page
   ======================================== */

/* Product Hero */
.product-hero {
  position: relative;
  padding: 160px 0 120px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(59, 130, 246, 0.88)), 
              var(--overlap-hero-image, url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg"/>')),
              linear-gradient(135deg, #0f1724, #1e293b);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.product-hero-backdrop {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 40% 60%, rgba(59, 130, 246, 0.2), transparent 65%),
              radial-gradient(circle at 70% 30%, rgba(99, 102, 241, 0.15), transparent 60%);
  pointer-events: none;
}

.product-hero-inner {
  position: relative;
  z-index: 1;
}

.product-hero-content {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.product-hero-kicker {
  display: inline-block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
  padding: 6px 16px;
  background: rgba(59, 130, 246, 0.2);
  border-radius: 20px;
  backdrop-filter: blur(8px);
}

.product-hero-title {

  font-size: var(--fs-5xl);
  font-weight: var(--fw-bold);
  color: white;
  line-height: var(--lh-tight);
  margin: 0 0 28px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

@media (min-width: 1024px) {
  .product-hero-title {
    font-size: var(--fs-6xl);
  }
}

.product-hero-subtitle {
  font-size: var(--fs-xl);
  color: rgba(255, 255, 255, 0.92);
  line-height: var(--lh-relaxed);
  margin: 0 0 36px;
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
}

.product-hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.product-hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: white;
  background: var(--color-accent);
  border: 2px solid var(--color-accent);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.4);
}

.product-hero-button:hover {
  background: #2563eb;
  border-color: #2563eb;
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(59, 130, 246, 0.5);
}

.product-hero-button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: white;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.product-hero-button-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
}

/* Product Content Section */
.product-content-section {
  position: relative;
  padding: 80px 0 100px;
  background: transparent;
}

/* Product Content */
.product-content {
  position: relative;
  /* max-width: 920px; */
  margin: 0 auto;
}

.product-featured-image {
  margin: 0 0 48px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.15);
  /* background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(99, 102, 241, 0.15)); */
}

.product-detail-thumbnail {
  width: 100%;
  height: auto;
  display: block;
}

.product-content.entry-content {
  font-size: var(--fs-lg);
  line-height: var(--lh-relaxed);
  color: var(--color-text);
  /* color: var(--color-secondary); */
}

article.product-content.entry-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color-light);
    border-radius: 24px;
    padding: 48px;
}

.product-content.entry-content > * + * {
  margin-top: 1.2em;
}

.product-content.entry-content h2 {

  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  margin-top: 2.2em;
  margin-bottom: 0.8em;
  line-height: var(--lh-tight);
  scroll-margin-top: 100px;
}

.product-content.entry-content h3 {

  font-size: var(--fs-2xl);
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
  margin-top: 1.8em;
  margin-bottom: 0.7em;
}

.product-content.entry-content h4 {
  font-size: var(--fs-xl);
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
  margin-top: 1.6em;
  margin-bottom: 0.6em;
}

.product-content.entry-content ul,
.product-content.entry-content ol {
  padding-left: 1.5em;
  margin-top: 1em;
  line-height: 18px;
}

.product-content.entry-content li {
  margin-top: 0.5em;
  padding-left: 0.3em;
}

.product-content.entry-content blockquote {
  border-left: 4px solid var(--color-accent);
  padding-left: 1.5em;
  margin-left: 0;
  font-style: italic;
  color: var(--color-secondary);
  background: rgba(59, 130, 246, 0.05);
  padding: 1.2em 1.5em;
  border-radius: 8px;
}

.product-content.entry-content img {
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
  margin: auto;
}

/* Product CTA Section */
.product-cta-section {
  max-width: 920px;
  margin: 60px auto 0;
}

.product-cta-card {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(99, 102, 241, 0.12));
  border: 1px solid var(--border-color-light);
  border-radius: 24px;
  padding: 48px 40px;
  text-align: center;
}

.product-cta-title {

  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  margin: 0 0 16px;
}

.product-cta-card p {
  font-size: var(--fs-lg);
  color: var(--color-secondary);
  line-height: var(--lh-relaxed);
  margin: 0 0 32px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.product-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: white;
  background: var(--color-accent);
  border: none;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.product-cta-button:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(59, 130, 246, 0.4);
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  

  .product-hero-title {
    font-size: var(--fs-3xl);
  }

  .product-content-section {
    padding: 60px 0 80px;
  }

  .product-content.entry-content h2 {
    font-size: var(--fs-2xl);
  }

  .product-cta-card {
    padding: 36px 24px;
  }

  .product-cta-title {
    font-size: var(--fs-2xl);
  }
}

/* Overlap menu visual: give navbar semi-translucent white bg on scroll (JS can add class) */
.nav-scrolled .main-navigation a{color:#0b1724}

/* =============================================
   Products Page Template (page-products.php)
   ============================================= */

.products-page-hero {
  position: relative;
  padding: 140px 0 100px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.products-page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(30, 41, 59, 0.88));
  z-index: 1;
}

.products-page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.products-page-hero-title {

  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: var(--fw-bold);
  color: var(--color-white);
  margin: 0 0 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.products-page-hero-excerpt {
  font-size: 1.25rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.products-archive-section {
  position: relative;
  padding: 80px 0 100px;
  background: var(--bg-primary);
}

.products-archive-intro {
  max-width: 760px;
  margin: 0 auto 60px;
  text-align: center;
}

.products-archive-intro.entry-content > * {
  margin-left: auto;
  margin-right: auto;
}

.products-archive-intro.entry-content > * + * {
  margin-top: 1.4em;
}

.products-archive-grid {
  display: grid;
  gap: 32px;
  margin-top: 24px;
}

@media (min-width: 640px) {
  .products-archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .products-archive-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.products-archive-card {
  position: relative;
  background: var(--bg-card);
  border-radius: 20px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  animation: productCardReveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--product-delay, 0s);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 4px 16px rgba(15, 23, 42, 0.08),
    0 2px 6px rgba(15, 23, 42, 0.04);
}

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

.products-archive-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: var(--color-gradient);
  opacity: 0;
  border-radius: inherit;
  z-index: 0;
  transition: opacity 0.4s ease;
}

.products-archive-card:hover,
.products-archive-card:focus-within {
  transform: translateY(-8px);
  box-shadow: 
    0 24px 56px rgba(59, 130, 246, 0.15),
    0 12px 28px rgba(15, 23, 42, 0.12);
}

.products-archive-card:hover::before,
.products-archive-card:focus-within::before {
  opacity: 0.15;
}

body.dark-mode .products-archive-card {
  box-shadow: 
    0 4px 16px rgba(0, 0, 0, 0.2),
    0 2px 6px rgba(0, 0, 0, 0.15);
}

body.dark-mode .products-archive-card:hover,
body.dark-mode .products-archive-card:focus-within {
  box-shadow: 
    0 24px 56px rgba(59, 130, 246, 0.25),
    0 12px 28px rgba(0, 0, 0, 0.3);
}

.products-archive-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
  position: relative;
  z-index: 1;
}

.products-archive-card-link:hover,
.products-archive-card-link:focus-visible {
  text-decoration: none;
  outline: none;
}

.products-archive-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(99, 102, 241, 0.18));
}

.products-archive-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.products-archive-card:hover .products-archive-card-image,
.products-archive-card:focus-within .products-archive-card-image {
  transform: scale(1.08);
}

.products-archive-card-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.3));
}

.products-archive-card-initial {
  font-size: 3.5rem;
  font-weight: var(--fw-bold);
  color: var(--color-white);

  opacity: 0.95;
}

.products-archive-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.12);
  transition: all 0.3s ease;
}

body.dark-mode .products-archive-card-badge {
  background: rgba(30, 41, 59, 0.9);
}

.products-archive-card:hover .products-archive-card-badge,
.products-archive-card:focus-within .products-archive-card-badge {
  transform: rotate(12deg) scale(1.1);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.25);
}

.products-archive-card-content {
  display: flex;
  flex-direction: column;
  padding: 28px;
  flex: 1;
}

.products-archive-card-title {

  font-size: 1.5rem;
  font-weight: var(--fw-bold);
  line-height: 1.3;
  color: var(--color-heading);
  margin: 0 0 12px;
  transition: color 0.3s ease;
}

.products-archive-card:hover .products-archive-card-title,
.products-archive-card:focus-within .products-archive-card-title {
  color: var(--color-accent);
}

.products-archive-card-excerpt {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--color-text-light);
  margin: 0 0 auto;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.products-archive-card-footer {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color-light);
}

.products-archive-card-link-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: var(--fw-semibold);
  color: var(--color-accent);
  font-size: 0.9375rem;
  transition: gap 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.products-archive-card:hover .products-archive-card-link-text,
.products-archive-card:focus-within .products-archive-card-link-text {
  gap: 12px;
}

.products-archive-card-arrow {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.products-archive-card:hover .products-archive-card-arrow,
.products-archive-card:focus-within .products-archive-card-arrow {
  transform: translateX(4px);
}

.products-pagination {
  margin-top: 64px;
  display: flex;
  justify-content: center;
}

.products-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.products-pagination .page-numbers li {
  list-style: none;
}

.products-pagination a.page-numbers,
.products-pagination span.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  border-radius: 12px;
  font-weight: var(--fw-semibold);
  font-size: 0.9375rem;
  color: var(--color-text);
  background: var(--bg-card);
  border: 1px solid var(--border-color-light);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.06);
}

.products-pagination a.page-numbers:hover {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(59, 130, 246, 0.25);
}

.products-pagination span.page-numbers.current {
  background: var(--color-gradient);
  color: var(--color-white);
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
}

.products-pagination .page-numbers.prev,
.products-pagination .page-numbers.next {
  padding: 0;
  width: 44px;
}

.products-pagination .page-numbers.prev svg,
.products-pagination .page-numbers.next svg {
  display: block;
}

.products-pagination .page-numbers.dots {
  border: none;
  background: transparent;
  box-shadow: none;
  color: var(--color-text-light);
  cursor: default;
}

.products-archive-empty {
  text-align: center;
  padding: 80px 24px;
  max-width: 480px;
  margin: 0 auto;
}

.products-archive-empty-icon {
  margin: 0 auto 24px;
  color: var(--color-text-light);
  opacity: 0.5;
}

.products-archive-empty-title {

  font-size: 1.875rem;
  font-weight: var(--fw-bold);
  color: var(--color-heading);
  margin: 0 0 12px;
}

.products-archive-empty-text {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--color-text-light);
  margin: 0;
}

@media (max-width: 767px) {
  .products-page-hero {
    padding: 120px 0 80px;
  }

  .products-page-hero-title {
    font-size: 2.25rem;
  }

  .products-page-hero-excerpt {
    font-size: 1.0625rem;
  }

  .products-archive-section {
    padding: 60px 0 80px;
  }

  .products-archive-grid {
    gap: 24px;
  }

  .products-archive-card-content {
    padding: 24px;
  }

  .products-archive-card-title {
    font-size: 1.25rem;
  }

  .products-pagination {
    margin-top: 48px;
  }

  .products-pagination a.page-numbers,
  .products-pagination span.page-numbers {
    min-width: 40px;
    height: 40px;
    font-size: 0.875rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .products-archive-card {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .products-archive-card:hover {
    transform: none;
  }

  .products-archive-card-image {
    transition: none;
  }
}

[data-theme="dark"] .elementor-element-1cf93e6 {
	background: #39435a !important;
}

[data-theme="dark"] .elementor-widget-text-editor {
    color: #ffffffb3 !important;
}

section.single-post-comments {
    display: none;
}

/* Contact us page */
.wpforms-field-label {
    color: #000000 !important;
}

.wpforms-form ::placeholder {
    color: #000000 !important;
}

[data-theme="dark"] .contact-form .wpforms-field-label {
    color: #fff !important;
}

/* Modal popup */
.wpform-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  font-family: inherit;
}

/* Overlay */
.wpform-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

/* Modal content container */
.wpform-modal__content {
  position: relative;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  margin: auto;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.25);
  overflow-y: auto;
}

/* Close button */
.wpform-modal__close {
  position: absolute;
  right: 12px;
  top: 8px;
  background: transparent;
  border: none;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.wpform-modal__content::-webkit-scrollbar {
  width: 6px;
}

.wpform-modal__content::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.2);
  border-radius: 3px;
}

.wpform-modal.is-open {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Vertical Social Icons */
.vertical-social-icons {
  position: fixed !important;
  left: 24px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 16px;
  z-index: 99999 !important;
  padding: 20px 12px;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
}

body.dark-mode .vertical-social-icons {
  background: rgba(30, 30, 30, 0.98);
}

.vertical-social-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid rgba(0, 0, 0, 0.1);
  display: flex !important;
  align-items: center;
  justify-content: center;
  color: #1a1a1a;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

body.dark-mode .vertical-social-icon {
  background: #2a2a2a;
  border-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.vertical-social-icon:hover {
  transform: scale(1.15);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.25);
}

.vertical-social-icon.facebook:hover {
  background: #1877f2;
  border-color: #1877f2;
  color: var(--color-white);
}

.vertical-social-icon.linkedin:hover {
  background: #0a66c2;
  border-color: #0a66c2;
  color: var(--color-white);
}

.vertical-social-icon.twitter:hover {
  background: #1da1f2;
  border-color: #1da1f2;
  color: var(--color-white);
}

.vertical-social-icon.instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: transparent;
  color: var(--color-white);
}

.vertical-social-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Responsive - Hide on tablets and mobile */
@media (max-width: 1024px) {
  .vertical-social-icons {
    display: none !important;
  }
}

/* Form Styles */
.booking-form .wpforms-head-container {
    padding-bottom: 10px !important;
}

div.wpforms-container-full.wpforms-container.booking-form input {
    height: 2.5rem;
    border-radius: calc(0.75rem - 2px);
}

.wpforms-container.wpforms-container-full.contact-form input, .wpforms-container.wpforms-container-full.contact-form textarea {
    height: 2.5rem;
    border-radius: calc(0.75rem - 2px);
}

.booking-form label.wpforms-field-label {
    font-size: 14px !important;
    margin-bottom: 10px !important;
}

.wpforms-container.booking-form .wpforms-field {
    padding: 12px 0;
}

div.wpforms-container-full .wpforms-submit.booking-form-btn, div.wpforms-container-full.contact-form .wpforms-submit, .nf-field-container.submit-container input {
    border-radius: 999px;
    background: var(--color-gradient);
    color: var(--color-white);
    box-shadow: 0 12px 28px rgba(24, 155, 254, 0.28);
    padding: 12px 26px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
	cursor: pointer;
}

.nf-form-fields-required {
    display: none;
}

.nf-field-container {
    width: 100% !important;
}

.wpforms-head-container {
    padding-bottom: 10px !important;
}

.nf-form-content .nf-field-container {
    margin-bottom: 10px;
}

.nf-field-element input, .nf-field-element textarea, .nf-field-element select {
    border-radius: calc(0.75rem - 2px);
    padding: 10px;
    border: 1px solid #00000040 !important;
}

[data-theme="dark"] .nf-field-container .nf-field-label label{
	color: #000000 !important;
}

.field-wrap.html-wrap p {
    color: #000;
}

.nf-form-content .nf-field-element textarea {
    height: 130px;
}

.nf-form-title h3 {
    color: #000;
    font-family: inherit;
}
