/*
 * Hi-Tech Template — Custom CSS
 * LPK Ken Ichiru Indonesia
 * Comprehensive implementation of Hi-Tech template classes
 * Using Bootstrap 5.3 as foundation
 */

/* =============================================
   CSS Variables / Design Tokens
   ============================================= */
:root {
  --primary: #dc2626;
  --primary-light: #ef4444;
  --primary-dark: #991b1b;
  --secondary: #f87171;
  --secondary-dark: #dc2626;
  --accent: #b91c1c;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --dark: #0f172a;
  --dark-2: #1e293b;
  --dark-3: #334155;
  --gray: #64748b;
  --gray-light: #94a3b8;
  --gray-lighter: #cbd5e1;
  --light: #fff5f5;
  --lighter: #fef2f2;
  --white: #ffffff;
  --gradient-1: linear-gradient(135deg, #dc2626 0%, #f87171 100%);
  --gradient-2: linear-gradient(135deg, #b91c1c 0%, #f87171 100%);
  --gradient-3: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  --gradient-text: linear-gradient(135deg, #dc2626, #f87171);
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,.1);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --font-primary: 'Mulish', system-ui, -apple-system, sans-serif;
  --transition: all .3s ease;
  --transition-fast: all .15s ease;
  --section-gap: 100px;
  --section-gap-top: 100px;
  --section-gap-bottom: 100px;
}

/* =============================================
   Reset & Base
   ============================================= */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

a:hover { color: var(--primary); }

h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: .5em;
  color: var(--dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); letter-spacing: -2px; }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); letter-spacing: -1.5px; }
h3 { font-size: clamp(1.375rem, 3vw, 1.875rem); letter-spacing: -1px; }
h4 { font-size: clamp(1.125rem, 2vw, 1.375rem); letter-spacing: -.5px; }

p { margin-bottom: 1rem; color: var(--gray); }

ul { list-style: none; padding: 0; margin: 0; }

.wrapper { position: relative; overflow: hidden; }

/* Section spacing */
.ibt-section-gap { padding: var(--section-gap) 0; }
.ibt-section-gapTop { padding-top: var(--section-gap-top); }
.ibt-section-gapBottom { padding-bottom: var(--section-gap-bottom); }

/* Container variants */
.container2 {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 15px;
}
.container3 {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
}

/* =============================================
   Preloader
   ============================================= */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .5s, visibility .5s;
}
#preloader.loaded {
  opacity: 0;
  visibility: hidden;
}
#preloader .loader {
  text-align: center;
}
#preloader .loader img {
  width: 60px;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: .7; }
}
/* CSS-only preloader fallback when image missing */
#preloader .loader:empty::after,
#preloader .loader img[src=""]::after {
  content: '';
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255,255,255,.2);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  display: block;
  margin: 0 auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* =============================================
   Theme Button
   ============================================= */
#themeBtn {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--gray-lighter);
  background: var(--white);
  color: var(--dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
#themeBtn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* =============================================
   Buttons — ibt-btn family
   ============================================= */
.ibt-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.ibt-btn i { font-size: 12px; transition: transform .3s; }
.ibt-btn:hover i { transform: translateX(4px) translateY(-2px); }

/* Primary */
.ibt-btn-primary,
.ibt-btn-secondary {
  background: var(--gradient-1);
  color: var(--white);
  border-color: transparent;
}
.ibt-btn-primary:hover,
.ibt-btn-secondary:hover {
  box-shadow: 0 8px 25px rgba(79,70,229,.35);
  transform: translateY(-2px);
  color: var(--white);
}

/* Outline */
.ibt-btn-outline {
  background: transparent;
  border-color: var(--dark);
  color: var(--dark);
}
.ibt-btn-outline:hover {
  background: var(--dark);
  color: var(--white);
}

/* Outline 3 (header/CTA) */
.ibt-btn-outline-3 {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
}
.ibt-btn-outline-3:hover {
  background: var(--primary);
  color: var(--white);
}

/* Rounded */
.ibt-btn-rounded { border-radius: var(--radius-full); }

/* =============================================
   Scroll To Top
   ============================================= */
.scroll-top-btn,
#scrollBtn {
  position: fixed;
  right: 20px;
  bottom: 30px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--gradient-1);
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}
.scroll-top-btn.show,
#scrollBtn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top-btn:hover,
#scrollBtn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* =============================================
   Video Modal
   ============================================= */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.85);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
}
.video-modal.active { display: flex; }
.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 800px;
}
.video-modal-content iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
  border-radius: var(--radius-md);
}
.video-modal .close-btn {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--white);
  font-size: 30px;
  cursor: pointer;
  background: none;
  border: none;
}

/* =============================================
   Search Popup
   ============================================= */
.search-popup {
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,.95);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.search-popup.active {
  opacity: 1;
  visibility: visible;
}
.search-popup-content {
  width: 90%;
  max-width: 600px;
}
.search-popup-content form {
  display: flex;
  background: var(--white);
  border-radius: var(--radius-full);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.search-popup-content input {
  flex: 1;
  border: none;
  padding: 16px 24px;
  font-size: 16px;
  outline: none;
  font-family: var(--font-primary);
}
.search-popup-content button[type="submit"] {
  padding: 16px 24px;
  background: var(--primary);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-size: 16px;
}
.close-popup {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}
.close-popup::before,
.close-popup::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background: var(--white);
}
.close-popup::before { transform: translate(-50%,-50%) rotate(45deg); }
.close-popup::after { transform: translate(-50%,-50%) rotate(-45deg); }
.close-popup:hover { border-color: var(--white); transform: rotate(90deg); }

/* =============================================
   Side Menu
   ============================================= */
.side-menu {
  position: fixed;
  top: 0;
  left: -400px;
  width: 380px;
  height: 100vh;
  background: var(--dark);
  z-index: 10001;
  transition: left .4s cubic-bezier(.25,.8,.25,1);
  overflow-y: auto;
  padding: 40px 30px;
}
.side-menu.active { left: 0; }
.side-menu #overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  display: none;
  z-index: -1;
}
.side-menu.active #overlay { display: block; }
.side-menu .close-btn {
  color: var(--white);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.side-menu .close-btn:hover { color: var(--primary-light); }
.side-menu .logo { display: block; margin-bottom: 30px; }
.side-menu .logo img { height: 30px; }
.side-menu .menu-content { color: var(--gray-light); }
.side-menu .sidebar-menu .title {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 15px;
}
.side-menu .sidebar-menu p {
  color: var(--gray-light);
  font-size: 14px;
  line-height: 1.8;
}
.side-menu .sidebar-menu .nmbr,
.side-menu .sidebar-menu .email {
  display: block;
  color: var(--gray-light);
  margin: 5px 0;
  font-size: 14px;
}
.side-menu .sidebar-menu .nmbr:hover,
.side-menu .sidebar-menu .email:hover { color: var(--primary-light); }
.side-menu .sidebar-menu .ibt-btn {
  margin-top: 15px;
  font-size: 13px;
  padding: 8px 20px;
}
.side-menu .sidebar-menu ul li a {
  color: var(--gray-light);
  padding: 5px 0;
  display: block;
  font-size: 14px;
}
.side-menu .sidebar-menu ul li a:hover { color: var(--white); padding-left: 5px; }
.side-menu .social-icon {
  display: flex;
  gap: 10px;
  margin-top: 30px;
}
.side-menu .social-icon li a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-light);
  font-size: 14px;
}
.side-menu .social-icon li a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

