/* ============================================
   SHARED CSS — Reset, Typography, Header
   (Utility Bar + Main Nav + Mega Menu),
   Footer, Utilities
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --color-primary: #0f1b2d;
  --color-primary-light: #1a2d4a;
  --color-accent: #388329;
  --color-accent-hover: #2d6b22;
  --color-accent-light: rgba(56, 131, 41, 0.12);
  --color-accent-glow: rgba(56, 131, 41, 0.4);
  --color-secondary: #21ADE4;
  --color-secondary-hover: #1a9ad0;
  --color-secondary-glow: rgba(33, 173, 228, 0.4);
  --color-highlight: #ffc732;
  --color-highlight-hover: #e6aa1a;
  --color-highlight-glow: rgba(255, 199, 50, 0.4);
  --color-text: #e5e7eb;
  --color-text-light: #9ca3af;
  --color-text-inverse: #f1f5f9;
  --color-bg: #0f172a;
  --color-bg-alt: #111827;
  --color-bg-dark: #0f172a;
  --color-bg-card: #1e293b;
  --color-border: #334155;
  --color-success: #10b981;
  --color-gradient-start: #0f172a;
  --color-gradient-end: #111827;

  /* Header/Nav theme variables (default = light header) */
  --header-bg: #ffffff;
  --header-text: #475569;
  --header-text-hover: #111827;
  --header-border: #e2e8f0;
  --header-control: #64748b;
  --header-control-hover-bg: #f1f5f9;
  --header-dropdown-bg: #ffffff;
  --header-dropdown-hover: #f1f5f9;
  --header-heading: #94a3b8;
  --header-product-name: #111827;
  --header-product-desc: #94a3b8;
  --header-toggle-bar: #334155;
  --topbar-bg: #f8fafc;
  --topbar-text: #64748b;
  --topbar-text-hover: #111827;
  --topbar-border: #e2e8f0;
  --topbar-social: #94a3b8;
  --topbar-social-border: #e2e8f0;

  --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  --container-max: 1440px;
  --container-wide: 1440px;
  --topbar-height: 40px;
  --nav-height: 72px;
  --header-total-height: 112px; /* topbar + nav */
}

/* --- Light Theme (content areas) --- */
[data-theme="light"] {
  --color-text: #1e293b;
  --color-text-light: #64748b;
  --color-bg: #ffffff;
  --color-bg-alt: #f8fafc;
  --color-bg-card: #ffffff;
  --color-border: #e2e8f0;
}

[data-theme="light"] h1,
[data-theme="light"] h2,
[data-theme="light"] h3,
[data-theme="light"] h4,
[data-theme="light"] h5,
[data-theme="light"] h6 {
  color: var(--color-primary);
}

/* --- Dark Theme (header overrides) --- */
[data-theme="dark"] {
  --header-bg: #0f172a;
  --header-text: #94a3af;
  --header-text-hover: #ffffff;
  --header-border: #1e293b;
  --header-control: #94a3af;
  --header-control-hover-bg: #1e293b;
  --header-dropdown-bg: #1e293b;
  --header-dropdown-hover: #334155;
  --header-heading: #64748b;
  --header-product-name: #f1f5f9;
  --header-product-desc: #64748b;
  --header-toggle-bar: #f1f5f9;
  --topbar-bg: #0b1120;
  --topbar-text: #94a3af;
  --topbar-text-hover: #ffffff;
  --topbar-border: #1e293b;
  --topbar-social: #64748b;
  --topbar-social-border: #1e293b;
}


/* --- Reset --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); letter-spacing: -0.01em; }
h4 { font-size: 1.25rem; }

/* .download-pdf-btn{
  display: none;
} */
.table thead th{
      border-bottom: none;
}
html.popup-lock,
body.popup-lock {
    overflow: hidden !important;
    touch-action: none;
}

table td, table th, .table td, .table th {
    border: 1px solid #9a9a9a;
}
.hs-card--blue .hs-card__icon svg path {
    fill: #21ADE4;
}
.download-popup.jupiterx-popup--visible{
  opacity: 1 !important;
  pointer-events: all !important;
}
.download-popup .jupiterx-popup__inner {
    height: 100% !important;
}
.form-d-flex {
    display: flex;
    gap: 25px;
}
.form-d-flex p{
  margin-bottom: 0;
}
/* Text highlight for important words */
.text-highlight {
  color: #000;
  font-weight: 600;
}
.value-icon .icon--green svg path{
      fill: #388329;
}
.acwp-toolbar {
    left: auto !important;
    right: 10% !important;
}
div#acwp-toolbar-btn-wrap,
.acwp-footer {
    display: none;
}
div#acwp-toolbar-module {
    background: var(--header-dropdown-bg);
    border: 1px solid var(--header-border);
    border-radius: var(--radius-md);
    padding: 20px;
    min-width: 220px;
    z-index: 1002;
    transform: translateY(-8px);
    transition: all var(--transition-base);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}
#acwp-toolbar.acwp-style-default .acwp-toggler label{
  background-color: transparent;
}
.acwp-heading {
    padding: 0;
    background-color: transparent;
}
#acwp-close-toolbar{
  color: var(--color-primary);
  top: 15px;
  right: 15px;
}
.acwp-switch:before{
  width: 20px;
  height: 20px;
}
input:checked+.acwp-switch:before {
    -webkit-transform: translateX(16px);
    -moz-transform: translateX(16px);
    -ms-transform: translateX(16px);
    -o-transform: translateX(16px);
    transform: translateX(16px);
}
.acwp-switcher{
    height: 24px;
    width: 40px;
}
.acwp-heading p.acwp-title {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    margin-bottom: 14px;
    font-family: var(--font-heading);
}
.acwp-togglers label{
  padding-right: 0 !important;
  padding-left: 0 !important;
  font-family: var(--font-heading);
}
.acwp-togglers label i{
  font-size: 18px;
}
#acwp-toolbar.acwp-style-default .acwp-toggler {
  border-bottom: 1px solid rgba(36, 36, 36, 0.1);
  min-height: 52px;
}
.acwp-togglers label span{
  font-size: 14px;
}
.acwp-toolbar.acwp-toolbar-show {
    top: 40px;
    right: 10%;
    left: auto;
}
.wpcf7-not-valid-tip,
.wpcf7-response-output{
    display:none !important;
}
.custom-error{
    display:block;
    margin-top:6px;
    color:#dc3232;
    font-size:14px;
    line-height:1.4;
}
#acwp-toolbar-btn{
  background: #62B6511F;
  border:1px solid #62B6511F;
  border-radius: 6px;
  width: 35px;
  height: 35px;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
#acwp-toolbar-btn:hover{
  border-color: #62B651 !important;
}
body.acwp-contrast #acwp-toolbar-btn svg, #acwp-toolbar-btn svg{
  width: 15px;
}
ul.cpel-switcher__list{
      background-color: #fff !important;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 8px 0!important;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
    min-height: 105px;
    display: none !important;
}
li span.cpel-switcher__name{
  padding-right: 10px;
}
.cpel-switcher__toggle.cpel-switcher__toggle--on + .cpel-switcher__list{
  display: flex !important;
}


#jupiterx-popups-8960.jupiterx-popup--visible{
  display:block !important;
  opacity:1 !important;
  z-index: 10000 !important;
  pointer-events: all;
}
#jupiterx-popups-8960 .jupiterx-popup__inner{
  height: 100vh !important;
}
#jupiterx-popups-8960 .jupiterx-popup__container .jupiterx-popup__container-inner {
    height: auto;
}
a.pdf-download-btn {
    min-width: 310px;
    background-color: var(--e-global-color-c75af0e);
    font-family: 'Poppins';
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    line-height: 26px !important;
    fill: var(--e-global-color-7293950);
    color: var(--e-global-color-7293950);
    box-shadow: 0px 4px 20px 0px rgba(255, 198.99999999999994, 49.99999999999999, 0.4) !important;
    border-radius: 6px 6px 6px 6px;
    padding: 14px 32px 14px 32px;
    display: inline-block;
        font-size: 0.95rem;
    font-weight: 600;
    line-height: 26px;
        transition: 0.3s;
}
a.pdf-download-btn:hover{
      transition: 0.3s;
  transform: translateY(-8px);
  background-color: var(--e-global-color-254d84e);
  box-shadow: 0px 8px 32px 0px rgba(255, 198.99999999999994, 49.99999999999999, 0.4);
}
.download-pdf-btn {
    display: flex;
    flex-wrap: wrap !important;
    gap: 15px !important;
}
a.bd-related-card:hover {
    text-decoration: none;
}
ul.submenu > li > a.raven-submenu-item{
	transition:0.2s ease;
}
ul.submenu > li > a:hover.raven-submenu-item {
    padding-left: 26px !important;
		transition:0.2s ease;
}
ul.raven-adnav-menu ul.submenu{
	background-color: #fff !important;
	min-width: 200px !important;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 8px 0 !important;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
}
.icon--green svg {
    stroke: #388329;
}
.icon--green svg path{
    stroke: #388329;
}
.services-logo img.swiper-slide-image {
    width: 150px;
    text-align: center;
    margin: auto;
    height: 80px;
    object-fit: contain;
}
.mega-menu-item,
ul.submenu > li > a.raven-submenu-item{
  font-family: "Poppins";
}
.nav--pinned {
    top: 0 !important;
}
.nav{
  position: fixed !important;
    top: 40px;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3 !important;
}
#darkModeToggle svg{
  color: #64748b;
}

.yellow-bg .swiper{
  padding-bottom: 30px;
}
/* Team Card */
.overname-team.card-layout--creative .team-member--description{
    top: auto !important;
    bottom: 20px !important;
}
.overname-team .team-member--image-wrapper {
    position: relative;
    z-index: 1;
}
.overname-team .team-member--content {
    position: relative;
    z-index: 2;
}
.overname-team .team-member{
    background-image: url(https://tm.tmsys.co.in/wp-content/uploads/2026/04/team-bg.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #DFE1E3;
}

.normal-card .team-member--image-wrapper{
  background-image: url(https://tm.tmsys.co.in/wp-content/uploads/2026/04/team-bg.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #DFE1E3;
}
.normal-card .team-member--content{
  padding: 10px 0 0 0 !important;
}
.normal-card .team-member{
  position: relative;
}
.normal-card .social-icons-wrapper{
  position: absolute;
  right: 5px;
  top: 5px;
}

.gallery figure.gallery-item,
.gallery figure.gallery-item .gallery-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
.gallery figure.gallery-item .gallery-icon{    
    height: 100%;
}
.gallery figure.gallery-item .gallery-icon img{
  height: 110px;
  object-fit: contain;
  padding: 10px;
}
/* --- Layout Utilities --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}
/* Target all required page templates */
.page-template-archive-vacancies,
.single-vacancies,
.page-template-blog-template,
.single-post,
.page-template-archive-success-stories,
.single-success-storie {

  /* Full-width container */
  .container {
    max-width: 100%;
    padding: 0;
    font-family: "Poppins", Sans-serif;
  }

  /* Remove row margin */
  .container .row {
    margin: 0;
  }

  /* Remove inner padding */
  .container .row .jupiterx-primary {
    padding: 0;
  }

  /* Add side spacing for wide container */
  .container--wide {
    padding: 0 20px;
  }
}
.container--wide {
  max-width: var(--container-wide);
  margin: 0 auto;
}

.section {
  padding: 100px 0;
}

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

.section--dark {
  background-color: var(--color-bg-dark);
  color: var(--color-text-inverse);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--color-text-inverse);
}

.section--dark p {
  color: rgba(241, 245, 249, 0.75);
}

.section__header {
  text-align: center;
  margin: 0 auto 60px;
}

.section__header p {
  margin-top: 16px;
}

.section__label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-secondary);
  margin-bottom: 12px;
}
.trusted__logo .swiper-wrapper {
    transition-timing-function: linear !important;
}
.about-counters .elementor-counter-number-suffix{
  color: var(--color-accent);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  cursor: pointer;
  white-space: nowrap;
}

.btn--primary {
  background-color: var(--color-highlight);
  color: #0f172a;
}

.btn--primary:hover {
  background-color: var(--color-highlight-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--color-highlight-glow);
}

.btn--secondary {
  background-color: transparent;
      color: #21ade4;
    border: 1.5px solid rgb(33 173 228);
}

.btn--secondary:hover {
  border-color: rgb(33 173 228);
  background-color: rgba(33, 173, 228, 0.08);
  color: #21ade4;
  transform: translateY(-2px);
}

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

.btn--outline:hover {
  background-color: var(--color-highlight);
  color: #111827;
  border-color: var(--color-highlight);
  transform: translateY(-2px);
}

.btn--dark {
  background-color: var(--color-primary);
  color: #fff;
}

.btn--dark:hover {
  background-color: var(--color-primary-light);
  transform: translateY(-2px);
}

.btn__arrow {
  transition: transform var(--transition-fast);
}

.btn:hover .btn__arrow {
  transform: translateX(4px);
}



/* Blog */
.blog-filter-wrap{
  overflow:hidden;
  width: 100%;
}

.blog-filter-scroll{
  display:flex;
  gap:12px;
  overflow-x:auto;
  scrollbar-width:none;
  -ms-overflow-style:none;
}

.blog-filter-scroll::-webkit-scrollbar{
  display:none;
}

.blog-filter-tab{
    flex: 0 0 auto;
    border: none;
    color: #64748b;
    padding: 7px 16px;
    border-radius: 999px;
    cursor: pointer;
    transition: .3s;
    font-size: 12px;
    font-weight: 500;
}

.blog-filter-tab:hover{
  background:#62b651;
  color:#fff;
}

.blog-filter-tab.active{
  background:#62b651;
  color:#fff;
}
/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

.reveal--visible img{
  width: 100%;
      height: 100%;
    object-fit: contain;
}
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }

/* ============================================
   ACCESSIBILITY PANEL
   ============================================ */
.a11y-panel {
  position: fixed;
  top: calc(var(--topbar-height) + var(--nav-height) + 8px);
  right: 40px;
  background: var(--header-dropdown-bg);
  border: 1px solid var(--header-border);
  border-radius: var(--radius-md);
  padding: 20px;
  min-width: 220px;
  z-index: 1002;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition-base);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.a11y-panel--open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.a11y-panel__title {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--header-heading);
  margin-bottom: 14px;
}

.a11y-panel__option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--header-border);
}

.a11y-panel__option:last-child {
  border-bottom: none;
}

.a11y-panel__label {
  font-size: 0.88rem;
  color: var(--header-text);
}

.a11y-panel__btn {
  display: flex;
  align-items: center;
  gap: 6px;
}

.a11y-panel__btn button {
  width: 30px;
  height: 30px;
  border-radius: 4px;
  border: 1px solid var(--header-border);
  color: var(--header-control);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.a11y-panel__btn button:hover {
  background: rgba(56, 131, 41, 0.08);
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* ============================================
   RESPONSIVE
   ============================================ */


/* Event */
.event-item .event-date{
  max-height: 65px;
  max-width: 65px;
  min-width: 65px;
  background: linear-gradient(135deg, #388329, #21ADE4);
}
.event-item .event-date .month-name{
  line-height: 12px;
}
.topbar .elementor-social-icon svg{
  width: 13px !important;
}
.topbar .elementor-social-icon{
  height: 30px !important;
  width: 30px !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.topbar ul.elementor-icon-list-items.elementor-inline-items{
  display: flex;
  list-style: none;
}

.raven-posts-carousel a.raven-post-title-link{
  width: 100%;
  display: block;
   overflow: hidden;
   display: -webkit-box;
   -webkit-line-clamp: 1; /* number of lines to show */
           line-clamp: 1; 
   -webkit-box-orient: vertical;
}
.wpcf7-form-control-wrap[data-name="fname"] 
.wpcf7-not-valid-tip{
  display:none !important;
} 
.wpcf7 form.sent .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output{
  display:block !important;
}

span.custom-email-error, .custom-name-error {
    color: #dc3232;
}
@media (max-width: 1100px) {
  .nav__center {
    display: none;
  }

  .nav__right .nav__divider,
  .nav__right .nav__control {
    display: none;
  }

  .nav__toggle {
    display: flex;
  }

}
@media (min-width:300px) and (max-width: 1024px) {
  
  [data-theme="dark"] ul.raven-adnav-menu li.menu-item>a.raven-link-item {
        background-color: transparent !important;
  }
  [data-theme="dark"] nav.raven-adnav-menu-mobile .raven-adnav-menu > li:not(:last-child){
        border-color: #ffffff12 !important;
  }
  [data-theme="dark"] .raven-adnav-menu > li > a{
    color: #fff !important;
  }
  [data-theme="dark"] ul.raven-adnav-menu ul.submenu{
    box-shadow: none !important;
  }
  [data-theme="dark"] #darkModeToggleMobile:focus{
        background-color: #162526 !important;
  }
  [data-theme="dark"] .mega-menu-item .elementor-icon-box-content h3{
    color: #eaf1f6c7 !important;
  }
  .elementor-social-icon:hover {
    transform: none !important;
  }
  
}

@media (min-width:768px) and (max-width: 1024px) {
  .mega-menu-item .elementor-icon-box-title span{
    font-weight: 400 !important;
    color: #475569 !important;
  }
  ul.raven-adnav-menu ul.submenu{
    border-radius: 0;
  }
  [data-theme="dark"] .mega-menu-item .elementor-icon-box-title span{
    color: #eaf1f6c7 !important
  }
  
  .fab-stack{
    bottom: 65px !important;
  }
  
  .hs-wrap{
    padding-bottom: 20px;
  }
  nav.raven-adnav-menu-mobile.raven-adnav-menu-full-screen ul.raven-adnav-menu{
    max-height: 90vh !important;
  }
  .nav.nav--pinned{
    top: 0 !important;
  }
  .nav{
    top: 50px !important;
  }
  .raven-adnav-menu-toggle-button.jupiterx-blur-background-surface {
    border-radius: 6px;
  }
  .book-meeting .elementor-icon-box-description {
    color: #fffffff5 !important;
  }
  .book-meeting .elementor-button-info {
    width: 270px;
  }
}
@media (max-width: 1024px) {
  
  .section {
    padding: 70px 0;
  }

  .footer__row {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer__brand {
    grid-column: 1 / -1;
    padding-right: 0;
  }

  .footer__topbar-left {
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .product-banner .button-group .elementor-widget{
    height: auto !important;
  }
  .product-banner .e-con-full:last-child .elementor-widget{
    height: 300px;
    display: flex;
    align-items: center;
  }
  #acwp-toolbar-btn{
    height: 29px;
    width: 29px;
  }
  .products-items h4{
    font-size: 18px;
    line-height: 26px;
  }
  .gallery figure.gallery-item .gallery-icon {
    width: 100%;
  }
  .gallery figure.gallery-item .gallery-icon img{
    height: 80px;
  }
  .elementor-image-gallery .gallery-item{
    width: 50% !important;
  }
  .normal-card{
    width: 100% !important;
  }
  html[lang="fr-FR"] .book_meeting span.elementor-button-text,
  html[lang="nl-NL"] .book_meeting span.elementor-button-text,
  html[lang="es-ES"] .book_meeting span.elementor-button-text {
      font-size: 10px;
  }
  .download-popup .jupiterx-popup__container {
    width: 90% !important;
    max-height: 90% !important;
  }
  a.pdf-download-btn{
    font-size: 12px !important;
    text-align: center;
    padding: 10px;
  }
  .ss-filter-select{
    width: 100%;
  }
  .products-hero__bg-pattern{
    height: auto !important;
  }
  ul.raven-adnav-menu li.menu-item>a.raven-link-item>span.link-text{
    width: 100%;
  }
  .ss-filter-bar{
    position: relative !important;
    top: 0 !important;
  }
  h1.products-hero__title {
    font-size: 1.5rem !important;
  }
  .ss-filter-bar__left{
        flex-direction: column;
    align-items: baseline !important;
  }
  .topbar svg.dark-mode-icon path{
    stroke: #94A3B8;
  }
  [data-theme="dark"] .topbar svg.dark-mode-icon path{
    stroke: #fff;
  }
  [data-theme="dark"] ul.raven-adnav-menu li.menu-item>a.raven-link-item{
    background-color: transparent !important;
  }
   .mySwiper .e-con.e-flex{
    flex-wrap: nowrap !important;
   }
  nav.raven-adnav-menu-mobile.raven-adnav-menu-full-screen ul.raven-adnav-menu{
    max-height: 85vh !important;
  }
  .raven-adnav-menu-close-button .raven-adnav-menu-close-icon{
    right: 25px !important;
    left: auto !important; 
  }
  nav.raven-adnav-menu-mobile ul.submenu > li > a.active-link{
    color: #2D6B22 !important;
    background-color: transparent !important;
  }
  .page-title-sec {
    padding-top: 15px;
  }
  ul.raven-adnav-menu ul.submenu{
    background-color: transparent !important;
    border-left: none !important;
    border-bottom: none !important;
    border-right: none !important;
    padding: 0 0 0 30px !important;
    box-shadow: none !important;
  }
  .mega-menu-item .elementor-icon-box-content h3{
    font-weight: 400 !important;
    font-size: 16px !important;
    color: #475569 !important;
  }
  .raven-menu-item.has-submenu .sub-arrow{
    right: 0 !important;
  }
  .mega-menu-item .elementor-icon-box-icon,
  .mega-menu-item .elementor-icon-box-content p{
    display: none !important;
  }
  .raven-link-item {
    padding: 20px 0 !important;
  }
  ul.raven-adnav-menu ul.submenu .raven-link-item{
    padding: 10px 0 !important;
  }
  .elementor-element nav.raven-adnav-menu-mobile ul.submenu > li.menu-item > a > *:first-child{
    margin-left: 0 !important;
  }
  nav.raven-adnav-menu-mobile.raven-adnav-menu-full-screen .raven-container{
    margin-top: 65px !important;
  }
  .nav__lang-btn svg{
    height: 20px;
    width: 20px;
  }
  .nav__lang-btn{
        padding: 7px 0px;
  }
  .topbar {
    display: block;
    height: auto;
  }
  .topbar__left{
    display: none;
  }
  :root {
    --topbar-height: 0px;
    --nav-height: 64px;
    --header-total-height: 64px;
  }

  .nav {
    top: 46px;
  }
  .topbar__right{
        width: 100%;
    justify-content: end;
  }
  .section {
    padding: 60px 0;
  }

  .container {
    padding: 0 20px;
  }

  .nav__inner {
    padding: 0 20px;
  }

  .section__header {
    margin-bottom: 40px;
  }

  .footer__row {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__topbar-inner {
    flex-direction: column;
    gap: 16px;
    text-align: left;
            align-items: baseline;
  }

  .footer__topbar-left {
            flex-direction: column;
        gap: 12px;
        align-items: baseline;
        width: 100%;
  }

  .footer__bottom-inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .footer__bottom-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }

  .mobile-nav {
    padding-top: calc(var(--nav-height) + 16px);
  }
}

/* ============================================
   ENQUIRY FORM — CTA Section (All Pages)
   ============================================ */
.enquiry-cta {
  padding: 100px 0;
  background: #f9fafb;
  position: relative;
  overflow: hidden;
}

.enquiry-cta__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.enquiry-cta__bg-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.04;
}

.enquiry-cta__bg-circle--1 {
  width: 500px;
  height: 500px;
  background: #388329;
  top: -200px;
  right: -100px;
}

.enquiry-cta__bg-circle--2 {
  width: 350px;
  height: 350px;
  background: #21ADE4;
  bottom: -150px;
  left: -100px;
}

.enquiry-cta__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Left column — CTA content */
.enquiry-cta__content {
  max-width: 480px;
}


.enquiry-cta__label-dot {
  width: 8px;
  height: 8px;
  background: #388329;
  border-radius: 50%;
  animation: enquiryPulse 2s ease-in-out infinite;
}

@keyframes enquiryPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.enquiry-cta__title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
  margin-bottom: 16px;
}

.enquiry-cta__title span {
  color: #388329;
}

.enquiry-cta__desc {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 32px;
}

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

.enquiry-cta__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: #374151;
  font-weight: 500;
}

.enquiry-cta__features li svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: #388329;
}

