/*
 * 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: #33b8e8;
  --primary-light: #5cc8f0;
  --primary-dark: #1a8ab8;
  --secondary: #7dd3fc;
  --secondary-dark: #0ea5e9;
  --accent: #0e7490;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --dark: #0f172a;
  --dark-2: #1e293b;
  --dark-3: #334155;
  --gray: #64748b;
  --gray-light: #94a3b8;
  --gray-lighter: #cbd5e1;
  --light: #f0f9ff;
  --lighter: #e0f2fe;
  --white: #ffffff;
  --gradient-1: linear-gradient(135deg, #33b8e8 0%, #7dd3fc 100%);
  --gradient-2: linear-gradient(135deg, #0e7490 0%, #7dd3fc 100%);
  --gradient-3: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  --gradient-text: linear-gradient(135deg, #33b8e8, #7dd3fc);
  --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 or fails to load */
#preloader .loader:empty::after,
#preloader .loader img[src=""]::after,
#preloader .loader:not(:has(img:not([style*="display:none"])))::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(51,184,232,.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;
}
.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;
  flex-wrap: nowrap;
  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;
  gap: 12px;
}

.sticky-active .header-menu-area {
  background: transparent;
  border: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  margin: 0;
  padding: 10px 30px;
}

/* Header 3-column layout */
.header-col {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.header-col-left {
  flex-shrink: 0;
}
.header-col-center {
  flex: 1 1 auto;
  min-width: 0;
  justify-content: center;
}
.header-col-right {
  flex-shrink: 0;
}
.header-logo-link {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
}
.header-logo-link img {
  height: 32px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}
.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 */






/* 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) */




/* =============================================
   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 .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 */





/* Stats bar (about page) */



/* =============================================
   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 .contact-banner {
  background: transparent;
  margin: 0;
  padding: 0;
  border-radius: 0;
}



/* =============================================
   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 section variant (in templ) */

.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; }


/* =============================================
   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); }


/* =============================================
   Product Section
   ============================================= */



.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;
}




.product-card .icon {
  width: 100%;
  overflow: hidden;
}
.product-card .icon img { width: 100%; height: 220px; object-fit: cover; display: block; }





.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-card .icon {
  width: 100%;
  overflow: hidden;
}
.course-card .icon img { width: 100%; height: 200px; object-fit: cover; display: block; }







/* =============================================
   Case Study Section
   ============================================= */



.case-study-card .icon {
  width: 100%;
  overflow: hidden;
}
.case-study-card .icon img { width: 100%; height: 200px; object-fit: cover; display: block; }






/* =============================================
   News / Articles
   ============================================= */










.article-card .icon {
  overflow: hidden;
}
.article-card .icon img { width: 100%; height: 200px; object-fit: cover; }


.article-info .category {
  padding: 3px 10px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
}







/* Article Detail */





.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
   ============================================= */



.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;
}
















/* =============================================
   CSR Section
   ============================================= */



.csr-card .icon img { width: 100%; height: 200px; object-fit: cover; }








/* =============================================
   Service Card (for services page grid)
   ============================================= */



.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);
}






/* Funfact for services page */


/* =============================================
   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;
  }
  .header-col-center {
    display: none;
  }
  .header-col-right {
    margin-left: auto;
  }
}

@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); }
}


/* 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 */




/* section-title → sec-title alias */

.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);
}



/* service-card12 — index page service card */


.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); }



/* counter-block — index page right column */






/* counter-inline — about page inline counters */






/* feature-card alias (maps to feature-card7) */



.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); }



/* icon-tech, icon-custom, icon-training, icon-dev — FA aliases */





/* team-sec alias → same as team-section */

.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 */



/* stars → rating alias */



/* username — testimonial */



/* blog class aliases — blog-img, blog-content, blog-meta */


.blog-card2:hover .blog-img img { transform: scale(1.05); }




/* =============================================
   ABOUT PAGE
   ============================================= */



/* Placeholder gradient when image missing */




/* =============================================
   HERO SECTION — OGL Deform Fallback
   ============================================= */


/* hero-sec semantic wrapper */


/* =============================================
   SERVICES PAGE
   ============================================= */



.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); }






/* funfact-sec2 / funfact-card */






/* =============================================
   CAREER PAGE
   ============================================= */



.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); }



/* job-sec alias */



.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); }








/* process-sec */






/* =============================================
   CSR PAGE
   ============================================= */









.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); }






.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); }



/* =============================================
   COURSE PAGE
   ============================================= */



.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;
}








/* =============================================
   CASE STUDY PAGE
   ============================================= */



.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-meta .category {
  background: rgba(79, 70, 229, .1);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}


/* =============================================
   NEWS / ARTICLE PAGE
   ============================================= */












.article-card .icon {
  height: 200px;
  overflow: hidden;
  background: var(--gradient-1);
}
.article-card .icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



.article-meta .category {
  color: var(--primary);
}





/* Article Detail */





.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) {
  
  
  
  
  .popup-menu {
    display: block;
  }
  
}