/* =============================================
   Mobile Menu (side-menu2)
   ============================================= */
.side-menu2 {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: var(--dark);
  z-index: 10001;
  transition: right .4s cubic-bezier(.25,.8,.25,1);
  overflow-y: auto;
  padding: 30px;
}
.side-menu2.active { right: 0; }
.side-menu2 .menu-btns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.side-menu2 .menu-btns .popup-search {
  color: var(--white);
  font-size: 18px;
}
.side-menu2 .close-btn {
  width: 30px;
  height: 30px;
  position: relative;
  background: transparent;
  border: none;
  cursor: pointer;
}
.side-menu2 .close-btn::before,
.side-menu2 .close-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background: var(--white);
}
.side-menu2 .close-btn::before { transform: translate(-50%,-50%) rotate(45deg); }
.side-menu2 .close-btn::after { transform: translate(-50%,-50%) rotate(-45deg); }
.side-menu2 > ul { margin-bottom: 30px; }
.side-menu2 > ul > li { border-bottom: 1px solid rgba(255,255,255,.08); }
.side-menu2 > ul > li > a {
  display: block;
  padding: 14px 0;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
}
.side-menu2 > ul > li > ul { padding-left: 20px; padding-bottom: 10px; }
.side-menu2 > ul > li > ul li a {
  display: block;
  padding: 8px 0;
  color: var(--gray-light);
  font-size: 14px;
}
.side-menu2 > ul > li > ul li a:hover { color: var(--primary-light); }
.side-menu2 .menu-contact { margin-bottom: 20px; }
.side-menu2 .menu-contact span {
  color: var(--gray-light);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 8px;
}
.side-menu2 .menu-contact .nmbr,
.side-menu2 .menu-contact .gmail {
  display: block;
  color: var(--white);
  font-size: 14px;
  margin: 3px 0;
}
.side-menu2 .menu-links span {
  color: var(--gray-light);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 10px;
}
.side-menu2 .menu-links .social-icon {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}
.side-menu2 .menu-links .social-icon li a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-light);
  font-size: 14px;
}
.side-menu2 .menu-links .social-icon li a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.overlay2 {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 10000;
  display: none;
}
.overlay2.active { display: block; }

/* =============================================
   Header — Sticky
   ============================================= */
.sticky-active {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
  transform: translateY(-100%);
  transition: transform .4s cubic-bezier(.25,.8,.25,1);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.sticky-active.v3 { /* variation */ }
.sticky-active.scrolled { transform: translateY(0); }

/* =============================================
   Header — Main (vs-header2)
   ============================================= */
.vs-header2 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 15px 0;
}
.vs-header2.v8 { /* variation */ }

.header-menu-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 30px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.1);
  margin: 10px 20px;
}

.sticky-active .header-menu-area {
  background: transparent;
  border: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  margin: 0;
  padding: 10px 30px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 15px;
}
.header-logo a img {
  height: 28px;
  width: auto;
}

/* Menu Toggle (side menu trigger) */
.menu-toggle {
  width: 24px;
  height: 20px;
  position: relative;
  cursor: pointer;
  display: inline-block;
}
.menu-toggle::before,
.menu-toggle::after,
.menu-toggle span {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--dark);
  transition: var(--transition);
}
.menu-toggle::before { top: 0; }
.menu-toggle span { top: 50%; transform: translateY(-50%); }
.menu-toggle::after { bottom: 0; }
.menu-toggle.v2::before { width: 60%; }
.vs-header2 .menu-toggle::before,
.vs-header2 .menu-toggle::after,
.vs-header2 .menu-toggle span { background: var(--white); }

/* =============================================
   Navigation — Main Menu
   ============================================= */
.main-menu { display: none; }
@media (min-width: 1200px) {
  .main-menu { display: block; }
}
.menu-style1 > ul {
  display: flex;
  align-items: center;
  gap: 5px;
}
.menu-style1 > ul > li {
  position: relative;
  padding: 5px 0;
}
.menu-style1 > ul > li > a {
  display: inline-flex;
  align-items: center;
  padding: 6px 18px;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  border-radius: var(--radius-sm);
  position: relative;
  overflow: hidden;
}
.vs-header2 .menu-style1 > ul > li > a { color: var(--white); }
.sticky-active .menu-style1 > ul > li > a { color: var(--dark); }

.menu-style1 > ul > li > a .menu-item,
.menu-style1 > ul > li > a .menu-item2 {
  display: block;
  transition: transform .3s;
}
.menu-style1 > ul > li > a .menu-item2 {
  position: absolute;
  left: 18px;
  transform: translateY(100%);
}
.menu-style1 > ul > li > a:hover .menu-item,
.menu-style1 > ul > li > a.active .menu-item {
  transform: translateY(-100%);
}
.menu-style1 > ul > li > a:hover .menu-item2,
.menu-style1 > ul > li > a.active .menu-item2 {
  transform: translateY(0);
}
.menu-style1 > ul > li > a.active { color: var(--primary); }
.vs-header2 .menu-style1 > ul > li > a.active { color: var(--secondary); }
.sticky-active .menu-style1 > ul > li > a.active { color: var(--primary); }

/* Sub Menu / Dropdown */
.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 100;
}
.menu-style1 > ul > li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.sub-menu li a {
  display: block;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray);
}
.sub-menu li a:hover { color: var(--primary); background: var(--lighter); }

/* Header buttons */
.btn-box {
  display: flex;
  align-items: center;
  gap: 15px;
}
.btn-box .popup-search {
  color: var(--dark);
  font-size: 16px;
  cursor: pointer;
}
.vs-header2 .btn-box .popup-search { color: var(--white); }
.sticky-active .btn-box .popup-search { color: var(--dark); }
.btn-box .ibt-btn { font-size: 13px; padding: 8px 22px; }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.hamburger span {
  width: 100%;
  height: 2px;
  background: var(--dark);
  transition: var(--transition);
}
.vs-header2 .hamburger span { background: var(--white); }
.sticky-active .hamburger span { background: var(--dark); }
@media (min-width: 1200px) {
  .hamburger { display: none; }
}

/* =============================================
   Hero Section — hero-style8
   ============================================= */
.hero-style8 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-3);
  overflow: hidden;
  padding: 150px 0 100px;
}
.hero-style8::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(79,70,229,.15) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-style8::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(6,182,212,.1) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-content8 {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.hero-content8 .title {
  font-size: clamp(2.25rem, 5vw, 4rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -2px;
}
.hero-content8 p {
  font-size: 18px;
  color: rgba(255,255,255,.7);
  max-width: 600px;
  margin-bottom: 32px;
  line-height: 1.8;
}
.hero-style8 .aiero-button {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.5);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  z-index: 2;
  animation: bounceDown 2s infinite;
}
@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* =============================================
   Section Title
   ============================================= */
.sec-title { margin-bottom: 40px; }
.sec-title .sub-title {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary);
  margin-bottom: 12px;
}
.sec-title .title {
  margin-bottom: 15px;
}
.sec-title.white .sub-title { color: var(--secondary); }
.sec-title.white .title { color: var(--white); }
.sec-title.white p { color: rgba(255,255,255,.7); }
.sec-title p { max-width: 600px; }
.sec-title.text-center { text-align: center; }
.sec-title.text-center p { margin-left: auto; margin-right: auto; }
.sub-title {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
}