/* Right column — Form card */
.enquiry-form-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.03);
  border: 1px solid #f3f4f6;
}

.enquiry-form-card__title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 4px;
}

.enquiry-form-card__subtitle {
  font-size: 0.88rem;
  color: #9ca3af;
  margin-bottom: 28px;
}

.eq-form__group {
  margin-bottom: 18px;
  width: 100%;
}
.eq-form__group p{
  margin-bottom: 0;
}
.eq-form__label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 6px;
}

.eq-form__label .eq-form__optional {
  font-weight: 400;
  color: #374151;
  font-size: 0.8rem;
}

.eq-form__input,
.eq-form__select {
  width: 100%;
  padding: 11px 16px;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  font-size: 0.9rem;
  font-family: var(--font-primary);
  color: #111827;
  background: #fff;
  transition: all 0.2s ease;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  line-height: 1.2rem;
}

.eq-form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.eq-form__input:focus,
.eq-form__select:focus {
  border-color: #388329;
  box-shadow: 0 0 0 3px rgba(56, 131, 41, 0.1);
}

.eq-form__input::placeholder {
  color: #9ca3af;
}

.eq-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.eq-form__submit {
  width: 100%;
  padding: 13px 24px;
  background: #388329;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font-primary);
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
}

.eq-form__submit:hover {
  background: #2d6b22;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(56, 131, 41, 0.25);
}

.eq-form__submit svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.eq-form__submit:hover svg {
  transform: translateX(3px);
}

.eq-form__privacy {
  text-align: center;
  font-size: 0.78rem;
  color: #9ca3af;
  margin-top: 14px;
}

/* Hidden conditional field */
.eq-form__group--hidden {
  display: none;
}
span.wpcf7-spinner {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
}
/* Success / Error messages */
.enquiry-form .eq-form__message {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  display: none;
}

.enquiry-form .eq-form__message--success {
  display: block;
  background: rgba(16, 185, 129, 0.08);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.enquiry-form .eq-form__message--error {
  display: block;
  background: rgba(239, 68, 68, 0.08);
  color: #dc2626;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

/* ── Dark Theme ── */
[data-theme="dark"] .enquiry-cta {
  background: #111827;
}

[data-theme="dark"] .enquiry-cta__title {
  color: #f1f5f9;
}

[data-theme="dark"] .enquiry-cta__desc {
  color: #94a3b8;
}

[data-theme="dark"] .enquiry-cta__features li {
  color: #cbd5e1;
}


/* ── Responsive ── */
@media (max-width: 1024px) {
  .raven-adnav-menu-close-button .raven-adnav-menu-close-icon{
    left: auto !important;
    right: 15px;
  }
  nav.raven-adnav-menu-mobile.raven-adnav-menu-full-screen.raven-adnav-menu-active .raven-container {
    margin-top: 50px !important;
  }
  .raven-adnav-menu li > a.raven-menu-item:not(.active-link) span{
    width: 100%;
  }
  .mega-menu-item .elementor-icon-box-icon, .mega-menu-item .elementor-icon-box-content p {
       display: none !important;
  }
  nav.raven-adnav-menu-mobile .raven-adnav-menu li > a.raven-menu-item {
    padding: 14px 32px 14px 32px !important;
  }
  .raven-adnav-menu-full-screen .raven-menu-item.has-submenu .sub-arrow{
    right: 0 !important;
  }
  .enquiry-cta {
    padding: 70px 0;
  }

  .enquiry-cta__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .enquiry-cta__content {
    max-width: 100%;
    text-align: center;
  }

  .enquiry-cta__features {
    align-items: center;
  }
}

@media (max-width: 768px) {
  .enquiry-cta {
    padding: 60px 0;
  }

  .enquiry-form-card {
    padding: 28px;
  }

  .enquiry-form .eq-form__row {
    grid-template-columns: 1fr;
  }
}


/* ============================================
   VALUES PAGE — Core Values + Principles
   ============================================ */

/* ---- Section 1: Core Values ---- */
.vals-core {
  background: var(--color-bg);
}

.vals-core__grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: center;
}

.vals-core__intro .section__label {
  display: inline-block;
  margin-bottom: 16px;
}

.vals-core__intro h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 20px;
}

.vals-core__intro p {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
}

/* Left-side image */
.vals-core__img-wrap {
  position: relative;
  display: block;
}

.vals-core__img-frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.13);
}

.vals-core__img-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  border: 1.5px solid rgba(56, 131, 41, 0.18);
  z-index: 1;
  pointer-events: none;
}

.vals-core__img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.vals-core__img-frame:hover .vals-core__img {
  transform: scale(1.04);
}

.vals-core__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.3) 0%, transparent 55%);
  pointer-events: none;
  z-index: 1;
}

.vals-core__img-badge {
  position: absolute;
  bottom: -14px;
  right: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--color-highlight, #ffc732);
  color: #0f172a;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(255, 199, 50, 0.4);
  white-space: nowrap;
  z-index: 2;
}

.vals-core__img-badge svg {
  width: 15px;
  height: 15px;
  stroke: #0f172a;
  flex-shrink: 0;
}

/* 2-col card grid on right */
.vals-core__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.vals-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px 24px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.vals-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), #21ADE4);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.vals-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.vals-card:hover::before {
  transform: scaleX(1);
}

.vals-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(56,131,41,0.12) 0%, rgba(33,173,228,0.08) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vals-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-accent);
}

.vals-card__body h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 6px;
}

.vals-card__body p {
  font-size: 0.855rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ---- Section 2: Principles ---- */
.vals-principles {
  padding: 96px 0;
  background: var(--color-bg-alt);
  position: relative;
  overflow: hidden;
}

.vals-principles::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56,131,41,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.vals-principles__track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.vals-principle-card {
  position: relative;
  padding: 40px 32px 36px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.vals-principle-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.1);
}

.vals-principle-card__num {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  color: var(--color-accent);
  opacity: 0.12;
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  letter-spacing: -0.04em;
}

.vals-principle-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(56,131,41,0.14) 0%, rgba(33,173,228,0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border: 1px solid rgba(56,131,41,0.18);
}

.vals-principle-card__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--color-accent);
}

.vals-principle-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--color-heading);
}

.vals-principle-card p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}

.vals-principle-card__bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), #21ADE4);
}

/* Dark mode */
[data-theme="dark"] .vals-card,
[data-theme="dark"] .vals-principle-card {
  background: rgba(255,255,255,0.03);
}

/* Responsive */
@media (max-width: 1024px) {
  .vals-core__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .vals-core__img {
    height: 220px;
  }

  .vals-core__img-badge {
    bottom: -12px;
    right: 14px;
    font-size: 0.72rem;
    padding: 8px 13px;
  }

  .vals-core__cards {
    grid-template-columns: 1fr;
  }

  .vals-principles__track {
    grid-template-columns: 1fr;
  }

  .vals-principles {
    padding: 64px 0;
  }
}

/* ============================================
   ABOUT PAGE — Hero, Mission, Team,
   Values, Timeline
   ============================================ */
/* ============================================
   ABOUT PAGE — Hero, Mission, Team,
   Values, Timeline
   ============================================ */

/* --- Page Hero --- */
/* ============================================
   GLOBAL PAGE HERO — Reusable across all inner
   pages except Products & Services
   ============================================ */

.page-hero {
  position: relative;
  padding: 200px 0 100px;
  background: linear-gradient(135deg, var(--color-gradient-start) 0%, var(--color-gradient-end) 100%);
  overflow: hidden;
}

/* Circuit/node SVG background layer */
.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero__bg svg {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

/* Radial glow accent (kept for pages without SVG bg) */
.page-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(56, 131, 41, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}

.page-hero__breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition-fast);
}

.page-hero__breadcrumb a:hover {
  color: #fff;
}

.page-hero__breadcrumb span {
  color: rgba(255, 255, 255, 0.3);
}

.page-hero h1,
.page-hero__title {
  color: #fff !important;
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.1;
  font-weight: 800;
}

.page-hero__title span {
  color: #7dd460;
}

.page-hero p,
.page-hero__subtitle {
  color: rgba(241, 245, 249, 0.72);
  font-size: 1.15rem;
  max-width: 560px;
  line-height: 1.7;
}

/* Ensure company-hero__title is always white */
.company-hero__title {
  color: #fff !important;
}

/* --- Mission Section --- */
.mission__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.mission__content h2 {
  margin-bottom: 20px;
}

.mission__content p {
  margin-bottom: 16px;
}

.mission__content p:last-of-type {
  margin-bottom: 0;
}

.mission__visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.mission__stat-card {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--transition-base);
}

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

.mission__stat-card:nth-child(2) {
  transform: translateY(20px);
}

.mission__stat-card:nth-child(2):hover {
  transform: translateY(16px);
}

.mission__stat-card:nth-child(3) {
  transform: translateY(-10px);
}

.mission__stat-card:nth-child(3):hover {
  transform: translateY(-14px);
}

.mission__stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 8px;
}

.mission__stat-text {
  font-size: 0.85rem;
  color: var(--color-text-light);
}

/* --- Values Section --- */

.value-card:hover {
  transform: translateY(-4px);
}


/* --- Timeline Section --- */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-border);
  transform: translateX(-50%);
}

.timeline__item {
  position: relative;
  width: 50%;
  padding: 0 40px 60px;
}

.timeline__item:nth-child(odd) {
  left: 0;
  text-align: right;
  padding-right: 60px;
}

.timeline__item:nth-child(even) {
  left: 50%;
  text-align: left;
  padding-left: 60px;
}

.timeline__dot {
  position: absolute;
  top: 5px;
  width: 16px;
  height: 16px;
  background: var(--color-accent);
  border-radius: 50%;
  border: 3px solid var(--color-bg);
  z-index: 1;
}

.timeline__item:nth-child(odd) .timeline__dot {
  right: -8px;
}

.timeline__item:nth-child(even) .timeline__dot {
  left: -8px;
}

.timeline__year {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.timeline__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.timeline__text {
  font-size: 0.9rem;
  line-height: 1.6;
}

/* --- Team Section --- */
.team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.team-card {
  text-align: center;
  padding: 36px 24px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  background: var(--color-bg-card);
}

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

.team-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent), #21ADE4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.team-card__name {
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 4px;
}

.team-card__role {
  font-size: 0.85rem;
  color: var(--color-secondary);
  font-weight: 500;
  margin-bottom: 12px;
}

.team-card__bio {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--color-text-light);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .mission__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .values__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding: 140px 0 70px;
  }

  .values__grid {
    grid-template-columns: 1fr;
  }

  .team__grid {
    grid-template-columns: 1fr;
  }

  .mission__visual {
    grid-template-columns: 1fr 1fr;
  }

  .mission__stat-card:nth-child(2),
  .mission__stat-card:nth-child(3) {
    transform: none;
  }

  .mission__stat-card:nth-child(2):hover,
  .mission__stat-card:nth-child(3):hover {
    transform: translateY(-4px);
  }

  .timeline::before {
    left: 20px;
  }

  .timeline__item,
  .timeline__item:nth-child(odd),
  .timeline__item:nth-child(even) {
    left: 0;
    width: 100%;
    text-align: left;
    padding-left: 50px;
    padding-right: 0;
  }

  .timeline__item:nth-child(odd) .timeline__dot,
  .timeline__item:nth-child(even) .timeline__dot {
    left: 12px;
    right: auto;
  }
}


/* ============================================
   SERVICES PAGE — Service Details, Process,
   Tech Stack, FAQ
   ============================================ */
/* ============================================
   SERVICES PAGE — Service Details, Process,
   Pricing, FAQ
   ============================================ */

/* --- Service Detail Cards --- */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--color-border);
}

.service-detail:last-child {
  border-bottom: none;
}

.service-detail--reverse {
  direction: rtl;
}

.service-detail--reverse > * {
  direction: ltr;
}

.service-detail__content {
  max-width: 520px;
}

.service-detail__icon {
  width: 64px;
  height: 64px;
  background: var(--color-accent-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
}

.service-detail__content h3 {
  margin-bottom: 16px;
}

.service-detail__content p {
  margin-bottom: 20px;
}

.service-detail__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.service-detail__feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--color-text);
}

.service-detail__feature-check {
  width: 22px;
  height: 22px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-success);
  font-size: 0.7rem;
  flex-shrink: 0;
}

.service-detail__visual {
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
}

.service-detail__visual-bg {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

.service-detail__visual-bg--1 {
  background: linear-gradient(135deg, #1e3a5f, #0f172a);
}

.service-detail__visual-bg--2 {
  background: linear-gradient(135deg, #0e4429, #0f172a);
}

.service-detail__visual-bg--3 {
  background: linear-gradient(135deg, #3b1e5f, #0f172a);
}

.service-detail__visual-bg--4 {
  background: linear-gradient(135deg, #5f3a1e, #0f172a);
}

.service-detail__visual-bg--5 {
  background: linear-gradient(135deg, #1e5f5a, #0f172a);
}

.service-detail__visual-bg--6 {
  background: linear-gradient(135deg, #4a1e5f, #0f172a);
}

/* --- Process Section --- */
.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
}

.process__grid::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: var(--color-border);
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-step__number {
  width: 48px;
  height: 48px;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  margin: 0 auto 20px;
  position: relative;
  box-shadow: 0 0 0 6px var(--color-bg-alt);
}

.process-step h4 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.process-step p {
  font-size: 0.9rem;
  line-height: 1.6;
}

/* --- Tech Stack Section --- */
.tech__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 20px;
}

.tech-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition-base);
  text-align: center;
}

.tech-badge:hover {
  background: rgba(33, 173, 228, 0.15);
  border-color: rgba(33, 173, 228, 0.3);
  color: #fff;
  transform: translateY(-3px);
}

/* --- FAQ Section --- */
.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq-item--open {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 1px var(--color-accent);
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: var(--color-bg-card);
  cursor: pointer;
  text-align: left;
}

.faq-item__icon {
  font-size: 1.2rem;
  transition: transform var(--transition-base);
  color: var(--color-secondary);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item--open .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item--open .faq-item__answer {
  max-height: 300px;
}

.faq-item__answer-inner {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text-light);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .service-detail {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-detail--reverse {
    direction: ltr;
  }

  .process__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process__grid::before {
    display: none;
  }
}

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

  .service-detail {
    padding: 40px 0;
  }

  .tech__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ============================================
   CONTACT PAGE — Form, Contact Info,
   Offices, Map
   ============================================ */
/* ============================================
   CONTACT PAGE — Form, Contact Info,
   Map placeholder, Office cards
   ============================================ */

/* --- Contact Grid --- */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* --- Contact Form --- */
.contact-form {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.contact-form__title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}

.contact-form__subtitle {
  font-size: 0.95rem;
  color: var(--color-text-light);
  margin-bottom: 32px;
}

.form__group {
  margin-bottom: 20px;
}

.form__label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 8px;
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-bg);
  transition: all var(--transition-fast);
  outline: none;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(33, 173, 228, 0.1);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--color-text-light);
  opacity: 0.6;
}

.form__textarea {
  resize: vertical;
  min-height: 140px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form__submit {
  width: 100%;
  margin-top: 8px;
  justify-content: center;
}

.form__message {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  display: none;
}

.form__message--success {
  display: block;
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-success);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.form__message--error {
  display: block;
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

/* --- Contact Info --- */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-info__card {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.contact-info__card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.contact-info__icon {
  width: 52px;
  height: 52px;
  background: var(--color-accent-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.contact-info__label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-light);
  margin-bottom: 4px;
}

.contact-info__value {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
}

.contact-info__value a {
  color: #fff;
  transition: color var(--transition-fast);
}

.contact-info__value a:hover {
  color: var(--color-secondary);
}

.contact-info__note {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-top: 2px;
}

/* --- Offices Section --- */
.offices__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.office-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all var(--transition-base);
}

.office-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(33, 173, 228, 0.3);
  transform: translateY(-4px);
}

.office-card__city {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.office-card__country {
  font-size: 0.85rem;
  color: var(--color-accent);
  font-weight: 500;
  margin-bottom: 16px;
}

.office-card__address {
  font-size: 0.9rem;
  color: rgba(241, 245, 249, 0.6);
  line-height: 1.6;
}

.office-card__phone {
  display: block;
  margin-top: 12px;
  font-size: 0.9rem;
  color: rgba(241, 245, 249, 0.7);
  transition: color var(--transition-fast);
}

.office-card__phone:hover {
  color: #fff;
}

/* --- Map Placeholder --- */
.map-placeholder {
  width: 100%;
  height: 400px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  margin-top: 60px;
}

.map-placeholder__content {
  text-align: center;
}

.map-placeholder__icon {
  font-size: 3rem;
  margin-bottom: 12px;
}

.map-placeholder__text {
  font-size: 0.95rem;
  color: var(--color-text-light);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .offices__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .contact-form {
    padding: 28px;
  }

  .offices__grid {
    grid-template-columns: 1fr;
  }

  .map-placeholder {
    height: 250px;
    margin-top: 40px;
  }
}


/* ============================================
   PRODUCTS PAGE — Hero, Product Grid, Cards
   ============================================ */
/* ============================================================
   Products Listing Page — Styles
   ============================================================ */

/* ── Product Grid Section ── */
.products-grid-section {
  padding: 80px 0 100px;
  background: #fff;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* ── Product Card ── */
.product-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #f3f4f6;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.35s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
  border-color: #e5e7eb;
}

/* Card image area */
.product-card__image {
  position: relative;
  overflow: hidden;
}

.product-card__illustration {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
}

.product-card:hover .product-card__illustration {
  transform: scale(1.04);
}

.product-card__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #388329;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 1px solid rgba(56, 131, 41, 0.1);
  z-index: 1;
}

/* Card body */
.product-card__body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card__name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
  transition: color 0.2s ease;
}

.product-card:hover .product-card__name {
  color: #388329;
}

.product-card__desc {
  font-size: 0.88rem;
  color: #6b7280;
  line-height: 1.65;
  margin-bottom: 20px;
  flex-grow: 1;
}

.product-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #21ADE4;
  transition: all 0.25s ease;
}