/* Animated heading - simple fade for now */
.animated-heading { /* handled by JS if GSAP loaded */ }

/* =============================================
   Service Section 12
   ============================================= */
.service-sec12 { padding: 80px 0; }
.service-sec12 .outer-box12 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
@media (max-width: 991px) {
  .service-sec12 .outer-box12 { grid-template-columns: 1fr; }
}

.ser-card12 {
  position: relative;
  background: var(--dark-2);
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 400px;
  transition: var(--transition);
}
.ser-card12:hover { transform: translateY(-5px); }
.ser-card12 > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.ser-content12 {
  position: relative;
  z-index: 2;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 400px;
  background: linear-gradient(180deg, transparent 0%, rgba(15,23,42,.9) 100%);
}
.ser-content12 .title {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.ser-content12 .title a { color: var(--white); }
.ser-content12 .title a:hover { color: var(--secondary); }
.ser-content12 p { color: rgba(255,255,255,.7); font-size: 14px; }
.ser-content12.v2 { justify-content: center; background: rgba(15,23,42,.85); }
.ser-text12 {
  display: flex;
  gap: 8px;
  margin-bottom: 15px;
}
.ser-text12 a {
  padding: 4px 12px;
  background: rgba(255,255,255,.1);
  border-radius: var(--radius-full);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
}
.ser-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  z-index: 3;
  transition: var(--transition);
}
.ser-btn:hover { background: var(--secondary); transform: rotate(45deg); }
.ser-btn .icon2 { display: none; }

/* Service icon variant for services page */
.ser-icon12 {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-md);
  background: var(--lighter);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.ser-icon12 img { width: 40px; height: 40px; }
.ser-list12 {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}
.ser-list12 li {
  padding: 6px 0;
  color: var(--gray);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ser-list12 li i { color: var(--success); font-size: 12px; }

/* Service info block */
.ser-info12 {
  background: var(--dark-2);
  border-radius: var(--radius-xl);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.ser-counter12 { margin-bottom: 20px; }
.counter-box12 { display: flex; align-items: baseline; gap: 5px; margin-bottom: 5px; }
.counter-box12 .counter-number { font-size: 3rem; font-weight: 900; color: var(--white); }
.counter-box12 .counter-text { font-size: 1.5rem; font-weight: 700; color: var(--primary-light); }
.client2 { color: var(--gray-light); font-size: 14px; }
.inner-block12 {
  background: var(--dark-3);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.inner-content12 {
  padding: 20px;
}
.inner-content12 .title { color: var(--white); font-size: 1.1rem; }

/* =============================================
   Service Section 13
   ============================================= */
.service-sec13 { }
.ser-card13 {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--dark-2);
  min-height: 450px;
  transition: var(--transition);
}
.ser-card13:hover { transform: translateY(-5px); }
.ser-card13 > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ser-card13 > img.prdient {
  opacity: .5;
}
.ser-content13 {
  position: relative;
  z-index: 2;
  padding: 30px;
  min-height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(180deg, transparent 30%, rgba(15,23,42,.9) 100%);
}
.ser-content13 .title { color: var(--white); font-size: 1.25rem; }
.ser-content13 .title a { color: var(--white); }
.ser-content13 p { color: rgba(255,255,255,.7); font-size: 14px; }
.ser-list13 {
  padding: 0;
  margin-top: 10px;
}
.ser-list13 li {
  color: rgba(255,255,255,.7);
  font-size: 13px;
  padding: 4px 0;
  padding-left: 15px;
  position: relative;
}
.ser-list13 li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary-light);
}
.ser-card13.v2 .ser-content13,
.ser-card13.v3 .ser-content13 { justify-content: center; }

/* =============================================
   Feature Section 7
   ============================================= */
.feature-sec7 { }
.ser-content7 { margin-bottom: 40px; }
.about-counter {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--gray-lighter);
}
.counter-box4 {
  display: flex;
  align-items: baseline;
}
.counter-box4 .counter-number {
  font-size: 3rem;
  font-weight: 900;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.counter-box4 .counter-text {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
}
.solutions { color: var(--gray); font-size: 14px; }

.feature-info7 { }
.feature-card7 {
  display: flex;
  gap: 20px;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-lighter);
  margin-bottom: 16px;
  transition: var(--transition);
  background: var(--white);
}
.feature-card7:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.feature-card7 > img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  flex-shrink: 0;
}
.feature-content7 .title { font-size: 1.1rem; margin-bottom: 8px; }
.feature-content7 .title a { color: var(--dark); }
.feature-content7 .title a:hover { color: var(--primary); }
.feature-content7 p { font-size: 14px; margin-bottom: 0; }
.feature-content7.mb-0 { margin-bottom: 0; }

/* =============================================
   Neural Playground
   ============================================= */
.neural-playground4 { background: var(--lighter); }
.neural-img4 img { max-width: 120px; }
.neural-content4 { }
.gradient-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.4;
}
.gradient-title span {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =============================================
   Marquee
   ============================================= */
.marquee-sec2 {
  overflow: hidden;
  padding: 20px 0;
  background: var(--dark);
}
.marquee {
  overflow: hidden;
  white-space: nowrap;
}
.marquee-inner {
  display: inline-flex;
  animation: marquee 30s linear infinite;
}
.marquee-inner span {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 800;
  color: rgba(255,255,255,.15);
  padding: 0 30px;
  white-space: nowrap;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Marquee variant (footer) */
.marquee-sec { 
  padding: 20px 0; 
  background: var(--dark);
  overflow: hidden;
}
.marquee-content {
  display: flex;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}
.marquee-content span {
  font-size: 2rem;
  font-weight: 800;
  color: rgba(255,255,255,.1);
  padding: 0 40px;
  flex-shrink: 0;
}

/* =============================================
   About Section
   ============================================= */
.main-section2 {
  background: var(--dark);
  color: var(--white);
}
.about-us-sec4 { padding: 80px 0; }
.about-content4 { }
.about-info4 p {
  color: rgba(255,255,255,.7);
  font-size: 16px;
  line-height: 1.8;
}
.about-info4 .ibt-btn-outline {
  border-color: var(--white);
  color: var(--white);
}
.about-info4 .ibt-btn-outline:hover {
  background: var(--white);
  color: var(--dark);
}
.style-text4 {
  font-size: 5rem;
  font-weight: 900;
  color: rgba(255,255,255,.05);
  line-height: 1;
  margin-top: 20px;
}
.style-text4 span { 
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: .3;
}

/* =============================================
   Fun Facts / Counters
   ============================================= */
.fun-fact-sec2 { }
.counter-box13 {
  padding: 40px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.03);
  margin-bottom: 24px;
}
.counter-box13.v2 { border-color: var(--primary); }
.counter-info13 {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-bottom: 15px;
}
.counter-info13 .counter-number,
.counter-number {
  font-size: 3.5rem;
  font-weight: 900;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.counter-info13 .counter-text,
.counter-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}
.counter-box13 .title { font-size: 1.25rem; margin-bottom: 8px; }
.counter-box13 p { font-size: 14px; }
.main-section2 .counter-box13 .title { color: var(--white); }
.main-section2 .counter-box13 p { color: rgba(255,255,255,.6); }

.funfact-content3 { }
.funfact-sec2 .counter-box13 {
  background: var(--lighter);
  border-color: var(--gray-lighter);
}

/* Standalone counters for pages */
.funfact-card {
  text-align: center;
  padding: 30px;
}
.funfact-card .counter {
  font-size: 3rem;
  font-weight: 900;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.funfact-card .suffix { font-size: 1.5rem; font-weight: 800; color: var(--primary); }
.funfact-card p { margin-top: 8px; color: var(--gray); }

/* Stats bar (about page) */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  padding: 40px 0;
}
.stat-item {
  text-align: center;
  padding: 24px;
  background: var(--lighter);
  border-radius: var(--radius-lg);
}

/* =============================================
   Video Banner
   ============================================= */
.video-banner2 { padding: 60px 0; }
.video-banner-img2 {
  text-align: center;
  position: relative;
}
.video-banner-img2 > img { max-height: 60px; margin: 0 auto 30px; }
.video-box4 { }
.video-popup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
}
.video-popup i {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  animation: pulse 2s infinite;
}

/* =============================================
   Choose Us / How It Works (Swiper Slider)
   ============================================= */
.choose-us-sec2 { }
.choose-block {
  padding: 40px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-lighter);
  background: var(--white);
  height: 100%;
  transition: var(--transition);
}
.choose-block:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}
.choose-block .sub-title {
  font-size: 2rem;
  font-weight: 900;
  display: block;
  margin-bottom: 12px;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.choose-block .title { font-size: 1.25rem; margin-bottom: 12px; }
.choose-block p { font-size: 14px; color: var(--gray); }
.slider-btn2 {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 30px;
}
.slider-btn2 .swiper-button-next,
.slider-btn2 .swiper-button-prev {
  position: static;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--gray-lighter);
  background: var(--white);
}
.slider-btn2 .swiper-button-next::after,
.slider-btn2 .swiper-button-prev::after { font-size: 16px; color: var(--dark); }
.slider-btn2 .swiper-button-next:hover,
.slider-btn2 .swiper-button-prev:hover {
  border-color: var(--primary);
  background: var(--primary);
}
.slider-btn2 .swiper-button-next:hover::after,
.slider-btn2 .swiper-button-prev:hover::after { color: var(--white); }

/* =============================================
   Team Section
   ============================================= */
.team-section { }
.team-info { }
.team-counter {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 20px 0;
}
.counter-box8 { display: flex; align-items: baseline; }
.counter-box8 .counter-text { font-size: 2rem; font-weight: 900; color: var(--primary); }
.counter-box8 .counter-number {
  font-size: 3rem;
  font-weight: 900;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.team-member { }
.team-card {
  background: var(--lighter);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 24px;
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.team-card.v1,
.team-card.v2,
.team-card.v3 { /* variations for stagger */ }
.team-card.v2 { margin-top: 40px; }
.team-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--light);
}
.team-img img { width: 100%; height: 100%; object-fit: cover; }
.team-img .sub-title {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: rgba(255,255,255,.9);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
}
.team-shap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30px;
  background: var(--lighter);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.team-content { padding: 20px; }
.team-content .name { font-size: 1.1rem; margin-bottom: 4px; }
.team-content .name a { color: var(--dark); }
.team-content .name a:hover { color: var(--primary); }
.team-content .designation {
  color: var(--gray);
  font-size: 13px;
  font-weight: 600;
}
.share-box { position: relative; margin-bottom: 10px; }
.share-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--lighter);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--gray);
  cursor: pointer;
}
.social-links {
  position: absolute;
  bottom: 100%;
  left: 0;
  display: flex;
  gap: 5px;
  padding-bottom: 8px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.share-box:hover .social-links { opacity: 1; visibility: visible; }
.social-links li a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}
.social-links li a:hover { background: var(--primary-dark); }

/* =============================================
   Testimonials
   ============================================= */
.testimonial-sec2 {
  background: var(--lighter);
  padding: 80px 0;
}
.testi-title {
  text-align: center;
  margin-bottom: 50px;
}
.testi-title .title {
  max-width: 700px;
  margin: 0 auto;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}