.product-card__cta svg {
  transition: transform 0.25s ease;
}

.product-card:hover .product-card__cta {
  color: #1a9ad0;
}

.product-card:hover .product-card__cta svg {
  transform: translateX(4px);
}

/* ── Dark Theme ── */
[data-theme="dark"] .products-hero {
  background: linear-gradient(135deg, #0f1b12 0%, #111827 40%, #0f172a 100%);
}

[data-theme="dark"] .products-hero__title {
  color: #f1f5f9;
}

[data-theme="dark"] .products-hero__subtitle {
  color: #94a3b8;
}

[data-theme="dark"] .products-hero__breadcrumb {
  color: #94a3b8;
}

[data-theme="dark"] .products-grid-section {
  background: #0f172a;
}

[data-theme="dark"] .product-card {
  background: #111827;
  border-color: #1e293b;
}

[data-theme="dark"] .product-card:hover {
  border-color: #374151;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .product-card__name {
  color: #f1f5f9;
}

[data-theme="dark"] .product-card:hover .product-card__name {
  color: #388329;
}

[data-theme="dark"] .product-card__desc {
  color: #94a3b8;
}

[data-theme="dark"] .product-card__tag {
  background: rgba(17, 24, 39, 0.85);
  border-color: rgba(56, 131, 41, 0.2);
  color: #4ade80;
}
.jupiterx-main-content{
  padding: 0;
}
.team-member--social svg{
      max-width: 14px;
    min-width: 14px;
}

/* ── Hero ── */
.products-hero {
  position: relative;
  padding: 120px 0 70px;
  background: linear-gradient(135deg, #f0fdf0 0%, #f9fafb 40%, #eff6ff 100%);
  overflow: hidden;
}

.products-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.products-hero__bg-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
}

.products-hero__content {
  max-width: 680px;
}

.products-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #6b7280;
  margin-bottom: 20px;
}

.products-hero__breadcrumb a {
  color: #388329;
  text-decoration: none;
  transition: color 0.2s ease;
}

.products-hero__breadcrumb a:hover {
  color: #2d6b22;
}

.products-hero__title {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: #111827;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.products-hero__subtitle {
  font-size: 1.1rem;
  color: #6b7280;
  line-height: 1.7;
  max-width: 560px;
}
/* ── Responsive ── */
@media (max-width: 1024px) {
  .products-hero {
    padding: 140px 0 60px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .products-hero {
    padding: 100px 0 50px;
  }

  .products-hero__title {
    font-size: 2rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .products-grid-section {
    padding: 60px 0 70px;
  }

  .product-card__body {
    padding: 24px;
  }
}


/* ============================================
   CLUBSOFT PAGE — Hero, Logos, Highlights,
   Modules, CTA
   ============================================ */
/* ============================================================
   ClubSoft Product Page — Styles
   ============================================================ */

/* ── Hero Section ── */
.cs-hero {
  position: relative;
  padding: 160px 0 80px;
  background: linear-gradient(135deg, #f0fdf0 0%, #f9fafb 40%, #eff6ff 100%);
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.cs-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.cs-hero__bg-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.cs-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cs-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #6b7280;
  margin-bottom: 20px;
}

.cs-hero__breadcrumb a {
  color: #388329;
  text-decoration: none;
  transition: color 0.2s ease;
}

.cs-hero__breadcrumb a:hover {
  color: #2d6b22;
}

.cs-hero__breadcrumb span {
  color: #9ca3af;
}

.cs-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(56, 131, 41, 0.08);
  border: 1px solid rgba(56, 131, 41, 0.15);
  border-radius: 100px;
}

.cs-hero__badge-dot {
  width: 8px;
  height: 8px;
  background: #388329;
  border-radius: 50%;
  animation: csPulse 2s ease-in-out infinite;
}

@keyframes csPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.cs-hero__title {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 800;
  color: #111827;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.cs-hero__title-accent {
  color: #388329;
}

.cs-hero__subtitle {
  font-size: 1.15rem;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 16px;
  font-weight: 500;
}

.cs-hero__desc {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 32px;
}

.cs-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cs-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}

.btn--primary.cs-btn {
  background: var(--color-highlight);
  color: #0f172a;
  border: 2px solid var(--color-highlight);
}

.btn--primary.cs-btn:hover {
  background: var(--color-highlight-hover);
  border-color: var(--color-highlight-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--color-highlight-glow);
}

.btn--outline.cs-btn {
  background: transparent;
  color: #388329;
  border: 2px solid #388329;
}

.btn--outline.cs-btn:hover {
  background: #388329;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(56, 131, 41, 0.15);
}
.mySwiper .e-con.e-flex{
    flex: none !important;
}
.mySwiper .swiper-slide{
  height: auto !important;
}
.trusted__logo .swiper-slide{
  min-width: 100px;
}
.not-slider .swiper-slide-inner img{
  margin: 0 auto;
  width: 100px;
}
.slide-btn {
       position: relative !important;
    bottom: 0;
    width: auto !important;
    height: auto !important;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
}
.slide-btn::after{
  display: none !important;
}
/* Hero Visual / Mockup */
.cs-hero__visual {
  position: relative;
}

.cs-hero__mockup {
  position: relative;
  border-radius: 20px;
  overflow: visible;
}

.cs-hero__dashboard {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.04);
}

.cs-hero__float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  font-size: 0.82rem;
  font-weight: 600;
  color: #374151;
  white-space: nowrap;
  animation: csFloat 3s ease-in-out infinite;
}

.cs-hero__float--1 {
  top: -16px;
  right: -16px;
  animation-delay: 0s;
}

.cs-hero__float--2 {
  bottom: 24px;
  left: -24px;
  animation-delay: 1.5s;
}

@keyframes csFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ── Trusted By / Logo Slider ── */
.cs-logos {
  padding: 40px 0;
  background: #fff;
  border-top: 1px solid #f3f4f6;
  border-bottom: 1px solid #f3f4f6;
  overflow: hidden;
}

.cs-logos__label {
  text-align: center;
  font-size: 0.85rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  margin-bottom: 24px;
}

.cs-logos__track-wrapper {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.cs-logos__track {
  display: flex;
  gap: 48px;
  animation: csLogoScroll 30s linear infinite;
  width: max-content;
}

.cs-logos__track:hover {
  animation-play-state: paused;
}

.cs-logos__item {
  flex-shrink: 0;
  padding: 12px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #d1d5db;
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition: all 0.3s ease;
  cursor: default;
  border: 1px solid #f3f4f6;
  border-radius: 8px;
  background: #fafafa;
}

.cs-logos__item:hover {
  color: #374151;
  border-color: #e5e7eb;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

@keyframes csLogoScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Highlights Strip ── */
.cs-highlights {
  padding: 60px 0;
  background: #fff;
}

.cs-highlights__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.cs-highlights__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: #f9fafb;
  border-radius: 12px;
  border: 1px solid #f3f4f6;
  transition: all 0.3s ease;
}

.cs-highlights__item:hover {
  background: #fff;
  border-color: #e5e7eb;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

.cs-highlights__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e8ffe3, #f0fdf0);
  border-radius: 12px;
  color: #388329;
}

.cs-highlights__item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 4px;
}

.cs-highlights__item p {
  font-size: 0.82rem;
  color: #6b7280;
  line-height: 1.4;
}

/* ── Modules Section ── */
.cs-modules {
  padding: 100px 0;
  background: #f9fafb;
}

.cs-modules .section__header {
  text-align: center;
  margin-bottom: 60px;
}

.cs-modules .section__header h2 {
  color: #111827;
}

.cs-modules .section__header p {
  color: #6b7280;
  max-width: 600px;
  margin: 16px auto 0;
}

.cs-modules .section__label {
  display: inline-block;
  padding: 4px 16px;
  background: rgba(56, 131, 41, 0.08);
  color: #388329;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.cs-modules__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ── Module Card ── */
.cs-module-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  border: 1px solid #f3f4f6;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.cs-module-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #388329, #21ADE4);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.cs-module-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
  border-color: #e5e7eb;
}

.cs-module-card:hover::before {
  transform: scaleX(1);
}

.cs-module-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e8ffe3, #f0fdf0);
  border-radius: 14px;
  color: #388329;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.cs-module-card:hover .cs-module-card__icon {
  background: linear-gradient(135deg, #388329, #2d6b22);
  color: #fff;
}

.cs-module-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 4px;
}

.cs-module-card__subtitle {
  font-size: 0.82rem;
  color: #21ADE4;
  font-weight: 500;
  margin-bottom: 16px;
}

.cs-module-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.cs-module-card__list li {
  position: relative;
  padding-left: 20px;
  font-size: 0.85rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 8px;
}

.cs-module-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #388329;
  opacity: 0.5;
}

.cs-module-card__list li:last-child {
  margin-bottom: 0;
}

.cs-module-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #388329;
  text-decoration: none;
  transition: all 0.2s ease;
}

.cs-module-card__cta span {
  transition: transform 0.2s ease;
}

.cs-module-card__cta:hover {
  color: #2d6b22;
}

.cs-module-card__cta:hover span {
  transform: translateX(4px);
}

/* ── CTA Section ── */
.cs-cta {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.cs-cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cs-cta__bg svg {
  width: 100%;
  height: 100%;
}

.cs-cta__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cs-cta__content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: #fff;
  font-weight: 700;
  margin-bottom: 16px;
}

.cs-cta__content p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 36px;
}

.cs-cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn--light.cs-btn {
  background: #fff;
  color: #388329;
  border: 2px solid #fff;
  font-weight: 700;
}

.btn--light.cs-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn--light-outline.cs-btn {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn--light-outline.cs-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  transform: translateY(-2px);
}

/* ── Dark Theme Overrides ── */
[data-theme="dark"] .cs-hero {
  background: linear-gradient(135deg, #0f1b12 0%, #111827 40%, #0f172a 100%);
}

[data-theme="dark"] .cs-hero__title {
  color: #f1f5f9;
}

[data-theme="dark"] .cs-hero__subtitle {
  color: #cbd5e1;
}

[data-theme="dark"] .cs-hero__desc {
  color: #94a3b8;
}

[data-theme="dark"] .cs-hero__breadcrumb {
  color: #94a3b8;
}

[data-theme="dark"] .cs-hero__badge {
  background: rgba(56, 131, 41, 0.15);
  border-color: rgba(56, 131, 41, 0.25);
}

[data-theme="dark"] .cs-hero__dashboard {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .cs-hero__float {
  background: #1e293b;
  color: #e2e8f0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .cs-logos {
  background: #111827;
  border-color: #1e293b;
}

[data-theme="dark"] .cs-logos__item {
  color: #4b5563;
  border-color: #1e293b;
  background: #0f172a;
}

[data-theme="dark"] .cs-logos__item:hover {
  color: #e2e8f0;
  border-color: #374151;
  background: #1e293b;
}

[data-theme="dark"] .cs-highlights {
  background: #0f172a;
}

[data-theme="dark"] .cs-highlights__item {
  background: #111827;
  border-color: #1e293b;
}

[data-theme="dark"] .cs-highlights__item:hover {
  background: #1e293b;
  border-color: #374151;
}

[data-theme="dark"] .cs-highlights__icon {
  background: linear-gradient(135deg, rgba(56, 131, 41, 0.15), rgba(56, 131, 41, 0.08));
}

[data-theme="dark"] .cs-highlights__item h4 {
  color: #f1f5f9;
}

[data-theme="dark"] .cs-highlights__item p {
  color: #94a3b8;
}

[data-theme="dark"] .cs-modules {
  background: #111827;
}

[data-theme="dark"] .cs-modules .section__header h2 {
  color: #f1f5f9;
}

[data-theme="dark"] .cs-modules .section__header p {
  color: #94a3b8;
}

[data-theme="dark"] .cs-module-card {
  background: #0f172a;
  border-color: #1e293b;
}

[data-theme="dark"] .cs-module-card:hover {
  border-color: #374151;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .cs-module-card__icon {
  background: linear-gradient(135deg, rgba(56, 131, 41, 0.15), rgba(56, 131, 41, 0.08));
}

[data-theme="dark"] .cs-module-card__title {
  color: #f1f5f9;
}

[data-theme="dark"] .cs-module-card__list li {
  color: #94a3b8;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .cs-hero {
    padding: 140px 0 60px;
    min-height: auto;
  }

  .cs-hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cs-hero__visual {
    max-width: 500px;
    margin: 0 auto;
  }

  .cs-highlights__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cs-modules__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .cs-hero {
    padding: 130px 0 50px;
  }

  .cs-hero__title {
    font-size: 2.2rem;
  }

  .cs-hero__actions {
    flex-direction: column;
  }

  .cs-btn {
    justify-content: center;
    width: 100%;
  }

  .cs-hero__float--1 {
    top: -10px;
    right: 0;
  }

  .cs-hero__float--2 {
    bottom: 10px;
    left: 0;
  }

  .cs-highlights__grid {
    grid-template-columns: 1fr;
  }

  .cs-modules {
    padding: 70px 0;
  }

  .cs-modules__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cs-module-card {
    padding: 24px;
  }

  .cs-cta {
    padding: 70px 0;
  }

  .cs-cta__actions {
    flex-direction: column;
    align-items: center;
  }

  .cs-cta__actions .cs-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .cs-logos__track {
    gap: 24px;
  }

  .cs-logos__item {
    padding: 8px 20px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .cs-hero__title {
    font-size: 1.8rem;
  }

  .cs-hero__subtitle {
    font-size: 1rem;
  }

  .cs-hero__float {
    font-size: 0.75rem;
    padding: 8px 12px;
  }
}


/* ============================================
   COMPANY PAGE — Overview, Pillars, Clients,
   People
   ============================================ */
/* ============================================
   COMPANY PAGE — Overview, Pillars, Split
   ============================================ */

/* --- Company Hero --- */
.company-hero {
  position: relative;
  padding: 200px 0 100px;
  background: linear-gradient(135deg, var(--color-gradient-start) 0%, var(--color-gradient-end) 100%);
  overflow: hidden;
}

.company-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.company-hero__svg {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.company-hero__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.company-hero__title {
  color: #fff;
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.1;
  font-weight: 800;
}

.company-hero__title span {
  color: #7dd460;
}

.company-hero__subtitle {
  color: rgba(241, 245, 249, 0.72);
  font-size: 1.15rem;
  max-width: 520px;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .company-hero {
    padding: 140px 0 70px;
  }

  .company-hero__title {
    font-size: 2.2rem;
  }
}


/* --- Pillars --- */
.company-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.company-pillar {
  padding: 48px 40px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-bg-card);
  transition: all var(--transition-base);
}

.company-pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent);
}

.company-pillar__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(56, 131, 41, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.company-pillar__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--color-accent);
}

.company-pillar h3 {
  font-size: 1.3rem;
  color: var(--color-heading);
  margin-bottom: 12px;
}

.company-pillar p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-light);
}
.white-logo{
  display: none !important;
}
/* --- Clients vertical slider --- */
.co-clients__slider {
  height: 440px !important;
  overflow: hidden;
  /* fade top & bottom edges */
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 12%, #000 88%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 12%, #000 88%, transparent 100%);
}
/* ---- Our Clients ---- */
.co-clients__header {
  margin-bottom: 40px;
}

.co-clients__header h2 {
  margin-top: 10px;
  line-height: 1.15;
}

.co-clients__body {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 72px;
  align-items: center;
}

.co-clients__text p {
  color: var(--color-text-light);
  line-height: 1.85;
  font-size: 1.02rem;
}

.co-clients__stats {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-bg-card);
}

.co-stat {
  padding: 36px 40px;
}

.co-stat__value {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--color-accent);
  letter-spacing: -2px;
}

.co-stat__unit {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0;
}

.co-stat__label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-light);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.co-stat__track {
  height: 3px;
  background: rgba(56, 131, 41, 0.15);
  border-radius: 100px;
  margin-top: 20px;
  overflow: hidden;
}

.co-stat__fill {
  height: 100%;
  background: var(--color-accent);
  border-radius: 100px;
}

.co-stat__divider {
  height: 1px;
  background: var(--color-border);
}

.co-stat--cert {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 40px;
}

.co-stat__badge {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(56, 131, 41, 0.1);
  border: 1px solid rgba(56, 131, 41, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.co-stat__badge svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-accent);
}

.co-stat--cert > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.co-stat--cert strong {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--color-heading);
}

.co-stat--cert span {
  font-size: 0.82rem;
  color: var(--color-text-light);
}

/* ---- Our People ---- */
.co-people__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.co-people__left h2 {
  margin-top: 10px;
  margin-bottom: 20px;
  line-height: 1.15;
}

.co-people__left p {
  color: var(--color-text-light);
  line-height: 1.85;
  font-size: 1.02rem;
}

.co-people__cta {
  margin-top: 36px;
  display: inline-flex;
}

.co-roles {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.co-role {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 22px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color var(--transition-base), background var(--transition-base);
  cursor: default;
}

.co-role:hover {
  border-color: rgba(56, 131, 41, 0.35);
  background: rgba(56, 131, 41, 0.06);
}

.co-role__icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(56, 131, 41, 0.08);
  border: 1px solid rgba(56, 131, 41, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition-base), border-color var(--transition-base);
}

.co-role:hover .co-role__icon {
  background: rgba(56, 131, 41, 0.18);
  border-color: rgba(56, 131, 41, 0.4);
}

.co-role__icon svg {
  width: 17px;
  height: 17px;
  stroke: var(--color-accent);
}

.co-role span {
  font-size: 0.93rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.01em;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .co-clients__body,
  .co-people__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .company-pillars {
    grid-template-columns: 1fr;
  }

  .company-pillar {
    padding: 32px 24px;
  }

  .co-stat__value {
    font-size: 3.5rem;
  }
}