.testi-title .title .shade {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.rating {
  display: flex;
  gap: 3px;
  margin-bottom: 10px;
  justify-content: center;
}
.rating li { color: var(--warning); font-size: 14px; }
.test-block2 {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
  transition: var(--transition);
  border: 1px solid transparent;
}
.test-block2:hover { 
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.test-block2 .name {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--dark);
}
.test-block2 .rating { justify-content: flex-start; margin-bottom: 12px; }
.test-block2 p { font-size: 14px; line-height: 1.7; margin-bottom: 0; }
.test-block2.mb-0 { margin-bottom: 0; }

/* =============================================
   Blog Section
   ============================================= */
.blog-sec2 { }
.blog-image2 img {
  max-width: 120px;
  position: sticky;
  top: 100px;
}
.blog-info2 { }
.title-area {
  margin-bottom: 40px;
}
.title-area .row.end { align-items: flex-end; }
.sec-btn-box { text-align: right; }
.blog-post { }
.blog-card2 {
  display: flex;
  gap: 30px;
  padding: 30px 0;
  border-top: 1px solid var(--gray-lighter);
  transition: var(--transition);
}
.blog-card2:hover { }
.blog-card2.mb-0 { margin-bottom: 0; }
.blog-img2 {
  width: 280px;
  flex-shrink: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.blog-img2 img { width: 100%; height: 200px; object-fit: cover; }
.blog-content2 { flex: 1; }
.blog-meta2 { margin-bottom: 12px; }
.blog-meta2 .sub-title {
  font-size: 13px;
  color: var(--gray);
  display: block;
  margin-bottom: 8px;
  letter-spacing: 0;
}
.blog-text2 {
  display: flex;
  gap: 8px;
}
.blog-text2 a {
  padding: 3px 10px;
  background: var(--lighter);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  color: var(--gray);
}
.blog-text2 a:hover { background: var(--primary); color: var(--white); }
.blog-content2 .title { font-size: 1.25rem; line-height: 1.4; margin-bottom: 8px; }
.blog-content2 .title a { color: var(--dark); }
.blog-content2 .title a:hover { color: var(--primary); }
.blog-content2 p { font-size: 14px; }

@media (max-width: 767px) {
  .blog-card2 { flex-direction: column; }
  .blog-img2 { width: 100%; }
}

/* =============================================
   Partners / Brand Slider
   ============================================= */
.partners-sec { padding: 60px 0; }
.brand-sec2 { margin-top: 30px; }
.brand-sec2 .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.brand-sec2 .swiper-slide img {
  max-height: 50px;
  opacity: .4;
  filter: grayscale(100%);
  transition: var(--transition);
}
.brand-sec2 .swiper-slide img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* =============================================
   Contact Banner
   ============================================= */
.contact-banner {
  background: var(--gradient-1);
  padding: 60px 0;
  border-radius: var(--radius-xl);
  margin: 0 20px 40px;
}
.contact-banner-content .title {
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}
.contact-btn {
  display: inline-flex;
  align-items: center;
  padding: 16px 36px;
  background: var(--white);
  color: var(--dark);
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 15px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.contact-btn:hover {
  background: var(--dark);
  color: var(--white);
}
.contact-btn .border-outer,
.contact-btn .border-inner { display: none; }
.btn-box2 { text-align: right; }

/* Contact banner section (footer variant) */
.contact-banner-sec {
  background: var(--gradient-1);
  padding: 60px 0;
  text-align: center;
}
.contact-banner-sec .contact-banner {
  background: transparent;
  margin: 0;
  padding: 0;
  border-radius: 0;
}
.contact-banner-sec h2 { color: var(--white); margin-bottom: 12px; }
.contact-banner-sec p { color: rgba(255,255,255,.8); margin-bottom: 24px; }

/* =============================================
   Footer
   ============================================= */
.footer-style2 {
  background: var(--dark);
  color: var(--gray-light);
}
.widget-area2 { padding: 80px 0 40px; }
.footer-widget { margin-bottom: 30px; }
.footer-logo { margin-bottom: 20px; }
.footer-logo img { height: 30px; }
.about-widget .social-icon {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
.about-widget .social-icon li a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-light);
  font-size: 14px;
}
.about-widget .social-icon li a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.about-widget .title {
  color: rgba(255,255,255,.3);
  font-size: 2rem;
  font-weight: 900;
}
.footer-menu.v2 {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 30px;
}
@media (max-width: 767px) {
  .footer-menu.v2 { grid-template-columns: 1fr; }
}
.footer-widget .widget-title,
.footer-widget .title {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.contact-widget p { font-size: 14px; line-height: 1.8; }
.contact-widget .nmbr,
.contact-widget .gmail,
.contact-widget .email {
  display: block;
  color: var(--gray-light);
  font-size: 14px;
  margin: 4px 0;
}
.contact-widget .nmbr:hover,
.contact-widget .gmail:hover,
.contact-widget .email:hover { color: var(--primary-light); }
.footer-links ul li { margin-bottom: 8px; }
.footer-links ul li a {
  color: var(--gray-light);
  font-size: 14px;
}
.footer-links ul li a:hover { color: var(--white); padding-left: 5px; }
.footer-botom,
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
}
.footer-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-box p { font-size: 14px; margin: 0; color: var(--gray-light); }
.footer-box p a { color: var(--gray-light); }
.footer-box p a:hover { color: var(--white); }
.footer-box span { font-size: 14px; color: var(--gray-light); }
.footer-box span a { color: var(--primary-light); margin-left: 5px; }
.footer-bottom p { font-size: 14px; color: var(--gray-light); margin: 0; }
.footer-bottom a { color: var(--gray-light); margin-left: 15px; font-size: 14px; }
.footer-bottom a:hover { color: var(--white); }

/* Footer section variant (in templ) */
.footer-sec {
  background: var(--dark);
  color: var(--gray-light);
  padding: 80px 0 0;
}
.footer-sec .footer-widget .title {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.footer-sec .footer-logo { margin-bottom: 20px; }
.footer-sec .footer-logo img { height: 30px; filter: brightness(10); }
.footer-sec .social-icon {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}
.footer-sec .social-icon li a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-light);
  font-size: 14px;
}
.footer-sec .social-icon li a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.footer-sec .footer-widget p { font-size: 14px; line-height: 1.8; }
.footer-sec .footer-widget .nmbr,
.footer-sec .footer-widget .email {
  display: block;
  color: var(--gray-light);
  font-size: 14px;
  margin: 4px 0;
}
.footer-sec .footer-widget .nmbr:hover,
.footer-sec .footer-widget .email:hover { color: var(--primary-light); }
.footer-sec .footer-menu { list-style: none; padding: 0; }
.footer-sec .footer-menu li { margin-bottom: 8px; }
.footer-sec .footer-menu li a {
  color: var(--gray-light);
  font-size: 14px;
}
.footer-sec .footer-menu li a:hover { color: var(--white); padding-left: 5px; }
.footer-sec .footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  margin-top: 40px;
}

/* =============================================
   Page Banner
   ============================================= */
.page-banner,
.page-banner11 {
  background: var(--gradient-3);
  padding: 150px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-banner11 .shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(79,70,229,.15) 0%, transparent 70%);
  border-radius: 50%;
}
.page-banner11 .shape3 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(6,182,212,.1) 0%, transparent 70%);
  border-radius: 50%;
}
.page-banner11 .staff-text {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  font-size: 8rem;
  font-weight: 900;
  color: rgba(255,255,255,.03);
  text-transform: uppercase;
  white-space: nowrap;
}
.page-banner .page-title,
.page-banner11 .page-content .title,
.page-banner .container h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
}
.page-banner .breadcrumb,
.page-banner11 .breadcrumbs,
.page-banner nav[aria-label="breadcrumb"] .breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}
.page-banner .breadcrumb li,
.page-banner11 .breadcrumbs li,
.page-banner .breadcrumb .breadcrumb-item {
  color: rgba(255,255,255,.6);
  font-size: 14px;
}
.page-banner .breadcrumb li a,
.page-banner11 .breadcrumbs li a,
.page-banner .breadcrumb .breadcrumb-item a { color: rgba(255,255,255,.8); }
.page-banner .breadcrumb .breadcrumb-item.active { color: rgba(255,255,255,.5); }
.page-banner .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: '/';
  color: rgba(255,255,255,.4);
  padding-right: 10px;
}

/* =============================================
   Product Section
   ============================================= */
.product-sec { padding: 80px 0; }
.product-card {
  background: var(--white);
  border: 1px solid var(--gray-lighter);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
  margin-bottom: 24px;
  position: relative;
}
.product-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}
.product-card .badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  z-index: 2;
}
.badge-bestseller { background: var(--success); color: var(--white); }
.badge-new { background: var(--primary); color: var(--white); }
.badge-preorder { background: var(--warning); color: var(--dark); }
.badge-soldout { background: var(--gray); color: var(--white); }
.product-card .icon {
  padding: 20px;
  text-align: center;
  background: var(--lighter);
}
.product-card .icon img { height: 180px; margin: 0 auto; object-fit: contain; }
.product-info { padding: 20px; }
.product-info .price {
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}
.product-info h3 { font-size: 1.1rem; margin-bottom: 8px; }
.product-info p { font-size: 14px; }
.product-meta {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}
.product-meta .category {
  padding: 4px 10px;
  background: var(--lighter);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  color: var(--gray);
}

/* =============================================
   Course Section
   ============================================= */
.course-sec { padding: 80px 0; }
.course-card {
  background: var(--white);
  border: 1px solid var(--gray-lighter);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
  margin-bottom: 24px;
}
.course-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}
.course-card .icon {
  padding: 20px;
  text-align: center;
  background: var(--lighter);
}
.course-card .icon img { height: 180px; margin: 0 auto; object-fit: cover; border-radius: var(--radius-md); }
.course-info { padding: 20px; }
.course-info .price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
  display: block;
}
.course-info h3 { font-size: 1.1rem; margin-bottom: 8px; }
.course-info p { font-size: 14px; }
.course-meta {
  display: flex;
  gap: 15px;
  margin-top: 10px;
  font-size: 13px;
  color: var(--gray);
}
.course-meta span { display: flex; align-items: center; gap: 5px; }

/* =============================================
   Case Study Section
   ============================================= */
.case-study-sec { padding: 80px 0; }
.case-study-card {
  background: var(--white);
  border: 1px solid var(--gray-lighter);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
  margin-bottom: 24px;
}
.case-study-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}
.case-study-card .icon {
  padding: 20px;
  text-align: center;
  background: var(--lighter);
}
.case-study-card .icon img { height: 200px; margin: 0 auto; object-fit: cover; border-radius: var(--radius-md); }
.case-study-info { padding: 20px; }
.case-study-info h3 { font-size: 1.1rem; margin-bottom: 8px; }
.case-study-info p { font-size: 14px; }
.case-study-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}
.case-study-tags span {
  padding: 3px 10px;
  background: var(--lighter);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  color: var(--gray);
}

/* =============================================
   News / Articles
   ============================================= */
.featured-article {
  padding: 60px 0;
  background: var(--lighter);
}
.featured-article .featured-img { border-radius: var(--radius-xl); overflow: hidden; margin-bottom: 20px; }
.featured-article .featured-img img { width: 100%; height: 400px; object-fit: cover; }
.featured-content { }
.article-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 12px;
}
.article-meta span { font-size: 13px; color: var(--gray); }

.articles-grid { padding: 60px 0; }
.article-card {
  background: var(--white);
  border: 1px solid var(--gray-lighter);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
  margin-bottom: 24px;
}
.article-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}
.article-card .icon {
  overflow: hidden;
}
.article-card .icon img { width: 100%; height: 200px; object-fit: cover; }
.article-info { padding: 20px; }
.article-info .article-meta { margin-bottom: 10px; }
.article-info .category {
  padding: 3px 10px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
}
.article-info .date { font-size: 13px; color: var(--gray); }
.article-info h3 { font-size: 1.1rem; margin-bottom: 8px; }
.article-info h3 a { color: var(--dark); }
.article-info h3 a:hover { color: var(--primary); }
.article-info p { font-size: 14px; }
.article-info .author { font-size: 13px; color: var(--gray); font-weight: 600; }

/* Article Detail */
.article-detail { padding: 60px 0; }
.article-hero-img {
  width: 100%;
  border-radius: var(--radius-xl);
  margin-bottom: 24px;
}
.article-header { margin-bottom: 30px; }
.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}
.article-tags .tag {
  padding: 4px 12px;
  background: var(--lighter);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  color: var(--gray);
}
.article-body { font-size: 16px; line-height: 1.9; }
.article-body h2 { margin-top: 30px; }
.article-body h3 { margin-top: 25px; }
.article-body p { margin-bottom: 1.5rem; }
.article-body img { border-radius: var(--radius-md); margin: 20px 0; }
.article-body ul, .article-body ol { padding-left: 20px; margin-bottom: 1.5rem; }
.article-body li { margin-bottom: 8px; }

/* =============================================
   Career Section
   ============================================= */
.benefits-sec { padding: 80px 0; }
.benefit-card {
  background: var(--lighter);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
  margin-bottom: 24px;
  transition: var(--transition);
}
.benefit-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.benefit-card .icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  background: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 24px;
}
.benefit-card h4 { font-size: 1rem; margin-bottom: 8px; }
.benefit-card p { font-size: 14px; margin-bottom: 0; }

.jobs-sec { padding: 60px 0; background: var(--lighter); }
.job-card {
  background: var(--white);
  border: 1px solid var(--gray-lighter);
  border-radius: var(--radius-lg);
  padding: 30px;
  margin-bottom: 16px;
  transition: var(--transition);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.job-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.job-card h3 { font-size: 1.1rem; margin-bottom: 4px; }
.job-card .location,
.job-card .type {
  font-size: 13px;
  color: var(--gray);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.job-card .deadline {
  font-size: 13px;
  color: var(--gray);
}

.process-sec { padding: 80px 0; }
.process-step {
  text-align: center;
  padding: 30px;
}
.process-step .step-number {
  width: 50px;
  height: 50px;
  margin: 0 auto 15px;
  background: var(--gradient-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 900;
  font-size: 1.25rem;
}
.process-step h4 { font-size: 1rem; margin-bottom: 8px; }
.process-step p { font-size: 14px; }

/* =============================================
   CSR Section
   ============================================= */
.csr-sec { padding: 80px 0; }
.csr-card {
  background: var(--white);
  border: 1px solid var(--gray-lighter);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
  margin-bottom: 24px;
}
.csr-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}
.csr-card .icon img { width: 100%; height: 200px; object-fit: cover; }
.csr-info { padding: 20px; }
.csr-info h3 { font-size: 1.1rem; margin-bottom: 8px; }
.csr-info p { font-size: 14px; }
.csr-meta {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}
.csr-meta span {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray);
  padding: 3px 10px;
  background: var(--lighter);
  border-radius: var(--radius-full);
}

.volunteer-sec { padding: 60px 0; background: var(--lighter); }

/* =============================================
   Service Card (for services page grid)
   ============================================= */
.service-sec.service-grid { padding: 80px 0; }
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-lighter);
  border-radius: var(--radius-xl);
  padding: 30px;
  margin-bottom: 24px;
  transition: var(--transition);
}
.service-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}
.service-card .icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}
.service-card .icon img { width: 100%; height: 100%; object-fit: contain; }
.service-card .icon i {
  font-size: 32px;
  color: var(--primary);
}
.service-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.service-card p { font-size: 14px; }
.service-features {
  margin-top: 15px;
  padding: 0;
}
.service-features li {
  padding: 5px 0;
  font-size: 14px;
  color: var(--gray);
  padding-left: 20px;
  position: relative;
}
.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

/* Funfact for services page */
.funfact-sec2 { padding: 60px 0; background: var(--lighter); }

/* =============================================
   Social Icons (general)
   ============================================= */
.social-icon {
  display: flex;
  gap: 8px;
}
.social-icon2 {
  display: flex;
  gap: 8px;
  margin-top: 15px;
}
.social-icon2 li a img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

/* =============================================
   Responsive Utilities
   ============================================= */
@media (max-width: 1199px) {
  .main-menu { display: none !important; }
  .btn-box .popup-search,
  .btn-box .ibt-btn { display: none; }
  .hamburger { display: flex !important; }
  .header-menu-area {
    padding: 10px 15px;
  }
}

@media (max-width: 991px) {
  .hero-style8 { padding: 120px 0 80px; min-height: auto; }
  .hero-content8 .title { font-size: 2rem; }
  :root {
    --section-gap: 60px;
    --section-gap-top: 60px;
    --section-gap-bottom: 60px;
  }
  .testimonial-sec2 .row { flex-direction: column; }
  .contact-banner { margin: 0 10px 20px; padding: 40px 20px; }
}