/* ============================================
   SOFTWARE ENGINEERING PAGE — Hero, Capabilities
   Bento Grid, Success Stories, CTA
   ============================================ */
/* ============================================================
   Software Engineering Page — Styles
   ============================================================ */

/* ── Hero Section ── */
.se-hero {
  position: relative;
  padding: 160px 0 80px;
  background: linear-gradient(135deg, #f0fdf0 0%, #f9fafb 40%, #eff6ff 100%);
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.se-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.se-hero__bg-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.se-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.se-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #6b7280;
  margin-bottom: 20px;
}

.se-hero__breadcrumb a {
  color: #388329;
  text-decoration: none;
  transition: color 0.2s ease;
}

.se-hero__breadcrumb a:hover {
  color: #2d6b22;
}

.se-hero__breadcrumb span {
  color: #9ca3af;
}

.se-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(56, 131, 41, 0.08);
  border: 1px solid rgba(56, 131, 41, 0.15);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #388329;
  margin-bottom: 24px;
}

.se-hero__badge-dot {
  width: 8px;
  height: 8px;
  background: #388329;
  border-radius: 50%;
  animation: sePulse 2s ease-in-out infinite;
}

@keyframes sePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.se-hero__title {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 800;
  color: #111827;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.se-hero__title span {
  color: #388329;
}

.se-hero__desc {
  font-size: 1rem;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 16px;
}

.se-hero__desc--light {
  color: #6b7280;
  font-size: 0.92rem;
  margin-bottom: 32px;
}

.se-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── SE Button ── */
.se-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}

.btn--primary.se-btn {
  background: var(--color-highlight);
  color: #0f172a;
  border: 2px solid var(--color-highlight);
}

.btn--primary.se-btn:hover {
  background: var(--color-highlight-hover);
  border-color: var(--color-highlight-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--color-highlight-glow);
}

.btn--outline.se-btn {
  background: transparent;
  color: #388329;
  border: 2px solid #388329;
}

.btn--outline.se-btn:hover {
  background: #388329;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(56, 131, 41, 0.15);
}

.btn--light.se-btn {
  background: #fff;
  color: #388329;
  border: 2px solid #fff;
  font-weight: 700;
}

.btn--light.se-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn--light-outline.se-btn {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn--light-outline.se-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  transform: translateY(-2px);
}

/* ── Hero Visual / Code Window ── */
.se-hero__visual {
  position: relative;
}

.se-hero__code-window {
  background: #1e293b;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 4px 16px rgba(0, 0, 0, 0.08);
}

.se-hero__code-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #0f172a;
}