@media (max-width: 575px) {
  .hero-style8 { padding: 100px 0 60px; }
  .hero-content8 .title { font-size: 1.75rem; }
  .hero-content8 p { font-size: 15px; }
  .page-banner, .page-banner11 { padding: 120px 0 40px; }
  .page-banner11 .staff-text { display: none; }
}

/* =============================================
   Fontello Icon Fallback
   ============================================= */
.icon-arrow-top::before { content: '↗'; }
.icon-button-arrow::before { content: '→'; }
[class^="icon-service"]::before { content: '⚙'; }
.fontello { font-style: normal; }

/* =============================================
   Animations
   ============================================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in-up { animation: fadeInUp .6s ease forwards; }

/* Animated counter base */
[data-count],
[data-target] {
  /* JS will animate these */
}

/* =============================================
   CLASS ALIASES — Bridge template class names
   to Hi-Tech CSS definitions
   ============================================= */

/* hero-content → hero-content8 alias */
.hero-content { position: relative; z-index: 2; max-width: 700px; }
.hero-title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.08;
  margin-bottom: 20px;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-text {
  font-size: 18px;
  color: var(--gray);
  margin-bottom: 32px;
  max-width: 540px;
}

/* section-title → sec-title alias */
.section-title {
  margin-bottom: 50px;
}
.section-title .sub-title {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 12px;
  position: relative;
  padding-left: 35px;
}
.section-title .sub-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 2px;
  background: var(--gradient-1);
}
.section-title h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 900;
  letter-spacing: -1.5px;
  color: var(--dark);
}
.section-title p {
  font-size: 17px;
  color: var(--gray);
  max-width: 540px;
}

/* service-card12 — index page service card */
.service-card12 {
  background: var(--white);
  border: 1px solid var(--gray-lighter);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  height: 100%;
}
.service-card12:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-card12 .icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  color: var(--white);
}
.service-card12 .icon i { color: var(--white); }
.service-card12 h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.service-card12 p {
  font-size: 15px;
  color: var(--gray);
}

/* counter-block — index page right column */
.counter-block {
  background: var(--gradient-3);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
.counter-item {
  text-align: center;
}
.counter-item .counter {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.counter-item .suffix {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary);
  margin-left: 4px;
}
.counter-item p {
  font-size: 14px;
  color: var(--gray-light);
  margin: 4px 0 0;
}

/* counter-inline — about page inline counters */
.counter-inline {
  display: flex;
  gap: 40px;
  margin-top: 24px;
}
.counter-inline .counter-item {
  text-align: left;
}
.counter-inline .counter-item .counter {
  color: var(--primary);
  font-size: 2rem;
}
.counter-inline .counter-item .suffix {
  color: var(--primary-dark);
}
.counter-inline .counter-item p {
  color: var(--gray);
}

/* feature-card alias (maps to feature-card7) */
.feature-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-lighter);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: var(--transition);
}
.feature-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.feature-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 20px;
  color: var(--white);
}
.feature-card .icon i { color: var(--white); }
.feature-card h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 14px;
  color: var(--gray);
  margin: 0;
}

/* icon-tech, icon-custom, icon-training, icon-dev — FA aliases */
.icon-tech::before { content: '\f0e7'; font-family: 'Font Awesome 6 Free'; font-weight: 900; }
.icon-custom::before { content: '\f1b2'; font-family: 'Font Awesome 6 Free'; font-weight: 900; }
.icon-training::before { content: '\f19d'; font-family: 'Font Awesome 6 Free'; font-weight: 900; }
.icon-dev::before { content: '\f121'; font-family: 'Font Awesome 6 Free'; font-weight: 900; }

/* team-sec alias → same as team-section */
.team-sec {
  padding: var(--section-gap) 0;
  background: var(--lighter);
}
.team-sec .team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  margin-bottom: 30px;
}
.team-sec .team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.team-sec .team-img {
  position: relative;
  overflow: hidden;
  height: 280px;
}
.team-sec .team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* team-info alias → same as team-content */
.team-info {
  padding: 24px;
  text-align: center;
}
.team-info h4 {
  font-size: 1.125rem;
  margin-bottom: 4px;
}
.team-info span {
  font-size: 14px;
  color: var(--gray);
}

/* testimonial-card alias → same as test-block2 */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-lighter);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  height: 100%;
  transition: var(--transition);
}
.testimonial-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

/* stars → rating alias */
.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: var(--warning);
}
.stars i { font-size: 14px; }

/* username — testimonial */
.username {
  display: block;
  font-weight: 700;
  font-size: 15px;
  margin-top: 16px;
  color: var(--dark);
}
.username::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--gradient-1);
  vertical-align: middle;
  margin-right: 8px;
}

/* blog class aliases — blog-img, blog-content, blog-meta */
.blog-img {
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  height: 200px;
}
.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.blog-card2:hover .blog-img img { transform: scale(1.05); }
.blog-content {
  padding: 24px;
}
.blog-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
}
.blog-meta span {
  font-size: 13px;
  color: var(--gray);
  font-weight: 600;
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-sec {
  padding: var(--section-gap) 0;
}
.about-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-img img {
  width: 100%;
  border-radius: var(--radius-lg);
}
/* Placeholder gradient when image missing */
.about-img img[src=""],
.about-img img:not([src]) {
  display: none;
}
.about-img::before {
  content: '';
  display: block;
  padding-top: 75%;
  background: var(--gradient-1);
  border-radius: var(--radius-lg);
}
.about-img:has(img[src*="/"]) ::before { display: none; }

/* =============================================
   HERO SECTION — OGL Deform Fallback
   ============================================= */
.ogl-deform {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: var(--gradient-2);
  opacity: .15;
  border-radius: 0 0 0 40%;
  z-index: 0;
}

/* hero-sec semantic wrapper */
.hero-sec {
  position: relative;
  overflow: hidden;
}

/* =============================================
   SERVICES PAGE
   ============================================= */
.service-sec.service-grid {
  padding: var(--section-gap) 0;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-lighter);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  height: 100%;
  margin-bottom: 30px;
}
.service-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-card .icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  color: var(--white);
}
.service-card .icon i { color: var(--white); }
.service-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.service-card p {
  font-size: 15px;
  color: var(--gray);
}
.service-features {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}
.service-features li {
  padding: 4px 0 4px 20px;
  position: relative;
  font-size: 14px;
  color: var(--gray);
}
.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

/* funfact-sec2 / funfact-card */
.funfact-sec2 {
  padding: 60px 0;
  background: var(--gradient-3);
}
.funfact-card {
  text-align: center;
  padding: 24px;
}
.funfact-card .counter {
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
}
.funfact-card .suffix {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
}
.funfact-card p {
  font-size: 15px;
  color: var(--gray-light);
  margin-top: 4px;
}

/* =============================================
   CAREER PAGE
   ============================================= */
.benefits-sec {
  padding: var(--section-gap) 0;
}
.benefit-card {
  background: var(--white);
  border: 1px solid var(--gray-lighter);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
  margin-bottom: 30px;
}
.benefit-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.benefit-card .icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  color: var(--white);
}
.benefit-card .icon i { color: var(--white); }
.benefit-card h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.benefit-card p {
  font-size: 14px;
  color: var(--gray);
  margin: 0;
}