.se-hero__code-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.se-hero__code-dot--red { background: #ef4444; }
.se-hero__code-dot--yellow { background: #fbbf24; }
.se-hero__code-dot--green { background: #22c55e; }

.se-hero__code-file {
  margin-left: 12px;
  font-size: 0.75rem;
  color: #94a3b8;
  font-family: 'JetBrains Mono', monospace;
}

.se-hero__code-body {
  padding: 20px 24px;
  overflow-x: auto;
}

.se-hero__code-body pre {
  margin: 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  line-height: 1.7;
  color: #e2e8f0;
}

.se-hero__code-body code {
  font-family: inherit;
}

/* Syntax Highlighting */
.code-kw { color: #c084fc; }
.code-str { color: #34d399; }
.code-cls { color: #38bdf8; }
.code-fn { color: #fbbf24; }
.code-dec { color: #fb923c; }

/* Floating Badges */
.se-hero__float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  font-size: 0.82rem;
  font-weight: 600;
  color: #374151;
  white-space: nowrap;
  animation: seFloat 3s ease-in-out infinite;
}

.se-hero__float--1 {
  top: -16px;
  right: -16px;
  animation-delay: 0s;
}

.se-hero__float--2 {
  bottom: 24px;
  left: -24px;
  animation-delay: 1.5s;
}

@keyframes seFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ── Capabilities Section ── */
.se-capabilities {
  position: relative;
  padding: 100px 0;
  background: #ffffff;
  overflow: hidden;
}

.se-capabilities__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.se-capabilities__bg-svg {
  width: 100%;
  height: 100%;
}

.se-capabilities__header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}

.se-capabilities__label {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(56, 131, 41, 0.08);
  color: #388329;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  border: 1px solid rgba(56, 131, 41, 0.12);
}

.se-capabilities__header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #111827;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.se-capabilities__header-accent {
  background: linear-gradient(135deg, #388329, #21ADE4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.se-capabilities__header p {
  font-size: 1.05rem;
  color: #6b7280;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Bento Grid Layout ── */
.se-cap-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 20px;
  position: relative;
  z-index: 1;
}

/* ── Capability Card — Redesigned ── */
.se-cap-card {
  position: relative;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.se-cap-card__glow {
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.se-cap-card:hover .se-cap-card__glow {
  opacity: 1;
}

/* Top accent bar */
.se-cap-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.se-cap-card:hover::before {
  transform: scaleX(1);
}

/* Corner decoration */
.se-cap-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 80px;
  border-radius: 80px 0 20px 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.se-cap-card:hover::after {
  opacity: 1;
}

.se-cap-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.04);
  border-color: transparent;
}

/* ── Color Variants ── */
/* Green */
.se-cap-card--green { border-bottom: 2px solid rgba(56, 131, 41, 0.15); }
.se-cap-card--green::before { background: linear-gradient(90deg, #388329, #4ade80); }
.se-cap-card--green::after { background: radial-gradient(circle at 100% 100%, rgba(56, 131, 41, 0.06) 0%, transparent 70%); }
.se-cap-card--green .se-cap-card__glow { background: radial-gradient(circle, rgba(56, 131, 41, 0.04) 0%, transparent 60%); }
.se-cap-card--green .se-cap-card__icon { background: linear-gradient(135deg, #dcfce7, #f0fdf0); color: #388329; }
.se-cap-card--green:hover .se-cap-card__icon { background: linear-gradient(135deg, #388329, #16a34a); color: #fff; box-shadow: 0 8px 24px rgba(56, 131, 41, 0.25); }
.se-cap-card--green .se-cap-card__count { color: #388329; background: rgba(56, 131, 41, 0.08); }
.se-cap-card--green .se-cap-card__tags span:hover { background: #388329; color: #fff; border-color: #388329; }

/* Blue */
.se-cap-card--blue { border-bottom: 2px solid rgba(33, 173, 228, 0.15); }
.se-cap-card--blue::before { background: linear-gradient(90deg, #21ADE4, #38bdf8); }
.se-cap-card--blue::after { background: radial-gradient(circle at 100% 100%, rgba(33, 173, 228, 0.06) 0%, transparent 70%); }
.se-cap-card--blue .se-cap-card__glow { background: radial-gradient(circle, rgba(33, 173, 228, 0.04) 0%, transparent 60%); }
.se-cap-card--blue .se-cap-card__icon { background: linear-gradient(135deg, #e0f2fe, #f0f9ff); color: #0284c7; }
.se-cap-card--blue:hover .se-cap-card__icon { background: linear-gradient(135deg, #0284c7, #21ADE4); color: #fff; box-shadow: 0 8px 24px rgba(33, 173, 228, 0.25); }
.se-cap-card--blue .se-cap-card__count { color: #0284c7; background: rgba(33, 173, 228, 0.08); }
.se-cap-card--blue .se-cap-card__tags span:hover { background: #21ADE4; color: #fff; border-color: #21ADE4; }

/* Purple */
.se-cap-card--purple { border-bottom: 2px solid rgba(147, 51, 234, 0.15); }
.se-cap-card--purple::before { background: linear-gradient(90deg, #9333ea, #a855f7); }
.se-cap-card--purple::after { background: radial-gradient(circle at 100% 100%, rgba(147, 51, 234, 0.06) 0%, transparent 70%); }
.se-cap-card--purple .se-cap-card__glow { background: radial-gradient(circle, rgba(147, 51, 234, 0.04) 0%, transparent 60%); }
.se-cap-card--purple .se-cap-card__icon { background: linear-gradient(135deg, #f3e8ff, #faf5ff); color: #9333ea; }
.se-cap-card--purple:hover .se-cap-card__icon { background: linear-gradient(135deg, #7c3aed, #9333ea); color: #fff; box-shadow: 0 8px 24px rgba(147, 51, 234, 0.25); }
.se-cap-card--purple .se-cap-card__count { color: #9333ea; background: rgba(147, 51, 234, 0.08); }
.se-cap-card--purple .se-cap-card__tags span:hover { background: #9333ea; color: #fff; border-color: #9333ea; }

/* Amber */
.se-cap-card--amber { border-bottom: 2px solid rgba(217, 119, 6, 0.15); }
.se-cap-card--amber::before { background: linear-gradient(90deg, #d97706, #fbbf24); }
.se-cap-card--amber::after { background: radial-gradient(circle at 100% 100%, rgba(217, 119, 6, 0.06) 0%, transparent 70%); }
.se-cap-card--amber .se-cap-card__glow { background: radial-gradient(circle, rgba(217, 119, 6, 0.04) 0%, transparent 60%); }
.se-cap-card--amber .se-cap-card__icon { background: linear-gradient(135deg, #fef3c7, #fffbeb); color: #d97706; }
.se-cap-card--amber:hover .se-cap-card__icon { background: linear-gradient(135deg, #d97706, #f59e0b); color: #fff; box-shadow: 0 8px 24px rgba(217, 119, 6, 0.25); }
.se-cap-card--amber .se-cap-card__count { color: #d97706; background: rgba(217, 119, 6, 0.08); }
.se-cap-card--amber .se-cap-card__tags span:hover { background: #d97706; color: #fff; border-color: #d97706; }

/* Teal */
.se-cap-card--teal { border-bottom: 2px solid rgba(13, 148, 136, 0.15); }
.se-cap-card--teal::before { background: linear-gradient(90deg, #0d9488, #2dd4bf); }
.se-cap-card--teal::after { background: radial-gradient(circle at 100% 100%, rgba(13, 148, 136, 0.06) 0%, transparent 70%); }
.se-cap-card--teal .se-cap-card__glow { background: radial-gradient(circle, rgba(13, 148, 136, 0.04) 0%, transparent 60%); }
.se-cap-card--teal .se-cap-card__icon { background: linear-gradient(135deg, #ccfbf1, #f0fdfa); color: #0d9488; }
.se-cap-card--teal:hover .se-cap-card__icon { background: linear-gradient(135deg, #0d9488, #14b8a6); color: #fff; box-shadow: 0 8px 24px rgba(13, 148, 136, 0.25); }
.se-cap-card--teal .se-cap-card__count { color: #0d9488; background: rgba(13, 148, 136, 0.08); }
.se-cap-card--teal .se-cap-card__tags span:hover { background: #0d9488; color: #fff; border-color: #0d9488; }

/* Rose */
.se-cap-card--rose { border-bottom: 2px solid rgba(225, 29, 72, 0.15); }
.se-cap-card--rose::before { background: linear-gradient(90deg, #e11d48, #fb7185); }
.se-cap-card--rose::after { background: radial-gradient(circle at 100% 100%, rgba(225, 29, 72, 0.06) 0%, transparent 70%); }
.se-cap-card--rose .se-cap-card__glow { background: radial-gradient(circle, rgba(225, 29, 72, 0.04) 0%, transparent 60%); }
.se-cap-card--rose .se-cap-card__icon { background: linear-gradient(135deg, #ffe4e6, #fff1f2); color: #e11d48; }
.se-cap-card--rose:hover .se-cap-card__icon { background: linear-gradient(135deg, #e11d48, #f43f5e); color: #fff; box-shadow: 0 8px 24px rgba(225, 29, 72, 0.25); }
.se-cap-card--rose .se-cap-card__count { color: #e11d48; background: rgba(225, 29, 72, 0.08); }
.se-cap-card--rose .se-cap-card__tags span:hover { background: #e11d48; color: #fff; border-color: #e11d48; }

/* ── Featured card — equal width, no span ── */
.se-cap-card--featured {
  grid-column: span 1;
}

/* ── Card Inner Elements ── */
.se-cap-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.se-cap-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.se-cap-card__count {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.se-cap-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 6px;
}

.se-cap-card__desc {
  font-size: 0.88rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 20px;
}

.se-cap-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.se-cap-card__tags span {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  color: #374151;
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: default;
}

.se-cap-card__tags span:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

/* ── Success Stories Section ── */
.se-stories {
  padding: 100px 0;
  background: #f9fafb;
  overflow: hidden;
}

.se-stories__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 24px;
}

.se-stories__label {
  display: inline-block;
  padding: 4px 16px;
  background: rgba(56, 131, 41, 0.08);
  color: #388329;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.se-stories__header-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}

.se-stories__header-text p {
  font-size: 1rem;
  color: #6b7280;
  max-width: 500px;
  line-height: 1.7;
}

.se-stories__nav {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.se-stories__arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #e5e7eb;
  background: #fff;
  color: #374151;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.se-stories__arrow:hover {
  border-color: #388329;
  color: #388329;
  background: #f0fdf0;
}

.se-stories__arrow:active {
  transform: scale(0.95);
}

/* Slider */
.se-stories__slider-wrap {
  overflow: hidden;
  margin: 0 -14px;
  padding: 0 14px;
}

.se-stories__slider {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 8px;
  cursor: grab;
}

.se-stories__slider::-webkit-scrollbar {
  display: none;
}

.se-stories__slider.is-dragging {
  scroll-behavior: auto;
  cursor: grabbing;
}

/* ── Story Card ── */
.se-story-card {
  flex: 0 0 340px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #f3f4f6;
  transition: all 0.35s ease;
}

.se-story-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border-color: #e5e7eb;
}

.se-story-card__image {
  overflow: hidden;
  background: #f9fafb;
}

.se-story-card__image svg {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.se-story-card:hover .se-story-card__image svg {
  transform: scale(1.05);
}

.se-story-card__body {
  padding: 24px;
}

.se-story-card__body h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
}

.se-story-card__body p {
  font-size: 0.88rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 16px;
}

.se-story-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #388329;
  text-decoration: none;
  transition: all 0.2s ease;
}

.se-story-card__cta span {
  transition: transform 0.2s ease;
}

.se-story-card__cta:hover {
  color: #2d6b22;
}

.se-story-card__cta:hover span {
  transform: translateX(4px);
}

/* ── CTA Section ── */
.se-cta {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.se-cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.se-cta__bg svg {
  width: 100%;
  height: 100%;
}

.se-cta__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.se-cta__content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: #fff;
  font-weight: 700;
  margin-bottom: 16px;
}

.se-cta__content p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 36px;
}

.se-cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* .reveal utilities are defined in the shared section above */

/* ── Dark Theme Overrides ── */
[data-theme="dark"] .se-hero {
  background: linear-gradient(135deg, #0f1b12 0%, #111827 40%, #0f172a 100%);
}

[data-theme="dark"] .se-hero__title {
  color: #f1f5f9;
}

[data-theme="dark"] .se-hero__desc {
  color: #cbd5e1;
}

[data-theme="dark"] .se-hero__desc--light {
  color: #94a3b8;
}

[data-theme="dark"] .se-hero__breadcrumb {
  color: #94a3b8;
}

[data-theme="dark"] .se-hero__badge {
  background: rgba(56, 131, 41, 0.15);
  border-color: rgba(56, 131, 41, 0.25);
}

[data-theme="dark"] .se-hero__code-window {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .se-hero__float {
  background: #1e293b;
  color: #e2e8f0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .se-capabilities {
  background: #0b1120;
}

[data-theme="dark"] .se-capabilities__header h2 {
  color: #f1f5f9;
}

[data-theme="dark"] .se-capabilities__header-accent {
  background: linear-gradient(135deg, #4ade80, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-theme="dark"] .se-capabilities__header p {
  color: #94a3b8;
}

[data-theme="dark"] .se-cap-card {
  background: rgba(17, 24, 39, 0.8);
  border-color: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

[data-theme="dark"] .se-cap-card:hover {
  background: rgba(30, 41, 59, 0.8);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .se-cap-card__title {
  color: #f1f5f9;
}

[data-theme="dark"] .se-cap-card__desc {
  color: #94a3b8;
}

[data-theme="dark"] .se-cap-card__tags span {
  background: rgba(15, 23, 42, 0.6);
  border-color: rgba(255, 255, 255, 0.08);
  color: #cbd5e1;
}

[data-theme="dark"] .se-cap-card--green .se-cap-card__tags span:hover { background: #388329; color: #fff; border-color: #388329; }
[data-theme="dark"] .se-cap-card--blue .se-cap-card__tags span:hover { background: #21ADE4; color: #fff; border-color: #21ADE4; }
[data-theme="dark"] .se-cap-card--purple .se-cap-card__tags span:hover { background: #9333ea; color: #fff; border-color: #9333ea; }
[data-theme="dark"] .se-cap-card--amber .se-cap-card__tags span:hover { background: #d97706; color: #fff; border-color: #d97706; }
[data-theme="dark"] .se-cap-card--teal .se-cap-card__tags span:hover { background: #0d9488; color: #fff; border-color: #0d9488; }
[data-theme="dark"] .se-cap-card--rose .se-cap-card__tags span:hover { background: #e11d48; color: #fff; border-color: #e11d48; }

[data-theme="dark"] .se-stories {
  background: #111827;
}

[data-theme="dark"] .se-stories__header-text h2 {
  color: #f1f5f9;
}

[data-theme="dark"] .se-stories__header-text p {
  color: #94a3b8;
}

[data-theme="dark"] .se-stories__arrow {
  background: #1e293b;
  border-color: #374151;
  color: #e2e8f0;
}

[data-theme="dark"] .se-stories__arrow:hover {
  border-color: #388329;
  color: #388329;
  background: rgba(56, 131, 41, 0.1);
}

[data-theme="dark"] .se-story-card {
  background: #0f172a;
  border-color: #1e293b;
}

[data-theme="dark"] .se-story-card:hover {
  border-color: #374151;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .se-story-card__image {
  background: #111827;
}

[data-theme="dark"] .se-story-card__body h4 {
  color: #f1f5f9;
}

[data-theme="dark"] .se-story-card__body p {
  color: #94a3b8;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .se-hero {
    padding: 140px 0 60px;
    min-height: auto;
  }

  .se-hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .se-hero__visual {
    max-width: 520px;
    margin: 0 auto;
  }

  .se-cap-bento {
    grid-template-columns: repeat(2, 1fr);
  }

  .se-cap-card--featured {
    grid-column: span 2;
  }

  .se-story-card {
    flex: 0 0 300px;
  }
}

@media (max-width: 768px) {
  .se-hero {
    padding: 130px 0 50px;
  }

  .se-hero__title {
    font-size: 2.2rem;
  }

  .se-hero__actions {
    flex-direction: column;
  }

  .se-btn {
    justify-content: center;
    width: 100%;
  }

  .se-hero__float--1 {
    top: -10px;
    right: 0;
  }

  .se-hero__float--2 {
    bottom: 10px;
    left: 0;
  }

  .se-capabilities {
    padding: 70px 0;
  }

  .se-cap-bento {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .se-cap-card--featured {
    grid-column: span 1;
  }

  .se-cap-card {
    padding: 24px;
  }

  .se-stories {
    padding: 70px 0;
  }

  .se-stories__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .se-story-card {
    flex: 0 0 280px;
  }

  .se-cta {
    padding: 70px 0;
  }

  .se-cta__actions {
    flex-direction: column;
    align-items: center;
  }

  .se-cta__actions .se-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .se-hero__title {
    font-size: 1.8rem;
  }

  .se-hero__float {
    font-size: 0.75rem;
    padding: 8px 12px;
  }

  .se-hero__code-body pre {
    font-size: 0.7rem;
  }

  .se-story-card {
    flex: 0 0 260px;
  }

  .se-cap-card__tags span {
    font-size: 0.72rem;
    padding: 3px 10px;
  }

  .se-cap-card__title {
    font-size: 1.05rem;
  }

  .se-cap-card__desc {
    font-size: 0.82rem;
  }
}

/* ============================================
   BOOK A MEETING BANNER
   ============================================ */
.cs-meeting {
  background: #0b1512;
  border-top: 1px solid rgba(56, 131, 41, 0.2);
  border-bottom: 1px solid rgba(56, 131, 41, 0.2);
}

.cs-meeting__inner {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 28px 0;
}

.cs-meeting__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(56, 131, 41, 0.12);
  border: 1px solid rgba(56, 131, 41, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7dd460;
}

.cs-meeting__text {
  flex: 1;
}

.cs-meeting .cs-meeting__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
  line-height: 1.3;
}

.cs-meeting__desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
  margin: 0;
}

.cs-meeting__btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #388329;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 10px;
  white-space: nowrap;
  transition: background 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
  box-shadow: 0 4px 16px rgba(56, 131, 41, 0.3);
}

.cs-meeting__btn:hover {
  background: #2d6b22;
  box-shadow: 0 8px 24px rgba(56, 131, 41, 0.45);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .cs-meeting__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 28px 0;
  }

  .cs-meeting__btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.btt-btn {
  display: none !important; /* Replaced by fab-stack */
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9000;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  background: #388329;
  color: #fff;
  box-shadow: 0 4px 20px rgba(56, 131, 41, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(.4,0,.2,1),
              transform 0.35s cubic-bezier(.4,0,.2,1),
              background 0.2s ease,
              box-shadow 0.2s ease;
}

.btt-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.btt-btn.btt-btn--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.btt-btn:hover {
  background: #2d6b22;
  box-shadow: 0 8px 28px rgba(56, 131, 41, 0.5);
  transform: translateY(-2px) scale(1.08);
}

.btt-btn:hover svg {
  transform: translateY(-2px);
}

.btt-btn:focus-visible {
  outline: 2px solid #388329;
  outline-offset: 3px;
}

.btt-btn:active {
  transform: scale(0.96);
}

@media (max-width: 768px) {
  .btt-btn {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }
  .btn {
    padding: 10px 20px !important;
    font-size: 12px;
    white-space: nowrap;
  }
}

/* ============================================================
   PARTNERS LOGO WALL
   ============================================================ */
.pl-section {
  padding: 72px 0 100px;
  background: #f8fafc;
}

[data-theme="dark"] .pl-section {
  background: #0b1121;
}

/* ── Section header ── */
.pl-header {
  text-align: center;
  margin-bottom: 52px;
}

.pl-header__count {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #64748b;
}

.pl-header__count span {
  font-size: 2rem;
  font-weight: 900;
  color: #111827;
  line-height: 1;
  letter-spacing: -0.03em;
}

[data-theme="dark"] .pl-header__count { color: #64748b; }
[data-theme="dark"] .pl-header__count span { color: #f1f5f9; }

/* ── Flat logo wall ── */
.pl-wall {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 0;
  border-top: 1px solid #e5e7eb;
  border-left: 1px solid #e5e7eb;
}

[data-theme="dark"] .pl-wall {
  border-color: #1e293b;
}

/* ── Individual tile ── */
.pl-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 88px;
  padding: 20px 16px;
  border-right: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  background: #ffffff;
  transition: background 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
}

.pl-logo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(56,131,41,0.05);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.pl-logo:hover {
  background: #ffffff;
  box-shadow: inset 0 0 0 2px #388329;
  z-index: 1;
}

.pl-logo:hover::after {
  opacity: 1;
}

.pl-logo span {
  font-size: 0.78rem;
  font-weight: 600;
  color: #6b7280;
  text-align: center;
  line-height: 1.35;
  user-select: none;
  transition: color 0.2s ease;
  position: relative;
  z-index: 1;
}

.pl-logo:hover span {
  color: #388329;
}

/* ── Image logo (when real logos are added) ── */
.pl-logo img {
  max-width: 110px;
  max-height: 36px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) opacity(0.5);
  transition: filter 0.22s ease;
  position: relative;
  z-index: 1;
}

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

/* ── Dark mode ── */
[data-theme="dark"] .pl-logo {
  background: #0f172a;
  border-right-color: #1e293b;
  border-bottom-color: #1e293b;
}

[data-theme="dark"] .pl-logo:hover {
  background: #0f172a;
  box-shadow: inset 0 0 0 2px #388329;
}

[data-theme="dark"] .pl-logo::after {
  background: rgba(56,131,41,0.08);
}

[data-theme="dark"] .pl-logo span {
  color: #475569;
}

[data-theme="dark"] .pl-logo:hover span {
  color: #4ade80;
}

[data-theme="dark"] .pl-logo img {
  filter: grayscale(1) opacity(0.35) brightness(1.4);
}

[data-theme="dark"] .pl-logo:hover img {
  filter: grayscale(0) opacity(0.9) brightness(1);
}

/* ── Responsive ── */
@media (max-width: 1200px) {
  .pl-wall {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (max-width: 900px) {
  .pl-wall {
    grid-template-columns: repeat(4, 1fr);
  }

  .pl-logo {
    min-height: 76px;
  }
}

@media (max-width: 600px) {
  .pl-section {
    padding: 56px 0 72px;
  }

  .pl-wall {
    grid-template-columns: repeat(3, 1fr);
  }

  .pl-logo {
    min-height: 64px;
    padding: 14px 10px;
  }

  .pl-logo span {
    font-size: 0.7rem;
  }

  .pl-header__count span {
    font-size: 1.6rem;
  }
}

/* ============================================================
   SUCCESS STORIES PAGE  (prefix: ss-)
   ============================================================ */

/* ── Hero stats ── */
.ss-hero__stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.ss-hero__stat + .ss-hero__stat {
  padding-left: 40px;
  border-left: 1px solid var(--color-border);
}

.ss-hero__stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: #111827;
  line-height: 1;
  letter-spacing: -0.03em;
}

.ss-hero__stat-label {
  font-size: 0.8rem;
  color: #6b7280;
  margin-top: 4px;
}

[data-theme="dark"] .ss-hero__stat-value { color: #f1f5f9; }
[data-theme="dark"] .ss-hero__stat + .ss-hero__stat { border-left-color: #334155; }
[data-theme="dark"] .ss-hero__stat-label { color: #94a3b8; }

/* ── Filter Bar ── */
.ss-filter-bar {
  position: sticky;
  top: 70px;
  z-index: 90;
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  transition: box-shadow 0.2s;
}

.ss-filter-bar.is-stuck {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.ss-filter-bar__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  flex-wrap: wrap;
}

.ss-filter-bar__left {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
  flex-wrap: wrap;
}

.ss-filter-bar__right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.ss-filter-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.ss-filter-select {
  appearance: none;
  -webkit-appearance: none;
  background-color: #f9fafb;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 8px 32px 8px 12px;
  font-size: 0.85rem;
  font-family: inherit;
  color: #111827;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.ss-filter-select:focus {
  outline: none;
  border-color: #388329;
  box-shadow: 0 0 0 3px rgba(56,131,41,0.12);
}

.ss-filter-divider {
  width: 1px;
  height: 24px;
  background: #e2e8f0;
  flex-shrink: 0;
}

.ss-sort-select {
  appearance: none;
  -webkit-appearance: none;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 8px 32px 8px 12px;
  font-size: 0.85rem;
  font-family: inherit;
  color: #111827;
  cursor: pointer;
  transition: border-color 0.2s;
}

.ss-sort-select:focus {
  outline: none;
  border-color: #388329;
}

.ss-search-wrap {
  position: relative;
}

.ss-search-wrap svg {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #6b7280;
  pointer-events: none;
}

.ss-search-input {
  background: #f9fafb;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 8px 12px 8px 34px;
  font-size: 0.85rem;
  font-family: inherit;
  color: #111827;
  width: 200px;
  transition: border-color 0.2s, box-shadow 0.2s, width 0.3s;
}

.ss-search-input::placeholder { color: #9ca3af; }

.ss-search-input:focus {
  outline: none;
  border-color: #388329;
  box-shadow: 0 0 0 3px rgba(56,131,41,0.12);
  width: 240px;
}

.ss-filter-count {
  font-size: 0.8rem;
  color: #6b7280;
  white-space: nowrap;
}

.ss-filter-count span {
  font-weight: 700;
  color: #111827;
}

/* ── Active Filter Pills ── */
.ss-active-filters {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 0 0 14px;
}

.ss-active-filters:empty { display: none; }

.ss-filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(56,131,41,0.1);
  color: #388329;
  border-radius: 20px;
  padding: 4px 10px 4px 12px;
  font-size: 0.75rem;
  font-weight: 600;
}

.ss-filter-pill__remove {
  background: none;
  border: none;
  cursor: pointer;
  color: #388329;
  display: flex;
  align-items: center;
  padding: 0;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.ss-filter-pill__remove:hover { opacity: 1; }

.ss-clear-all {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.75rem;
  color: #6b7280;
  text-decoration: underline;
  padding: 0;
  font-family: inherit;
  transition: color 0.2s;
}

.ss-clear-all:hover { color: #111827; }

/* ── Main Content Area ── */
.ss-main {
  padding: 48px 0 80px;
  background: #fff;
}

/* ── Card Grid ── */
.ss-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ── Story Card ── */
.ss-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.ss-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
  border-color: transparent;
  text-decoration: none;
}

.ss-card--hidden { display: none; }

.ss-card--fade-in {
  animation: ssFadeIn 0.3s ease forwards;
}

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

/* Card image */
.ss-card__img {
  height: 260px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.ss-card__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ss-card__img-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}

.ss-card:hover .ss-card__img-bg { transform: scale(1.04); }

.ss-card__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 40%, rgba(0,0,0,0.45));
}

.ss-card__category-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.15);
}
.table-responsive {
    max-width: 100%;
    overflow: auto;
}
/* Card body */
.ss-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

.ss-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.ss-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 9px;
  border-radius: 4px;
  border: 1px solid #e2e8f0;
  color: #6b7280;
  background: transparent;
  transition: border-color 0.2s, color 0.2s;
}

.ss-tag--industry {
  border-color: rgba(56,131,41,0.3);
  color: #388329;
  background: rgba(56,131,41,0.07);
}

.ss-tag--service {
  border-color: rgba(33,173,228,0.3);
  color: #1a8cb8;
  background: rgba(33,173,228,0.07);
}

.ss-tag--tech {
  border-color: #e2e8f0;
  color: #6b7280;
  background: transparent;
}

.ss-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
  color: #111827;
  margin: 0 0 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ss-card__desc {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.7;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
      max-height: 50px;
}

.ss-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  padding-top: 16px;
  border-top: 1px solid #e2e8f0;
}

.ss-card__metric-value {
  font-size: 1.2rem;
  font-weight: 800;
  color: #388329;
  line-height: 1;
  letter-spacing: -0.02em;
}

.ss-card__metric-label {
  font-size: 0.7rem;
  color: #6b7280;
  margin-top: 2px;
}

.ss-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #388329;
  text-decoration: none;
  transition: gap 0.2s;
}

.ss-card:hover .ss-card__cta { gap: 10px; }

/* ── Empty State ── */
.ss-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
  display: none;
}

.ss-empty.is-visible { display: block; }

.ss-empty__icon {
  width: 56px;
  height: 56px;
  background: #f9fafb;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #6b7280;
}

.ss-empty__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 8px;
}

.ss-empty__desc {
  font-size: 0.9rem;
  color: #6b7280;
  margin: 0 0 20px;
}

.ss-empty__reset {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #388329;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.ss-empty__reset:hover {
  background: #2d6b22;
  transform: translateY(-1px);
}

/* ── Load More ── */
.ss-loadmore {
  text-align: center;
  margin-top: 56px;
}

.ss-loadmore__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  padding: 13px 32px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: inherit;
  color: #111827;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.2s;
}

.ss-loadmore__btn:hover {
  border-color: #388329;
  color: #388329;
  background: rgba(56,131,41,0.07);
  transform: translateY(-1px);
}

.ss-loadmore__btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.ss-loadmore__info {
  display: block;
  margin-top: 12px;
  font-size: 0.8rem;
  color: #6b7280;
}

/* ── CTA Strip ── */
.ss-cta-strip {
  background: #f9fafb;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  padding: 64px 0;
}

.ss-cta-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.ss-cta-strip__text h2 {
  font-size: 1.7rem;
  font-weight: 800;
  color: #111827;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}

.ss-cta-strip__text p {
  font-size: 0.95rem;
  color: #6b7280;
  margin: 0;
}

.ss-cta-strip__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
 .ss-filter-bar{
    background: #f8fafc;
    border-bottom: 1px solid #e8edf2;
    border-top: 1px solid #e8edf2;
  }
 .ss-filter-bar__left{
  display:flex;
  align-items:center;
  gap:16px;
  min-width:0;
  width:100%;
      position: relative;
  
}
.ss-filter-bar__left:before{
      left: 0;
    background: linear-gradient(to right, #f8fafc, transparent);
}
.ss-filter-bar__left:after{
      right: 0;
    background: linear-gradient(to left, #f8fafc, transparent);
}
.ss-filter-bar__left:before,
.ss-filter-bar__left:after{
  content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 32px;
    pointer-events: none;
    z-index: 2;
}
.ss-service-tabs{
  display:flex;
  align-items:center;
  flex:1;
  min-width:0;
  overflow-x:auto;
  overflow-y:hidden;
  flex-wrap:nowrap;
  white-space:nowrap;
  scrollbar-width:none;
  -webkit-overflow-scrolling:touch;
  cursor:grab;
  width: 100%;
  padding: 5px 10px;
}

.ss-service-tabs:active{
  cursor:grabbing;
}

.ss-service-tabs::-webkit-scrollbar{
  display:none;
}

.ss-service-tab{
  flex:0 0 auto;
  border:none;
      color: #64748b;
      padding: 7px 16px;
  border-radius:999px;
  cursor:pointer;
  transition:.3s;
  font-size:12px;
  font-weight:500;
}

.ss-service-tab:hover{
  background:#62b651 !important;
  color:#fff;
}

.ss-service-tab.is-active{
  background:#62b651 !important;
  color:#fff;
  box-shadow: 0 2px 8px rgba(56, 131, 41, 0.25);
}
/* ── Card image gradient helpers ── */
.ss-img--cloud    { background: linear-gradient(135deg,#1a3a2a,#2d6b22,#388329); }
.ss-img--security { background: linear-gradient(135deg,#0f1e33,#1e3a5f,#1a5276); }
.ss-img--erp      { background: linear-gradient(135deg,#1a2a40,#21ADE4); }
.ss-img--health   { background: linear-gradient(135deg,#1a3030,#0d7377,#14a085); }
.ss-img--fleet    { background: linear-gradient(135deg,#2c1a10,#8b4513,#c0642a); }
.ss-img--mobile   { background: linear-gradient(135deg,#2a1040,#6b21a8,#9333ea); }
.ss-img--devops   { background: linear-gradient(135deg,#0a1a0a,#1a4a1a,#2d7a2d); }
.ss-img--gis      { background: linear-gradient(135deg,#0a2a3a,#0c4a6e,#0369a1); }
.ss-img--edtech   { background: linear-gradient(135deg,#2a1a08,#92400e,#d97706); }

/* ── Dark mode ── */
[data-theme="dark"] .ss-filter-bar { background: #0f172a; border-color: #1e293b; }
[data-theme="dark"] .ss-filter-bar__left:before {
    left: 0;
    background: linear-gradient(to right, #0f172a, transparent);
}
[data-theme="dark"] .ss-filter-bar__left:after {
    right: 0;
    background: linear-gradient(to left, #0f172a, transparent);
}
[data-theme="dark"] .ss-filter-label { color: #94a3b8; }
[data-theme="dark"] .ss-filter-select { background-color: #1e293b; border-color: #334155; color: #e5e7eb; }
[data-theme="dark"] .ss-sort-select { background-color: transparent; border-color: #334155; color: #e5e7eb; }
[data-theme="dark"] .ss-filter-divider { background: #334155; }
[data-theme="dark"] .ss-search-input { background: #1e293b; border-color: #334155; color: #e5e7eb; }
[data-theme="dark"] .ss-filter-count { color: #94a3b8; }
[data-theme="dark"] .ss-filter-count span { color: #e5e7eb; }
[data-theme="dark"] .ss-active-filters .ss-filter-pill { background: rgba(56,131,41,0.15); }
[data-theme="dark"] .ss-main { background: #0f172a; }
[data-theme="dark"] .ss-card { background: #1e293b; border-color: #1e293b; }
[data-theme="dark"] .ss-card:hover { box-shadow: 0 16px 40px rgba(0,0,0,0.4); }
[data-theme="dark"] .ss-card__title { color: #f1f5f9; }
[data-theme="dark"] .ss-card__desc { color: #94a3b8; }
[data-theme="dark"] .ss-card__footer { border-top-color: #1e293b; }
[data-theme="dark"] .ss-card__metric-label { color: #94a3b8; }
[data-theme="dark"] .ss-tag--tech { border-color: #334155; color: #94a3b8; }
[data-theme="dark"] .ss-empty__icon { background: #111827; border-color: #1e293b; }
[data-theme="dark"] .ss-empty__title { color: #f1f5f9; }
[data-theme="dark"] .ss-empty__desc { color: #94a3b8; }
[data-theme="dark"] .ss-loadmore__btn { border-color: #334155; color: #e5e7eb; }
[data-theme="dark"] .ss-cta-strip { background: #111827; border-top-color: #1e293b; border-bottom-color: #1e293b; }
[data-theme="dark"] .ss-cta-strip__text h2 { color: #f1f5f9; }
[data-theme="dark"] .ss-cta-strip__text p { color: #94a3b8; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .ss-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .ss-filter-bar__inner { gap: 8px; }
  .ss-filter-divider { display: none; }
  .ss-search-input { width: 160px; }
  .ss-search-input:focus { width: 180px; }
  .ss-cta-strip__inner { flex-direction: column; align-items: flex-start; }
  .ss-hero__stats { gap: 20px; }
  .ss-hero__stat + .ss-hero__stat { padding-left: 20px; }
}

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

@media (max-width: 480px) {
  .ss-filter-bar__right { width: 100%; }
  .ss-hero__stat-value { font-size: 1.6rem; }
}

/* ============================================================
   CASE STUDY DETAIL PAGE  (prefix: csd-)
   ============================================================ */

/* ── Back Bar ── */
.csd-back-bar {
  padding: 16px 0;
  border-bottom: 1px solid #e2e8f0;
  background: #fff;
}

.csd-back-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.csd-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #6b7280;
  text-decoration: none;
  transition: color 0.2s;
}

.csd-back-link:hover { color: #388329; }

.csd-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: #6b7280;
}

.csd-breadcrumb a {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.2s;
}

.csd-breadcrumb a:hover { color: #388329; }

.csd-breadcrumb span { opacity: 0.45; }

/* ── Hero – reuses products-hero, add extras here ── */
.csd-hero__category {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #388329;
  background: rgba(56,131,41,0.1);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.csd-hero__meta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 16px;
  margin-bottom: 20px;
}

.csd-hero__meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: #6b7280;
}

.csd-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.csd-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 4px;
}

.csd-tag--industry { background: rgba(56,131,41,0.1); color: #388329; }
.csd-tag--service  { background: rgba(33,173,228,0.1); color: #1a8cb8; }
.csd-tag--tech     { background: #f9fafb; border: 1px solid #e2e8f0; color: #6b7280; }

/* ── Banner ── */
.csd-banner {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
  margin-top: 40px;
}
.csd-banner img{
      width: 100%;
    height: 100%;
    object-fit: cover;
}
.csd-banner__bg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.csd-banner--cloud    { background: linear-gradient(135deg,#1a3a2a,#2d6b22,#388329,#21ADE4); }
.csd-banner--security { background: linear-gradient(135deg,#0f1e33,#1e3a5f,#1a5276); }
.csd-banner--erp      { background: linear-gradient(135deg,#1a2a40,#21ADE4); }
.csd-banner--health   { background: linear-gradient(135deg,#1a3030,#0d7377,#14a085); }

.csd-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.4) 100%);
}

.csd-banner__icon { opacity: 0.15; }

/* ── Body Layout ── */
.csd-body {
  padding: 64px 0 80px;
  background: #fff;
}

.csd-layout {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 56px;
  align-items: start;
}

/* ── Sidebar ── */
.csd-sidebar {
  position: sticky;
  top: 80px;
}
.csd-sidebar img{
  width: 100%;
  border-radius: 16px;
}
.csd-sidebar-card {
  background: #f9fafb;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 28px;
  margin-bottom: 20px;
}

.csd-sidebar-card__title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6b7280;
  margin: 0 0 16px;
}

.csd-sidebar-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid #e2e8f0;
  gap: 12px;
}

.csd-sidebar-row:last-child { border-bottom: none; padding-bottom: 0; }

.csd-sidebar-row__label {
  font-size: 0.78rem;
  color: #6b7280;
  flex-shrink: 0;
}

.csd-sidebar-row__value {
  font-size: 0.82rem;
  font-weight: 600;
  color: #111827;
  text-align: right;
}

.csd-sidebar-metric {
  padding: 12px 0;
  border-bottom: 1px solid #e2e8f0;
}

.csd-sidebar-metric:last-child { border-bottom: none; padding-bottom: 0; }

.csd-sidebar-metric__value {
  font-size: 1.8rem;
  font-weight: 800;
  color: #388329;
  line-height: 1;
  letter-spacing: -0.03em;
}

.csd-sidebar-metric__label {
  font-size: 0.78rem;
  color: #6b7280;
  margin-top: 4px;
}

.csd-tech-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.csd-tech-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #111827;
}

.csd-tech-badge__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #388329;
  flex-shrink: 0;
}

.csd-sidebar-cta {
  background: #388329;
  border-radius: 12px;
  padding: 28px;
  text-align: center;
}

.csd-sidebar-cta__title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
}

.csd-sidebar-cta__desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.8);
  margin: 0 0 20px;
  line-height: 1.6;
}

.csd-sidebar-cta__btn {
  display: block;
  background: #fff;
  color: #388329;
  border: none;
  border-radius: 8px;
  padding: 11px 20px;
  font-size: 0.875rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: opacity 0.2s, transform 0.2s;
}

.csd-sidebar-cta__btn:hover { opacity: 0.92; transform: translateY(-1px); }

/* ── Article ── */
.csd-article { max-width: 720px; }
.csd-article ul{
  margin-left: 17px;
}
.csd-section { margin-bottom: 52px; }
.csd-section a{
  color: var(--color-accent);
}
.csd-section__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #388329;
  margin-bottom: 10px;
}

.csd-section__label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: #388329;
  border-radius: 2px;
}

.csd-section__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

.csd-section__body {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.8;
}

.csd-section__body p { margin: 0 0 16px; }
.csd-section__body p:last-child { margin-bottom: 0; }
.csd-section__body strong { color: #111827; font-weight: 600; }

/* ── Challenge List ── */
.csd-challenge-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.csd-challenge-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #f9fafb;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.6;
}

.csd-challenge-list__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e53e3e;
  margin-top: 7px;
  flex-shrink: 0;
}

/* ── Solution Steps ── */
.csd-solution-steps {
  display: flex;
  flex-direction: column;
}

.csd-step {
  display: flex;
  gap: 20px;
}

.csd-step__line-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 40px;
}

.csd-step__num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #388329;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.csd-step__connector {
  width: 2px;
  flex: 1;
  min-height: 20px;
  background: #e2e8f0;
  margin: 4px 0;
}

.csd-step:last-child .csd-step__connector { display: none; }

.csd-step__content {
  padding-top: 8px;
  padding-bottom: 28px;
  flex: 1;
}

.csd-step:last-child .csd-step__content { padding-bottom: 0; }

.csd-step__title {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 6px;
}

.csd-step__desc {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.7;
  margin: 0;
}

/* ── Results Metrics Grid ── */
.csd-results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.csd-metric-card {
  background: #f9fafb;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}

.csd-metric-card__value {
  font-size: 2rem;
  font-weight: 800;
  color: #388329;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 6px;
}

.csd-metric-card__label {
  font-size: 0.78rem;
  color: #6b7280;
  line-height: 1.4;
}

/* ── Testimonial ── */
.csd-testimonial {
  background: #f9fafb;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #388329;
  border-radius: 0 12px 12px 0;
  padding: 28px 32px;
}

.csd-testimonial__quote {
  font-size: 1.05rem;
  font-style: italic;
  color: #111827;
  line-height: 1.75;
  margin: 0 0 20px;
}

.csd-testimonial__quote::before { content: '\201C'; }
.csd-testimonial__quote::after  { content: '\201D'; }

.csd-testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.csd-testimonial__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(56,131,41,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: #388329;
  flex-shrink: 0;
}

.csd-testimonial__name {
  font-size: 0.875rem;
  font-weight: 700;
  color: #111827;
}

.csd-testimonial__role {
  font-size: 0.78rem;
  color: #6b7280;
}

/* ── Bottom CTA ── */
.csd-bottom-cta {
  background: #f9fafb;
  border-top: 1px solid #e2e8f0;
  padding: 72px 0;
}

.csd-bottom-cta__inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.csd-bottom-cta__label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #388329;
  margin-bottom: 16px;
}

.csd-bottom-cta__title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #111827;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.csd-bottom-cta__desc {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.75;
  margin: 0 0 32px;
}

.csd-bottom-cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── Related Stories ── */
.csd-related {
  padding: 64px 0;
  background: #fff;
  border-top: 1px solid #e2e8f0;
}

.csd-related__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 12px;
}

.csd-related__title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #111827;
  margin: 0;
}

.csd-related__all {
  font-size: 0.85rem;
  font-weight: 600;
  color: #388329;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.csd-related__all:hover { gap: 10px; }

.csd-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.csd-related-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.csd-related-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  border-color: transparent;
}

.csd-related-card__img { height: 120px; }

.csd-related-card__body {
  padding: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.csd-related-card__category {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #388329;
  margin-bottom: 8px;
}

.csd-related-card__title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.45;
  margin: 0 0 auto;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.csd-related-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #388329;
  margin-top: 12px;
  text-decoration: none;
}

/* ── Dark mode ── */
[data-theme="dark"] .csd-back-bar { background: #0f172a; border-bottom-color: #1e293b; }
[data-theme="dark"] .csd-back-link { color: #94a3b8; }
[data-theme="dark"] .csd-breadcrumb { color: #94a3b8; }
[data-theme="dark"] .csd-breadcrumb a { color: #94a3b8; }
[data-theme="dark"] .csd-hero__category { background: rgba(56,131,41,0.15); }
[data-theme="dark"] .csd-hero__meta-item { color: #94a3b8; }
[data-theme="dark"] .csd-tag--tech { background: #1e293b; border-color: #334155; color: #94a3b8; }
[data-theme="dark"] .csd-body { background: #0f172a; }
[data-theme="dark"] .csd-sidebar-card { background: #111827; border-color: #1e293b; }
[data-theme="dark"] .csd-sidebar-card__title { color: #94a3b8; }
[data-theme="dark"] .csd-sidebar-row { border-bottom-color: #1e293b; }
[data-theme="dark"] .csd-sidebar-row__label { color: #94a3b8; }
[data-theme="dark"] .csd-sidebar-row__value { color: #f1f5f9; }
[data-theme="dark"] .csd-sidebar-metric { border-bottom-color: #1e293b; }
[data-theme="dark"] .csd-sidebar-metric__label { color: #94a3b8; }
[data-theme="dark"] .csd-tech-badge { background: #1e293b; border-color: #334155; color: #e5e7eb; }
[data-theme="dark"] .csd-section__title { color: #f1f5f9; }
[data-theme="dark"] .csd-section__body { color: #94a3b8; }
[data-theme="dark"] .csd-section__body strong { color: #e5e7eb; }
[data-theme="dark"] .csd-challenge-list li { background: #111827; border-color: #1e293b; color: #94a3b8; }
[data-theme="dark"] .csd-step__connector { background: #1e293b; }
[data-theme="dark"] .csd-step__title { color: #f1f5f9; }
[data-theme="dark"] .csd-step__desc { color: #94a3b8; }
[data-theme="dark"] .csd-metric-card { background: #111827; border-color: #1e293b; }
[data-theme="dark"] .csd-metric-card__label { color: #94a3b8; }
[data-theme="dark"] .csd-testimonial { background: #111827; border-color: #1e293b; }
[data-theme="dark"] .csd-testimonial__quote { color: #e5e7eb; }
[data-theme="dark"] .csd-testimonial__name { color: #f1f5f9; }
[data-theme="dark"] .csd-testimonial__role { color: #94a3b8; }
[data-theme="dark"] .csd-bottom-cta { background: #111827; border-top-color: #1e293b; }
[data-theme="dark"] .csd-bottom-cta__title { color: #f1f5f9; }
[data-theme="dark"] .csd-bottom-cta__desc { color: #94a3b8; }
[data-theme="dark"] .csd-related { background: #0f172a; border-top-color: #1e293b; }
[data-theme="dark"] .csd-related__title { color: #f1f5f9; }
[data-theme="dark"] .csd-related-card { background: #111827; border-color: #1e293b; }
[data-theme="dark"] .csd-related-card__title { color: #f1f5f9; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .csd-layout { grid-template-columns: 1fr; gap: 40px; }
  .csd-sidebar { position: static; order: -1; }
}

@media (max-width: 900px) {
  .csd-related__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .csd-back-bar__inner { flex-direction: column; align-items: flex-start; }
  .csd-banner { height: 240px; }
  .csd-results-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .csd-related__grid { grid-template-columns: 1fr; }
}


/* ============================================================
   BLOG LISTING PAGE  (.blog-*)
   ============================================================ */

/* ── Section wrapper ── */
.blog-section {
  padding: 80px 0 100px;
  background: #fff;
}

[data-theme="dark"] .blog-section {
  background: #0f172a;
}

/* ── Section header ── */
.blog-section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.blog-section__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.02em;
  margin: 8px 0 12px;
}

[data-theme="dark"] .blog-section__title {
  color: #f1f5f9;
}

.blog-section__desc {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.7;
}

[data-theme="dark"] .blog-section__desc {
  color: #94a3b8;
}

/* ── Grid ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* ── Card ── */
.blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
  border-color: #d1d5db;
}

.blog-card--hidden {
  display: none;
}

.blog-card--fade-in {
  animation: blogCardFadeIn 0.4s ease forwards;
}

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

/* ── Card image ── */
.blog-card__image-link {
  display: block;
  text-decoration: none;
  overflow: hidden;
}

.blog-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.blog-card__img-bg {
  width: 100%;
  height: 100%;
  border-bottom: 1px solid #e5e7eb;
  background-color: #fff;
  background-position: center;
  transition: transform 0.5s ease;
}
.blog-card__img-bg img{
  height: 100%;
  object-fit: cover;
}
.blog-card:hover .blog-card__img-bg {
  transform: scale(1.05);
}
a#darkModeToggle {
    cursor: pointer;
}
/* Image placeholder gradients per topic */
.blog-img--security  { background: linear-gradient(135deg, #1e293b 0%, #374151 50%, #111827 100%); }
.blog-img--cloud     { background: linear-gradient(135deg, #1e3a5f 0%, #374151 50%, #1e293b 100%); }
.blog-img--ai        { background: linear-gradient(135deg, #111827 0%, #1e293b 50%, #374151 100%); }
.blog-img--devops    { background: linear-gradient(135deg, #1f2937 0%, #111827 50%, #374151 100%); }
.blog-img--data      { background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #374151 100%); }
.blog-img--iot       { background: linear-gradient(135deg, #1e293b 0%, #0f172a 50%, #1f2937 100%); }

/* ── Image overlay (hover) ── */
.blog-card__img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.blog-card:hover .blog-card__img-overlay {
  background: rgba(0, 0, 0, 0.42);
}

.blog-card__read-more-overlay {
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.blog-card:hover .blog-card__read-more-overlay {
  opacity: 1;
  transform: translateY(0);
}

/* ── Category badge ── */
.blog-card__category {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #111827;
  border:1px solid #e5e7eb;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  pointer-events: none;
}

[data-theme="dark"] .blog-card__category {
  background: rgba(15, 23, 42, 0.85);
  color: #e5e7eb;
}

/* ── Card body ── */
.blog-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px 24px 20px;
}

/* ── Meta row ── */
.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.blog-card__date,
.blog-card__read-time {
  font-size: 0.78rem;
  color: #9ca3af;
  font-weight: 400;
}

.blog-card__dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #d1d5db;
  flex-shrink: 0;
}

/* ── Card title ── */
.blog-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 10px;
  color: #111827;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card__title a {
  color: inherit;
  overflow: hidden;
   display: -webkit-box;
   -webkit-line-clamp: 2; /* number of lines to show */
           line-clamp: 2; 
   -webkit-box-orient: vertical;
  text-decoration: none;
  transition: color 0.2s ease;
  min-height: 48px;
}

.blog-card__title a:hover {
  color: #388329;
}

[data-theme="dark"] .blog-card__title {
  color: #f1f5f9;
}

[data-theme="dark"] .blog-card__title a:hover {
  color: #4ade80;
}

/* ── Excerpt ── */
.blog-card__excerpt {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.65;
  margin: 0 0 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  
}

[data-theme="dark"] .blog-card__excerpt {
  color: #94a3b8;
}

/* ── Card footer ── */
.blog-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid #f3f4f6;
  margin-top: auto;
}

[data-theme="dark"] .blog-card__footer {
  border-top-color: #1e293b;
}

/* ── Read More CTA ── */
.blog-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #388329;
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s ease;
}

.blog-card__cta:hover {
  gap: 9px;
  color: #2d6b22;
  text-decoration: none;
}

[data-theme="dark"] .blog-card__cta {
  color: #4ade80;
}

[data-theme="dark"] .blog-card__cta:hover {
  color: #86efac;
}

/* ── Share widget ── */
.blog-card__share {
  position: relative;
  display: flex;
  align-items: center;
}

.blog-card__share-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: transparent;
  color: #6b7280;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
  flex-shrink: 0;
}

.blog-card__share-toggle:hover {
  border-color: #9ca3af;
  color: #111827;
  background: #f9fafb;
}

[data-theme="dark"] .blog-card__share-toggle {
  border-color: #374151;
  color: #94a3b8;
}

[data-theme="dark"] .blog-card__share-toggle:hover {
  border-color: #6b7280;
  color: #e5e7eb;
  background: #1e293b;
}

/* ── Share icons popup ── */
.blog-card__share-icons {
  position: absolute;
  bottom: calc(100% + 8px);
  right: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.22s ease, transform 0.22s ease;
  white-space: nowrap;
  z-index: 10;
}

.blog-card__share-icons--open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

[data-theme="dark"] .blog-card__share-icons {
  background: #1e293b;
  border-color: #334155;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.blog-card__share-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 7px;
  color: #4b5563;
  transition: background 0.2s ease, color 0.2s ease;
  text-decoration: none;
}

.blog-card__share-icon:hover { background: #f3f4f6; color: #111827; }

[data-theme="dark"] .blog-card__share-icon { color: #94a3b8; }
[data-theme="dark"] .blog-card__share-icon:hover { background: #374151; color: #e5e7eb; }

.blog-card__share-icon--fb:hover { color: #1877f2; }
.blog-card__share-icon--tw:hover { color: #111827; }
.blog-card__share-icon--li:hover { color: #0a66c2; }

/* ── Load More ── */
.blog-loadmore {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 56px;
}

.blog-loadmore__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  background: transparent;
  border: 1.5px solid #d1d5db;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #374151;
  cursor: pointer;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.blog-loadmore__btn:hover {
  border-color: #111827;
  color: #111827;
  background: #f9fafb;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

[data-theme="dark"] .blog-loadmore__btn {
  border-color: #374151;
  color: #9ca3af;
}

[data-theme="dark"] .blog-loadmore__btn:hover {
  border-color: #94a3b8;
  color: #f1f5f9;
  background: #1e293b;
}

.blog-loadmore__icon {
  transition: transform 0.2s ease;
}

.blog-loadmore__btn:hover .blog-loadmore__icon {
  transform: translateY(2px);
}

.blog-loadmore__count {
  font-size: 0.8rem;
  color: #9ca3af;
}
.hs-card:hover .hs-card__icon svg path{
  fill: #ffffff !important;
}
/* ── Dark theme — card ── */
[data-theme="dark"] .blog-card {
  background: #1e293b;
  border-color: #111827;
}

[data-theme="dark"] .blog-card:hover {
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
  border-color: #374151;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

@media (max-width: 640px) {
  .blog-section { padding: 60px 0 80px; }
  .blog-grid { grid-template-columns: 1fr; gap: 20px; }
  .blog-section__header { margin-bottom: 40px; }
  .blog-card__body { padding: 20px 20px 16px; }
}


/* ============================================================
   BLOG DETAIL PAGE  (.bd-*)
   ============================================================ */

/* ── Article Hero ── */
.bd-hero {
  padding: 148px 0 48px;
  background: #fff;
  border-bottom: 1px solid #f3f4f6;
}

[data-theme="dark"] .bd-hero {
  background: #0f172a;
  border-bottom-color: #1e293b;
}

.bd-hero__inner {
  max-width: 960px;
  width: 960px;
}

/* Breadcrumb */
.bd-hero__breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 0.82rem;
  color: #9ca3af;
  margin-bottom: 24px;
}

.bd-hero__breadcrumb a {
  color: #388329;
  text-decoration: none;
  transition: color 0.2s ease;
}

.bd-hero__breadcrumb a:hover {
  color: #2d6b22;
}

[data-theme="dark"] .bd-hero__breadcrumb a {
  color: #4ade80;
}

/* Meta top row */
.bd-hero__meta-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.bd-hero__category {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background: #f3f4f6;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #374151;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

[data-theme="dark"] .bd-hero__category {
  background: #1e293b;
  color: #94a3b8 !important;
}
[data-theme="dark"] .gallery figure.gallery-item .gallery-icon {
    height: 100%;
    background-color: #ffffffa1;
    overflow: hidden;
    width: 100%;
    border-radius: 10px;
}
[data-theme="dark"] .raven-adnav-menu-close-button{
  color: #fff !important;
}
.bd-hero__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #d1d5db;
  flex-shrink: 0;
}

.bd-hero__read-time {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  color: #9ca3af;
}

/* Title */
.bd-hero__title {
  font-size: clamp(1.9rem, 4vw, 2.9rem) !important;
  font-weight: 800;
  color: #111827;
  line-height: 1.18;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

[data-theme="dark"] .bd-hero__title {
  color: #f1f5f9;
}

/* Byline */
.bd-hero__byline {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding-bottom: 28px;
}

[data-theme="dark"] .bd-hero__byline {
  border-bottom-color: #1e293b;
}

.bd-hero__author-avatar {
  flex-shrink: 0;
}

.bd-hero__author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bd-hero__author-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #111827;
}

[data-theme="dark"] .bd-hero__author-name {
  color: #f1f5f9;
}

.bd-hero__author-role {
  font-size: 0.78rem;
  color: #9ca3af;
}

.bd-hero__divider {
  width: 1px;
  height: 28px;
  background: #e5e7eb;
  flex-shrink: 0;
}

[data-theme="dark"] .bd-hero__divider {
  background: #374151;
}

.bd-hero__date {
  font-size: 0.82rem;
  color: #6b7280;
}

/* ── Mobile share strip ── */
.bd-share-strip {
  display: none;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.bd-share-strip__label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.bd-share-strip__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  color: #4b5563;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.bd-share-strip__icon:hover { background: #f9fafb; border-color: #9ca3af; color: #111827; }
.bd-share-strip__icon--fb:hover { color: #1877f2; }
.bd-share-strip__icon--tw:hover { color: #111827; }
.bd-share-strip__icon--li:hover { color: #0a66c2; }

[data-theme="dark"] .bd-share-strip__icon {
  border-color: #374151;
  color: #94a3b8;
}

[data-theme="dark"] .bd-share-strip__icon:hover {
  background: #1e293b;
  border-color: #6b7280;
  color: #e5e7eb;
}

/* ── Featured banner image ── */
.bd-banner {
  background: #fff;
  padding: 15px 0;
}

[data-theme="dark"] .bd-banner {
  background: #0f172a;
}

.bd-banner__frame {
  max-width: 960px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  border: 1px solid #f3f4f6;
}

[data-theme="dark"] .bd-banner__frame {
  border-color: #1e293b;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.bd-banner__img {
  width: 100%;
  background-size: cover;
  background-position: center;
}
.bd-banner__img img{
  width: 100%;
      height: 100%;
    object-fit: contain;
}
.bd-banner__caption {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 16px;
  font-size: 0.78rem;
  color: #9ca3af;
  background: #fafafa;
  border-top: 1px solid #f3f4f6;
}

[data-theme="dark"] .bd-banner__caption {
  background: #111827;
  border-top-color: #1e293b;
  color: #6b7280;
}

/* ── Body layout (sticky sidebar + article) ── */
.bd-body-wrap {
  background: #fff;
  padding: 56px 0 72px;
}

[data-theme="dark"] .bd-body-wrap {
  background: #0f172a;
}

.bd-body-layout {
  display: grid;
  grid-template-columns: 52px minmax(0, 860px);
  gap: 48px;
  align-items: start;
}

/* ── Sticky Share Sidebar ── */
.bd-sticky-share {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: sticky;
  top: calc(var(--header-total-height) + 32px);
}

.bd-sticky-share__label {
  font-size: 0.65rem;
  font-weight: 600;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2px;
}

.bd-sticky-share__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #6b7280;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
}

.bd-sticky-share__btn:hover {
  border-color: #9ca3af;
  background: #f9fafb;
  color: #111827;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.bd-sticky-share__btn--fb:hover  { color: #1877f2; border-color: #1877f2; }
.bd-sticky-share__btn--tw:hover  { color: #111827; }
.bd-sticky-share__btn--li:hover  { color: #0a66c2; border-color: #0a66c2; }

.bd-sticky-share__btn--copied {
  border-color: #388329 !important;
  color: #388329 !important;
  background: rgba(56, 131, 41, 0.07) !important;
}

.bd-sticky-share__divider {
  width: 1px;
  height: 20px;
  background: #e5e7eb;
  margin: 2px 0;
}

[data-theme="dark"] .bd-sticky-share__btn {
  background: #0f172a;
  border-color: #374151;
  color: #94a3b8;
}

[data-theme="dark"] .bd-sticky-share__btn:hover {
  background: #1e293b;
  border-color: #6b7280;
  color: #e5e7eb;
}

[data-theme="dark"] .bd-sticky-share__divider {
  background: #374151;
}

/* ── Article prose ── */
.bd-article {
  min-width: 0;
}
.bd-article ul,
.bd-article ol{
  margin-left: 17px;
}

.bd-article__lead {
  font-size: 1.18rem;
  color: #374151;
  line-height: 1.8;
  font-weight: 400;
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid #f3f4f6;
}

[data-theme="dark"] .bd-article__lead {
  color: #cbd5e1;
  border-bottom-color: #1e293b;
}

.bd-article h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.02em;
  margin: 44px 0 16px;
  line-height: 1.25;
}

.bd-article h2:first-child { margin-top: 0; }

[data-theme="dark"] .bd-article h2 {
  color: #f1f5f9;
}

.bd-article h3 {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 700;
  color: #1f2937;
  letter-spacing: -0.01em;
  margin: 32px 0 12px;
  line-height: 1.3;
}

[data-theme="dark"] .bd-article h3 {
  color: #e2e8f0;
}

.bd-article p {
  font-size: 1.05rem;
  color: #374151;
  line-height: 1.85;
  margin-bottom: 20px;
}

/* ── Pull quote ── */
.bd-quote {
  margin: 36px 0;
  padding: 28px 32px;
  border-left: 3px solid #111827;
  background: #f9fafb;
  border-radius: 0 8px 8px 0;
}

[data-theme="dark"] .bd-quote {
  border-left-color: #e5e7eb;
  background: #111827;
}

.bd-quote p {
  font-size: 1.15rem;
  color: #111827 !important;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 12px;
  font-weight: 500;
}

[data-theme="dark"] .bd-quote p {
  color: #f1f5f9 !important;
}

.bd-quote cite {
  display: block;
  font-size: 0.82rem;
  color: #6b7280;
  font-style: normal;
  font-weight: 500;
}

[data-theme="dark"] .bd-quote cite {
  color: #94a3b8;
}

/* ── Callout / info box ── */
.bd-callout {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin: 28px 0;
  padding: 20px 24px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  font-size: 0.93rem;
  color: #374151;
  line-height: 1.7;
}

[data-theme="dark"] .bd-callout {
  background: #111827;
  border-color: #1e293b;
  color: #94a3b8;
}

.bd-callout__icon {
  color: #6b7280;
  flex-shrink: 0;
  margin-top: 2px;
}

.bd-callout strong {
  color: #111827;
}

[data-theme="dark"] .bd-callout strong {
  color: #f1f5f9;
}

/* ── Unordered list ── */
.bd-list {
  list-style: none;
  margin: 20px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bd-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 1.02rem;
  color: #374151;
  line-height: 1.75;
}

[data-theme="dark"] .bd-list li {
  color: #94a3b8;
}

.bd-list__marker {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #111827;
  flex-shrink: 0;
  margin-top: 10px;
}

[data-theme="dark"] .bd-list__marker {
  background: #e5e7eb;
}

.bd-list li strong,
.bd-article p strong {
  color: #111827;
  font-weight: 600;
}

[data-theme="dark"] .bd-list li strong,
[data-theme="dark"] .bd-article p strong {
  color: #f1f5f9;
}

/* ── Ordered list ── */
.bd-ordered-list {
  list-style: none;
  margin: 20px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  counter-reset: bd-counter;
}

.bd-ordered-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 1.02rem;
  color: #374151;
  line-height: 1.75;
  counter-increment: bd-counter;
}

[data-theme="dark"] .bd-ordered-list li {
  color: #94a3b8;
}

.bd-ordered-list li::before {
  content: counter(bd-counter);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid #d1d5db;
  background: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  color: #374151;
  flex-shrink: 0;
  margin-top: 2px;
}

[data-theme="dark"] .bd-ordered-list li::before {
  border-color: #374151;
  background: #111827;
  color: #94a3b8;
}

.bd-ordered-list li strong {
  color: #111827;
  font-weight: 600;
}

[data-theme="dark"] .bd-ordered-list li strong {
  color: #f1f5f9;
}

/* ── Tags section ── */
.bd-tags-section {
  background: #fff;
  padding: 0 0 48px;
}

[data-theme="dark"] .bd-tags-section {
  background: #0f172a;
}

.bd-tags-inner {
  max-width: 960px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 32px;
  border-top: 1px solid #f3f4f6;
}

[data-theme="dark"] .bd-tags-inner {
  border-top-color: #1e293b;
}

.bd-tags__label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.bd-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.bd-tag:hover {
  background: #111827;
  border-color: #111827;
  color: #fff;
}

[data-theme="dark"] .bd-tag {
  background: #1e293b;
  border-color: #374151;
  color: #94a3b8;
}

[data-theme="dark"] .bd-tag:hover {
  background: #e5e7eb;
  border-color: #e5e7eb;
  color: #111827;
}

/* ── Author card ── */
.bd-author-section {
  background: #fff;
  padding: 0 0 64px;
}

[data-theme="dark"] .bd-author-section {
  background: #0f172a;
}

.bd-author-card {
  max-width: 960px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 32px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
}

[data-theme="dark"] .bd-author-card {
  background: #111827;
  border-color: #1e293b;
}

.bd-author-card__avatar {
  flex-shrink: 0;
}

.bd-author-card__body {
  flex: 1;
  min-width: 0;
}

.bd-author-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.bd-author-card__name {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 2px;
}

[data-theme="dark"] .bd-author-card__name {
  color: #f1f5f9;
}

.bd-author-card__role {
  font-size: 0.8rem;
  color: #6b7280;
}

.bd-author-card__socials {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.bd-author-card__social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  color: #6b7280;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.bd-author-card__social:hover {
  border-color: #111827;
  color: #111827;
  background: #fff;
}

[data-theme="dark"] .bd-author-card__social {
  border-color: #374151;
  color: #94a3b8;
}

[data-theme="dark"] .bd-author-card__social:hover {
  border-color: #94a3b8;
  color: #e5e7eb;
  background: #1e293b;
}

.bd-author-card__bio {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.7;
  margin: 0;
}

/* ── Post navigation (prev / next) ── */
.bd-post-nav {
  background: #fafafa;
  border-top: 1px solid #f3f4f6;
  border-bottom: 1px solid #f3f4f6;
}

[data-theme="dark"] .bd-post-nav {
  background: #0f1623;
  border-top-color: #1e293b;
  border-bottom-color: #1e293b;
}

.bd-post-nav__inner {
  justify-content: space-between;
  display: flex;
  align-items: stretch;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.bd-post-nav__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 28px 0;
  text-decoration: none;
  transition: background 0.2s ease;
  border-radius: 4px;
}

.bd-post-nav__item--prev { align-items: flex-start; padding-right: 32px; }
.bd-post-nav__item--next { align-items: flex-end;   padding-left: 32px; }
.bd-post-nav__item--prev:hover,
.bd-post-nav__item--next:hover{
  text-decoration: none;
}
.bd-post-nav__item:hover .bd-post-nav__title {
  color: #388329;
}

[data-theme="dark"] .bd-post-nav__item:hover .bd-post-nav__title {
  color: #4ade80;
}

.bd-post-nav__dir {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.bd-post-nav__title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #374151;
  line-height: 1.4;
  transition: color 0.2s ease;
  max-width: 320px;
}

[data-theme="dark"] .bd-post-nav__title {
  color: #94a3b8;
}

.bd-post-nav__divider {
  width: 1px;
  background: #e5e7eb;
  margin: 12px 0;
  flex-shrink: 0;
}

[data-theme="dark"] .bd-post-nav__divider {
  background: #1e293b;
}

/* ── Related posts ── */
.bd-related {
  padding: 80px 0 100px;
  background: #fff;
}

[data-theme="dark"] .bd-related {
  background: #0f172a;
}

.bd-related__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 36px;
}

.bd-related__header-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bd-related__title {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.02em;
  margin: 0;
}

[data-theme="dark"] .bd-related__title {
  color: #f1f5f9;
}

/* ── Slider arrow controls ── */
.bd-related__controls {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.bd-related__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1.5px solid #e5e7eb;
  background: #fff;
  color: #374151;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
}

.bd-related__arrow:hover:not(:disabled) {
  border-color: #111827;
  background: #111827;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.bd-related__arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

[data-theme="dark"] .bd-related__arrow {
  border-color: #374151;
  background: #111827;
  color: #94a3b8;
}

[data-theme="dark"] .bd-related__arrow:hover:not(:disabled) {
  border-color: #e5e7eb;
  background: #e5e7eb;
  color: #111827;
}

/* ── Slider viewport & track ── */
.bd-related__viewport {
  overflow: hidden;
  padding-bottom: 20px;
}

.bd-related__track {
  display: flex;
  gap: 28px;
  transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.bd-related__track .bd-related-card {
  flex: 0 0 calc((100% - 56px) / 3);
  min-width: 0;
}

/* ── Dot indicators ── */
.bd-related__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.bd-related__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d1d5db;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, width 0.2s ease;
}

.bd-related__dot--active {
  background: #111827;
  width: 22px;
  border-radius: 4px;
}

[data-theme="dark"] .bd-related__dot {
  background: #374151;
}

[data-theme="dark"] .bd-related__dot--active {
  background: #e5e7eb;
}

/* Related card */
.bd-related-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.bd-related-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.07);
  border-color: #d1d5db;
}

[data-theme="dark"] .bd-related-card {
  background: #111827;
  border-color: #1e293b;
}

[data-theme="dark"] .bd-related-card:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  border-color: #374151;
}

.bd-related-card__image {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.bd-related-card__img-bg {
  width: 100%;
  height: 100%;
  background-color: #fff;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.bd-related-card__img-bg img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.bd-related-card:hover .bd-related-card__img-bg {
  transform: scale(1.05);
}

.bd-related-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s ease;
}

.bd-related-card:hover .bd-related-card__overlay {
  background: rgba(0, 0, 0, 0.15);
}

.bd-related-card__category {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 3px 10px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #111827;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  pointer-events: none;
}

[data-theme="dark"] .bd-related-card__category {
  background: rgba(15, 23, 42, 0.85);
  color: #e5e7eb;
}

.bd-related-card__body {
  padding: 20px 22px 22px;
}

.bd-related-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  color: #9ca3af;
  margin-bottom: 10px;
}

.bd-related-card__title {
  font-size: 0.97rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.bd-related-card:hover .bd-related-card__title {
  color: #388329;
}

[data-theme="dark"] .bd-related-card__title {
  color: #f1f5f9;
}

[data-theme="dark"] .bd-related-card:hover .bd-related-card__title {
  color: #4ade80;
}
.table {
  border-color: #dee2e6;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .bd-body-layout {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .bd-sticky-share { display: none; }
  .bd-share-strip  { display: flex; }

  .bd-banner__frame { max-width: 100%; border-radius: 10px; }

  .bd-related__track .bd-related-card { flex: 0 0 calc((100% - 28px) / 2); }

  .bd-hero__inner { max-width: 100%; }
  .bd-tags-inner  { max-width: 100%; }
  .bd-author-card { max-width: 100%; }
}

@media (max-width: 640px) {
  .products-hero__breadcrumb{
    flex-wrap: wrap;
  }
  .csd-article .csd-section:last-child{
    margin-bottom: 0;
  }
  .ss-card__img{
    height: 200px;
  }
  .form-d-flex{
    flex-direction: column;
    gap: 0;
  }
  .bd-hero { padding: 80px 20px 36px; }
  
  .bd-hero__title { font-size: 1rem !important;  margin-bottom: 10px; font-weight: 600 !important;}
  .bd-hero__byline{
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  .bd-hero__byline { gap: 10px; }
  .bd-hero__divider { display: none; }

  .bd-body-wrap { padding: 36px 0 56px; }

  .bd-article__lead { font-size: 1.05rem; }
  .bd-article p     { font-size: 0.97rem; }

  .bd-quote { padding: 20px 20px; }
  .bd-quote p { font-size: 1rem; }

  .bd-author-card { flex-direction: column; gap: 16px; }
  .bd-author-card__avatar { display: none; }

  .bd-post-nav__inner { flex-direction: column; gap: 0; }
  .bd-post-nav__divider { width: 100%; height: 1px; margin: 0; }
  .bd-post-nav__item--prev { padding-right: 0; padding-bottom: 20px; }
  .bd-post-nav__item--next { align-items: flex-start; padding-left: 0; padding-top: 20px; }

  .bd-related { padding: 60px 0 80px; }
  .bd-related__track .bd-related-card { flex: 0 0 100%; }
  .bd-related__track { gap: 28  px; }
}


/* ============================================
   INDUSTRIES PAGE
   ============================================ */

/* --- Section wrapper --- */
.ind-section {
  padding: 100px 0 120px;
  background: #ffffff;
}

[data-theme="dark"] .ind-section {
  background: var(--color-bg);
}

/* --- Header --- */
.ind-section__header {
  max-width: 680px;
  margin: 0 auto 64px;
  text-align: center;
}

.ind-section__title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: #0f1b2d;
  line-height: 1.2;
  margin: 12px 0 16px;
}

[data-theme="dark"] .ind-section__title {
  color: var(--color-text);
}

.ind-section__desc {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

[data-theme="dark"] .ind-section__desc {
  color: var(--color-text-light);
}

/* --- Grid --- */
.ind-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* --- Card --- */
.ind-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 28px 24px 24px;
  cursor: pointer;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  overflow: hidden;
}

.ind-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(56, 131, 41, 0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.ind-card:hover {
  border-color: var(--color-accent);
  box-shadow: 0 8px 32px rgba(56, 131, 41, 0.14);
  transform: translateY(-4px);
}

.ind-card:hover::before {
  opacity: 1;
}

[data-theme="dark"] .ind-card {
  background: var(--color-bg-card);
  border-color: var(--color-border);
}

[data-theme="dark"] .ind-card:hover {
  border-color: var(--color-accent);
  box-shadow: 0 8px 32px rgba(56, 131, 41, 0.22);
}

/* --- Icon --- */
.ind-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(56, 131, 41, 0.10);
  border-radius: 10px;
  margin-bottom: 18px;
  flex-shrink: 0;
  transition: background 0.25s ease;
}

.ind-card:hover .ind-card__icon {
  background: rgba(56, 131, 41, 0.18);
}

.ind-card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-accent);
}

[data-theme="dark"] .ind-card__icon {
  background: rgba(56, 131, 41, 0.15);
}

[data-theme="dark"] .ind-card:hover .ind-card__icon {
  background: rgba(56, 131, 41, 0.25);
}

/* --- Body --- */
.ind-card__body {
  flex: 1;
}

.ind-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: #0f1b2d;
  margin: 0 0 8px;
  line-height: 1.3;
  transition: color 0.2s ease;
}

.ind-card:hover .ind-card__title {
  color: var(--color-accent);
}

[data-theme="dark"] .ind-card__title {
  color: var(--color-text);
}

[data-theme="dark"] .ind-card:hover .ind-card__title {
  color: var(--color-accent);
}

.ind-card__desc {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

[data-theme="dark"] .ind-card__desc {
  color: var(--color-text-light);
}

/* --- Arrow --- */
.ind-card__arrow {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 16px;
  color: #cbd5e1;
  transition: color 0.25s ease, transform 0.25s ease;
}

.ind-card__arrow svg {
  width: 18px;
  height: 18px;
}

.ind-card:hover .ind-card__arrow {
  color: var(--color-accent);
  transform: translateX(4px);
}

[data-theme="dark"] .ind-card__arrow {
  color: #475569;
}

[data-theme="dark"] .ind-card:hover .ind-card__arrow {
  color: var(--color-accent);
}

/* --- Responsive --- */
@media (max-width: 1200px) {
  .ind-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 860px) {
  .ind-section {
    padding: 72px 0 88px;
  }

  .ind-section__header {
    margin-bottom: 44px;
  }

  .ind-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .ind-section {
    padding: 56px 0 72px;
  }

  .ind-grid {
    grid-template-columns: 1fr;
  }

  .ind-card {
    padding: 22px 20px 20px;
  }
}


/* ============================================
   VACANCIES LISTING PAGE  (.vac-*)
   ============================================ */

/* --- Section --- */
.vac-section {
  padding: 100px 0 120px;
  background: #ffffff;
}

[data-theme="dark"] .vac-section {
  background: var(--color-bg);
}

/* --- Header --- */
.vac-section__header {
  max-width: 680px;
  margin: 0 auto 52px;
  text-align: center;
}

.vac-section__title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: #0f1b2d;
  line-height: 1.2;
  margin: 12px 0 16px;
}

[data-theme="dark"] .vac-section__title { color: var(--color-text); }

.vac-section__desc {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

[data-theme="dark"] .vac-section__desc { color: var(--color-text-light); }

/* --- Filters --- */
.vac-filters {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 25px;
  justify-content: space-between;
}

.vac-filter {
  position: relative;
  display: flex;
  gap: 15px;
  align-items: center;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.vac-filter select{
  width: 200px;
}


/* [data-theme="dark"] .vac-filter {
  background: var(--color-bg-card);
  border-color: var(--color-border);
} */

.vac-filter__icon {
  width: 16px;
  height: 16px;
  color: #94a3b8;
  flex-shrink: 0;
  margin-right: 10px;
}

.vac-filter__select {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  color: #0f1b2d;
  cursor: pointer;
  padding-right: 8px;
}

[data-theme="dark"] .vac-filter__select {
  color: var(--color-text);
}

.vac-filter__select option {
  background: #ffffff;
  color: #0f1b2d;
}

[data-theme="dark"] .vac-filter__select option {
  background: var(--color-bg-card);
  color: var(--color-text);
}

.vac-filter__chevron {
  width: 14px;
  height: 14px;
  color: #94a3b8;
  flex-shrink: 0;
  pointer-events: none;
}

.vac-filter__count {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 500;
  display: none !important;
}

[data-theme="dark"] .vac-filter__count { color: var(--color-text-light); }

/* --- List --- */
.vac-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* --- Card --- */
.vac-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 28px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 28px;
  align-items: start;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.vac-card:hover {
  border-color: var(--color-accent);
  box-shadow: 0 6px 28px rgba(56, 131, 41, 0.10);
}

[data-theme="dark"] .vac-card {
  background: var(--color-bg-card);
  border-color: var(--color-border);
}

[data-theme="dark"] .vac-card:hover {
  border-color: var(--color-accent);
  box-shadow: 0 6px 28px rgba(56, 131, 41, 0.18);
}

.vac-card__meta {
  display: flex;
  margin-bottom: 15px;
  gap: 6px;
  padding-top: 2px;
  min-width: 110px;
}

.vac-card__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.vac-card__tag--dept {
  background: rgba(56, 131, 41, 0.10);
  color: var(--color-accent);
}

.vac-card__tag--type {
  background: rgba(33, 173, 228, 0.10);
  color: var(--color-secondary);
}

.vac-card__tag--intern {
  background: rgba(255, 199, 50, 0.15);
  color: #b45309;
}

[data-theme="dark"] .vac-card__tag--intern { color: #fbbf24; }

.vac-card__body { flex: 1; }

.vac-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f1b2d;
  margin: 0 0 10px;
  line-height: 1.3;
}

.vac-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.vac-card__title a:hover { color: var(--color-accent); }

[data-theme="dark"] .vac-card__title { color: var(--color-text); }

.vac-card__info {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
}

.vac-card__info li {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.85rem;
  color: #64748b;
}

.vac-card__info li svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

[data-theme="dark"] .vac-card__info li { color: var(--color-text-light); }

.vac-card__body p {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.65;
  margin: 0;
   overflow: hidden;
   display: -webkit-box;
   -webkit-line-clamp: 2; /* number of lines to show */
           line-clamp: 2; 
   -webkit-box-orient: vertical
}

[data-theme="dark"] .vac-card__excerpt { color: var(--color-text-light); }

.vac-card__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: stretch;
  min-width: 148px;
}

.vac-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  border: none;
}

.vac-card__btn svg { width: 14px; height: 14px; flex-shrink: 0; }

.vac-card__btn--outline {
  background: transparent;
  border: 1.5px solid #e5e7eb;
  color: #475569;
}

.vac-card__btn--outline:hover {
  text-decoration: none;
  border-color: var(--color-accent);
  color: var(--color-accent);
}

[data-theme="dark"] .vac-card__btn--outline {
  border-color: var(--color-border);
  color: var(--color-text-light);
}

[data-theme="dark"] .vac-card__btn--outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.vac-card__btn--primary {
  background: var(--color-highlight);
  color: #0f172a;
}

.vac-card__btn--primary:hover {
  text-decoration: none;
  color: #0f172a;
  background: var(--color-highlight-hover);
  box-shadow: 0 4px 14px var(--color-highlight-glow);
}

.vac-card__btn--linkedin {
  background: #0a66c2;
  color: #ffffff;
}

.vac-card__btn--linkedin:hover {
  background: #004182;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 4px 14px rgba(10, 102, 194, 0.30);
}

.vac-empty {
  text-align: center;
  padding: 64px 24px;
  color: #94a3b8;
}

.vac-empty svg {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  color: #cbd5e1;
}

.vac-empty p {
  font-size: 1rem;
  color: #64748b;
}

.vac-empty button {
  background: none;
  border: none;
  color: var(--color-accent);
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  font-size: inherit;
}

@media (max-width: 900px) {
  .vac-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 22px;
    flex-direction: column;
  }

  .vac-card__meta { flex-direction: row; flex-wrap: wrap; min-width: unset; }

  .vac-card__actions {
    flex-direction: row;
    flex-wrap: wrap;
    min-width: unset;
  }
  
}

@media (max-width: 640px) {
  .vac-section { padding: 72px 0 88px; }
  .vac-filters { gap: 12px; flex-direction: column;}
  .vac-filter  { min-width: 100%; flex-direction: column;}
  .vac-filter__count { margin-left: 0; }
  .vac-card__btn { flex: 1; }
  .vac-filter select{
    width: 100%;
  }
}


/* ============================================
   VACANCY DETAIL PAGE  (.jd-*)
   ============================================ */

/* .jd-hero — now uses products-hero shell; only inner elements need styling */
.jd-hero__inner {
  position: relative;
  max-width: 860px;
}

.jd-hero__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.jd-hero__tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
}

.jd-hero__tag--dept {
  background: rgba(56, 131, 41, 0.12);
  color: var(--color-accent);
}

.jd-hero__tag--type {
  background: rgba(33, 173, 228, 0.12);
  color: var(--color-secondary);
}

.jd-hero__meta {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
}

.jd-hero__meta li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: #6b7280;
}

.jd-hero__meta li svg { width: 15px; height: 15px; color: #9ca3af; }

[data-theme="dark"] .jd-hero__meta li { color: var(--color-text-light); }
[data-theme="dark"] .jd-hero__meta li svg { color: var(--color-text-light); }

[data-theme="dark"] .jd-hero__tag--dept {
  background: rgba(56, 131, 41, 0.20);
  color: #6ee75e;
}

[data-theme="dark"] .jd-hero__tag--type {
  background: rgba(33, 173, 228, 0.20);
  color: #7dd3fc;
}

.jd-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Shared button */
.jd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 9px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
  cursor: pointer;
  border: none;
}

.jd-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.jd-btn--lg { padding: 14px 28px; font-size: 0.95rem; }
.jd-btn--full { width: 100%; }

.jd-btn--primary { background: var(--color-highlight); color: #0f172a; }
.jd-btn--primary:hover {
  color: #0f172a; 
  background: var(--color-highlight-hover);
  box-shadow: 0 6px 20px var(--color-highlight-glow);
  transform: translateY(-1px);
  text-decoration: none;
}

.jd-btn--linkedin { background: #0a66c2; color: #ffffff; }
.jd-btn--linkedin:hover {
  background: #004182;
  box-shadow: 0 6px 20px rgba(10, 102, 194, 0.35);
  transform: translateY(-1px);
  text-decoration: none;
  color: #fff;
}

/* Body */
.jd-body {
  padding: 80px 0 120px;
}

[data-theme="dark"] .jd-body { background: var(--color-bg-alt); }

.jd-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 40px;
  align-items: start;
}

/* Article */
.jd-article {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 48px 52px;
}

[data-theme="dark"] .jd-article {
  background: var(--color-bg-card);
  border-color: var(--color-border);
}

.jd-section { margin-bottom: 44px; }
.jd-section:last-child { margin-bottom: 0; }

.jd-section__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f1b2d;
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f1f5f9;
}

[data-theme="dark"] .jd-section__title {
  color: var(--color-text);
  border-bottom-color: var(--color-border);
}

.jd-article p {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.75;
  margin: 0 0 14px;
}
.jd-article ul,
.jd-article ol{
    padding-left: 15px;
}
.jd-article p:last-child { margin-bottom: 0; }
[data-theme="dark"] .jd-article p,
[data-theme="dark"] .jd-article ol,
[data-theme="dark"] .jd-article ul { color: var(--color-text-light); }

.jd-link {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 600;
}

.jd-link:hover { text-decoration: underline; }

.jd-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.jd-list li {
  position: relative;
  padding-left: 22px;
  font-size: 0.93rem;
  color: #475569;
  line-height: 1.65;
}
footer a.raven-post-title-link {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}
[data-theme="dark"] .jd-list li { color: var(--color-text-light); }

.jd-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.7;
}

.jd-list--check li { padding-left: 26px; }
.jd-list--check li::before { display: none; }

.jd-list--check li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 15px;
  height: 15px;
  background: rgba(56, 131, 41, 0.12);
  border-radius: 50%;
}

.jd-list--check li > span::before,
.jd-list--check li::before {
  display: block;
  left: 3px;
  top: 8px;
  width: 9px;
  height: 5px;
  border-radius: 0;
  background: none;
  border-bottom: 2px solid var(--color-accent);
  border-left: 2px solid var(--color-accent);
  transform: rotate(-45deg);
  opacity: 1;
}

/* Perks grid */
.jd-perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.jd-perk {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: #f8fafc;
  border-radius: 10px;
  border: 1px solid #f1f5f9;
}

[data-theme="dark"] .jd-perk {
  background: rgba(255,255,255,0.04);
  border-color: var(--color-border);
}

.jd-perk__icon {
  width: 36px;
  height: 36px;
  background: rgba(56, 131, 41, 0.10);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.jd-perk__icon svg { width: 16px; height: 16px; color: var(--color-accent); }

.jd-perk div:last-child {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.jd-perk strong {
  font-size: 0.875rem;
  font-weight: 700;
  color: #0f1b2d;
}

[data-theme="dark"] .jd-perk strong { color: var(--color-text); }

.jd-perk span {
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.4;
}

[data-theme="dark"] .jd-perk span { color: var(--color-text-light); }

/* Bottom CTA */
.jd-apply-cta {
  margin-top: 48px;
  padding: 36px 40px;
  background: linear-gradient(135deg, #0f1b2d 0%, #1a2d4a 100%);
  border-radius: 14px;
  text-align: center;
}

.jd-apply-cta__title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 10px;
}

.jd-apply-cta__desc {
  font-size: 0.9rem;
  color: #94a3b8;
  margin: 0 0 24px;
  line-height: 1.6;
}

.jd-apply-cta__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Sidebar */
.jd-sidebar {
  position: sticky;
  top: calc(var(--header-total-height, 88px) + 24px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.jd-summary-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 28px 28px 24px;
}

[data-theme="dark"] .jd-summary-card {
  background: var(--color-bg-card);
  border-color: var(--color-border);
}

.jd-summary-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: #0f1b2d;
  margin: 0 0 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid #f1f5f9;
}

[data-theme="dark"] .jd-summary-card__title {
  color: var(--color-text);
  border-bottom-color: var(--color-border);
}

.jd-summary-card__list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.jd-summary-card__list li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.875rem;
}

.jd-summary-card__label {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #94a3b8;
  white-space: nowrap;
  font-weight: 500;
}

.jd-summary-card__label svg { width: 14px; height: 14px; flex-shrink: 0; }

.jd-summary-card__value {
  color: #0f1b2d;
  font-weight: 600;
  text-align: right;
}

[data-theme="dark"] .jd-summary-card__value { color: var(--color-text); }

.jd-summary-card__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.jd-share-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 24px 28px;
}

[data-theme="dark"] .jd-share-card {
  background: var(--color-bg-card);
  border-color: var(--color-border);
}

.jd-share-card__title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0f1b2d;
  margin: 0 0 14px;
}

[data-theme="dark"] .jd-share-card__title { color: var(--color-text); }

.jd-share-card__buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.jd-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 7px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background 0.2s ease, transform 0.15s ease;
  flex: 1;
  justify-content: center;
}

.jd-share-btn svg { width: 13px; height: 13px; }
.jd-share-btn:hover { transform: translateY(-1px); }

.jd-share-btn--linkedin { background: #0a66c2; color: #fff; }
.jd-share-btn--linkedin:hover { background: #004182; }

.jd-share-btn--twitter { background: #000000; color: #fff; }
.jd-share-btn--twitter:hover { background: #333333; }

.jd-share-btn--copy { background: #f1f5f9; color: #475569; }
.jd-share-btn--copy:hover { background: #e2e8f0; color: #0f1b2d; }

[data-theme="dark"] .jd-share-btn--copy {
  background: var(--color-border);
  color: var(--color-text-light);
}

.jd-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #64748b;
  text-decoration: none;
  padding: 12px 0;
  transition: color 0.2s ease;
}

.jd-back-link svg { width: 16px; height: 16px; }
.jd-back-link:hover { color: var(--color-accent); }

[data-theme="dark"] .jd-back-link { color: var(--color-text-light); }
[data-theme="dark"] .jd-back-link:hover { color: var(--color-accent); }

/* Responsive */
@media (max-width: 1100px) {
  .jd-layout {
    grid-template-columns: 1fr;
  }

  .jd-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .jd-back-link { grid-column: span 2; }
}

@media (max-width: 860px) {
  .jd-body { padding: 56px 0 88px; }
  .jd-article { padding: 32px 24px; }
  .jd-perks { grid-template-columns: 1fr; }
  .jd-sidebar { grid-template-columns: 1fr; }
  .jd-back-link { grid-column: span 1; }
}

@media (max-width: 640px) {
  .jd-hero__actions { flex-direction: column; }
  .jd-btn { width: 100%; }
  .jd-apply-cta { padding: 28px 20px; }
  .jd-apply-cta__actions { flex-direction: column; }
  .jd-share-card__buttons { flex-direction: column; }
  .jd-share-btn { flex: unset; }
}


/* ============================================
   CONTACT PAGE  (.ct-*)
   ============================================ */

/* --- Info Strip --- */
.ct-strip {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  padding: 56px 0;
}

[data-theme="dark"] .ct-strip {
  background: var(--color-bg-alt);
  border-bottom-color: var(--color-border);
}

.ct-strip__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}

.ct-strip__divider {
  width: 1px;
  background: #e5e7eb;
  align-self: stretch;
  margin: 0 48px;
}

[data-theme="dark"] .ct-strip__divider { background: var(--color-border); }

.ct-strip__card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.ct-strip__icon {
  width: 44px;
  height: 44px;
  background: rgba(56, 131, 41, 0.10);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ct-strip__icon svg {
  width: 20px;
  height: 20px;
  color: var(--color-accent);
}

[data-theme="dark"] .ct-strip__icon { background: rgba(56, 131, 41, 0.15); }

.ct-strip__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ct-strip__label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  margin: 0 0 6px;
}

.ct-strip__value {
  font-size: 0.875rem;
  color: #374151;
  line-height: 1.5;
  margin: 0;
  display: block;
}

[data-theme="dark"] .ct-strip__value { color: var(--color-text-light); }

.ct-strip__link {
  text-decoration: none;
  transition: color 0.2s ease;
}

.ct-strip__link:hover { color: var(--color-accent); }

/* --- Main Section --- */
.ct-main {
  padding: 100px 0 120px;
  background: #f8fafc;
}

[data-theme="dark"] .ct-main { background: var(--color-bg); }

.ct-layout {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 72px;
  align-items: start;
}

/* --- Form wrap --- */
.ct-form-wrap .section__label { display: block; margin-bottom: 10px; }

.ct-form-wrap__title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #0f1b2d;
  line-height: 1.2;
  margin: 0 0 12px;
}

.ct-form-wrap__title span { color: var(--color-accent); }

[data-theme="dark"] .ct-form-wrap__title { color: var(--color-text); }

.ct-form-wrap__desc {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.65;
  margin: 0 0 36px;
}

[data-theme="dark"] .ct-form-wrap__desc { color: var(--color-text-light); }

/* --- Offices panel --- */
.ct-offices .section__label { display: block; margin-bottom: 10px; }

.ct-offices__title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #0f1b2d;
  line-height: 1.2;
  margin: 0 0 36px;
}

.ct-offices__title span { color: var(--color-accent); }

[data-theme="dark"] .ct-offices__title { color: var(--color-text); }

.ct-offices__country {
  margin-bottom: 32px;
}

.ct-offices__country-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e5e7eb;
}

.ct-offices__country-header svg {
  width: 14px;
  height: 14px;
}

[data-theme="dark"] .ct-offices__country-header {
  color: var(--color-text-light);
  border-bottom-color: var(--color-border);
}

/* --- Office card --- */
.ct-office-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 10px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ct-office-card:last-child { margin-bottom: 0; }

.ct-office-card:hover {
  border-color: var(--color-accent);
  box-shadow: 0 4px 16px rgba(56, 131, 41, 0.08);
}

[data-theme="dark"] .ct-office-card {
  background: var(--color-bg-card);
  border-color: var(--color-border);
}

[data-theme="dark"] .ct-office-card:hover {
  border-color: var(--color-accent);
  box-shadow: 0 4px 16px rgba(56, 131, 41, 0.15);
}

.ct-office-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.ct-office-card__city {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f1b2d;
}

[data-theme="dark"] .ct-office-card__city { color: var(--color-text); }

.ct-office-card__badge {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 20px;
  background: rgba(56, 131, 41, 0.10);
  color: var(--color-accent);
}

.ct-office-card__address {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0 0 10px;
}

[data-theme="dark"] .ct-office-card__address { color: var(--color-text-light); }

.ct-office-card__vat {
  font-size: 0.78rem;
  color: #94a3b8;
  margin: 0 0 10px;
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
}

.ct-office-card__map {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-accent);
  text-decoration: none;
  transition: gap 0.2s ease;
}

.ct-office-card__map svg { width: 13px; height: 13px; }
.ct-office-card__map:hover { gap: 8px; }

/* --- Responsive --- */
@media (max-width: 1100px) {
  .ct-layout {
    grid-template-columns: 1fr;
    gap: 56px;
  }
}

@media (max-width: 860px) {
  .ct-strip__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .ct-strip__divider { display: none; }

  .ct-main { padding: 72px 0 88px; }
}

@media (max-width: 640px) {
  .ct-strip { padding: 40px 0; }
  .co-clients__slider{
    height: 200px !important;
  }
}



/* ============================================
   FIXED ACTION BUTTONS (FAB Stack)
   ============================================ */
.fab-stack {
  position: fixed;
  bottom: 28px;
  right: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 9000;
}

/* Base FAB */
.fab {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
  flex-shrink: 0;
}

.fab:hover {
  transform: translateY(-3px) scale(1.08);
}

/* Back to Top */
.fab--top {
  background: #ffffff;
  color: #0f172a;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.08);
  /* Hidden until scrolled — JS adds .is-visible */
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

.fab--top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.fab--top svg {
  width: 20px;
  height: 20px;
}

.fab--top:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

/* Live Chat */
.fab--chat {
  background: var(--color-highlight, #ffc732);
  color: #0f172a;
  box-shadow: 0 4px 16px rgba(255, 199, 50, 0.45);
}

.fab--chat svg {
  width: 22px;
  height: 22px;
}

.fab--chat:hover {
  box-shadow: 0 8px 24px rgba(255, 199, 50, 0.55);
}

/* WhatsApp */
.fab--whatsapp {
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
}

.fab--whatsapp svg {
  width: 24px;
  height: 24px;
}

.fab--whatsapp:hover {
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.55);
}

/* Tooltip labels */
.fab[title]:hover::before {
  content: attr(title);
  position: absolute;
  right: calc(100% + 12px);
  background: #0f172a;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 5px 10px;
  border-radius: 6px;
  pointer-events: none;
  opacity: 1;
  letter-spacing: 0.02em;
}

.fab[title]:hover::after {
  content: '';
  position: absolute;
  right: calc(100% + 6px);
  border: 5px solid transparent;
  border-left-color: #0f172a;
  pointer-events: none;
}

/* Mobile: slightly smaller + tighter */
@media (max-width: 768px) {
  .fab-stack {
    bottom: 20px;
    right: 16px;
    gap: 10px;
  }

  .fab {
    width: 44px;
    height: 44px;
  }

  .fab--top svg  { width: 18px; height: 18px; }
  .fab--chat svg { width: 19px; height: 19px; }
  .fab--whatsapp svg { width: 21px; height: 21px; }

  /* Hide tooltips on mobile */
  .fab[title]:hover::before,
  .fab[title]:hover::after {
    display: none;
  }
}