/* job-sec alias */
.job-sec {
  padding: var(--section-gap) 0;
  background: var(--lighter);
}
.job-card {
  background: var(--white);
  border: 1px solid var(--gray-lighter);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  height: 100%;
  margin-bottom: 30px;
}
.job-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.job-card .icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
  color: var(--white);
}
.job-card .icon i { color: var(--white); }
.job-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.job-card p {
  font-size: 15px;
  color: var(--gray);
}
.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}
.job-meta span {
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.job-type, .job-meta .job-type {
  background: rgba(79, 70, 229, .1);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}
.job-meta .location {
  color: var(--gray);
}
.job-meta .salary {
  color: var(--success);
}

/* process-sec */
.process-sec {
  padding: var(--section-gap) 0;
}
.process-step {
  text-align: center;
  padding: 24px;
  position: relative;
}
.step-number {
  display: flex;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: var(--gradient-1);
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 900;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.process-step h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}
.process-step p {
  font-size: 14px;
  color: var(--gray);
  margin: 0;
}

/* =============================================
   CSR PAGE
   ============================================= */
.stats-bar {
  padding: 60px 0;
  background: var(--gradient-3);
}
.stat-item {
  text-align: center;
  padding: 16px;
}
.stat-item .counter {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white);
}
.stat-item .suffix {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary);
}
.stat-item p {
  font-size: 14px;
  color: var(--gray-light);
  margin-top: 4px;
}

.csr-programs-sec {
  padding: var(--section-gap) 0;
}
.csr-card {
  background: var(--white);
  border: 1px solid var(--gray-lighter);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  height: 100%;
  margin-bottom: 30px;
}
.csr-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.csr-card .icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  color: var(--white);
}
.csr-card .icon i { color: var(--white); }
.csr-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.csr-card p {
  font-size: 15px;
  color: var(--gray);
}

.volunteer-sec {
  padding: var(--section-gap) 0;
  background: var(--lighter);
}
.volunteer-card {
  background: var(--white);
  border: 1px solid var(--gray-lighter);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
  margin-bottom: 30px;
}
.volunteer-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.volunteer-card .icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: var(--gradient-2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 22px;
  color: var(--white);
}
.volunteer-card .icon i { color: var(--white); }
.volunteer-card h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}
.volunteer-card p {
  font-size: 14px;
  color: var(--gray);
  margin: 0;
}

/* =============================================
   COURSE PAGE
   ============================================= */
.course-sec {
  padding: var(--section-gap) 0;
}
.course-card {
  background: var(--white);
  border: 1px solid var(--gray-lighter);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  margin-bottom: 30px;
}
.course-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.course-card .icon {
  height: 200px;
  overflow: hidden;
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.course-card .icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.course-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 8px;
  padding: 20px 24px 0;
}
.course-card > p {
  font-size: 15px;
  color: var(--gray);
  padding: 0 24px;
}
.course-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 16px 24px 24px;
  border-top: 1px solid var(--gray-lighter);
  margin-top: 12px;
}
.course-meta span {
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.duration {
  color: var(--gray);
}
.level {
  color: var(--gray);
}
.price {
  color: var(--primary);
  font-weight: 700;
  margin-left: auto;
}

/* =============================================
   CASE STUDY PAGE
   ============================================= */
.case-study-sec {
  padding: var(--section-gap) 0;
}
.case-study-card {
  background: var(--white);
  border: 1px solid var(--gray-lighter);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  margin-bottom: 30px;
}
.case-study-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.case-study-card .icon {
  height: 200px;
  overflow: hidden;
  background: var(--gradient-2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.case-study-card .icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.case-study-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 8px;
  padding: 20px 24px 0;
}
.case-study-card > p {
  font-size: 15px;
  color: var(--gray);
  padding: 0 24px;
}
.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 16px 24px 24px;
}
.case-meta span {
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.case-meta .category {
  background: rgba(79, 70, 229, .1);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}
.case-meta .location {
  color: var(--gray);
}

/* =============================================
   NEWS / ARTICLE PAGE
   ============================================= */
.featured-article {
  padding: 60px 0 var(--section-gap);
}
.featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: var(--white);
  border: 1px solid var(--gray-lighter);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
}
.featured-card:hover {
  box-shadow: var(--shadow-lg);
}
.featured-img {
  height: 100%;
  min-height: 300px;
  overflow: hidden;
}
.featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.featured-content {
  padding: 40px 40px 40px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-content h2 {
  font-size: 1.75rem;
  margin-bottom: 12px;
}
.featured-content h2 a:hover {
  color: var(--primary);
}

.articles-grid {
  padding-bottom: var(--section-gap);
}
.article-card {
  background: var(--white);
  border: 1px solid var(--gray-lighter);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  margin-bottom: 30px;
}
.article-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.article-card .icon {
  height: 200px;
  overflow: hidden;
  background: var(--gradient-1);
}
.article-card .icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-info {
  padding: 24px;
}
.article-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
}
.article-meta span {
  font-size: 13px;
  color: var(--gray);
  font-weight: 600;
}
.article-meta .category {
  color: var(--primary);
}
.article-info h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.article-info h3 a:hover {
  color: var(--primary);
}
.article-info p {
  font-size: 14px;
  color: var(--gray);
}
.article-info .author {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
}

/* Article Detail */
.article-detail {
  padding: var(--section-gap) 0;
}
.article-header {
  margin-bottom: 40px;
}
.article-hero-img {
  width: 100%;
  border-radius: var(--radius-xl);
  margin-bottom: 24px;
}
.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.article-tags .tag {
  background: rgba(79, 70, 229, .1);
  color: var(--primary);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
}
.article-body {
  font-size: 17px;
  line-height: 1.8;
  color: var(--dark-3);
}
.article-body h2,
.article-body h3,
.article-body h4 {
  margin-top: 32px;
}
.article-body img {
  border-radius: var(--radius-lg);
  margin: 24px 0;
}
.article-body blockquote {
  border-left: 4px solid var(--primary);
  padding: 16px 24px;
  background: var(--lighter);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 24px 0;
  font-style: italic;
}

/* =============================================
   POPUP MENU (hamburger)
   ============================================= */
.popup-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 100;
}
.popup-menu span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  margin: 5px 0;
  transition: var(--transition);
}

/* =============================================
   RESPONSIVE ADDITIONS
   ============================================= */
@media (max-width: 991px) {
  .feature-cards {
    grid-template-columns: 1fr;
  }
  .featured-card {
    grid-template-columns: 1fr;
  }
  .featured-img {
    min-height: 200px;
  }
  .featured-content {
    padding: 24px;
  }
  .popup-menu {
    display: block;
  }
  .counter-inline {
    flex-wrap: wrap;
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .counter-block {
    margin-top: 24px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
  .counter-item {
    flex: 0 0 45%;
  }
  .job-meta {
    flex-direction: column;
  }
}

@media (max-width: 575px) {
  .section-title {
    margin-bottom: 32px;
  }
  .counter-inline {
    gap: 16px;
  }
  .counter-inline .counter-item .counter {
    font-size: 1.5rem;
  }
  .course-meta {
    flex-direction: column;
  }
  .price {
    margin-left: 0;
  }
}