/* =========================================
   KAIZEN NEXTGEN - WEBSITE CLONE
   style.css (Dark Theme: Premium Orange & Dark)
   ========================================= */

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

:root {
  --primary-color: #FF6B1A;
  --primary-hover: #FF7A24;
  --secondary-color: #FF6B1A;
  --accent-blue: #FF6B1A;
  --accent-glow: rgba(255, 107, 26, 0.35);
  --bg-color: #111217;
  --bg-secondary: #17181E;
  --bg-tertiary: #1E1F26;
  --text-color: #F5F5F5;
  --text-muted: #9A9AA0;
  --card-bg: #17181E;
  --card-bg-hover: #1E1F26;
  --card-shadow: rgba(0, 0, 0, 0.6);
  --border-color: rgba(37, 38, 44, 0.6);
  --border-blue: rgba(255, 107, 26, 0.28);
  --whatsapp-green: #20C997;
  --white: #FFFFFF;
}

/* ----- CSS RESET & BASE ----- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  background-color: var(--bg-color);
}

body {
  font-family: 'Open Sans', 'Raleway', sans-serif;
  font-size: 16px;
  color: var(--text-color);
  background-color: var(--bg-color);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.25s, background 0.25s, border-color 0.25s;
}

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

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-fluid {
  width: 100%;
  padding: 0 20px;
}

/* =========================================
   TOP SUB-HEADER BAR
   ========================================= */
.sub-header {
  background: #0D0E12;
  color: #fff;
  padding: 7px 0;
  z-index: 1000;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sub-header-inner {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sub-header-left {
  padding-left: 10px;
}

.sub-header-right {
  padding-right: 40px;
}

.nav-container {
  max-width: 1400px;
  display: flex;
  align-items: center;
  height: 70px;
  position: relative;
}

.info-list {
  display: flex;
  align-items: center;
}

.info-list li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16.5px;
  color: var(--text-muted);
}

.info-list li a {
  color: #f8fafc;
}

.info-list li a:hover {
  color: var(--accent-blue);
}

.info-list .fa {
  font-size: 16px;
  color: var(--accent-blue);
}

.divider {
  color: rgba(255, 255, 255, 0.25);
  font-size: 18px;
  margin: 0 25px;
}

.sub-header .social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sub-header .social-links li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: var(--accent-blue);
  font-size: 12px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.sub-header .social-links li a:hover {
  background: var(--primary-color);
  border-color: var(--accent-blue);
  color: #fff;
}

/* =========================================
   MAIN HEADER / NAVIGATION
   ========================================= */
.main-header {
  background: rgba(15, 20, 32, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav-container {
  max-width: 1400px;
  margin: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  position: relative;
}

.logo img {
  padding-top: 5px;
  height: 55px;
  width: auto;
  border-radius: 4px;
}

/* Desktop Nav */
.desktop-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-list>li {
  position: relative;
}

.nav-list>li>a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  font-size: 18.5px;
  font-weight: 600;
  color: #f8fafc;
  border-radius: 4px;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-list>li>a .fa {
  font-size: 11px;
}

.nav-list>li>a:hover,
.nav-list>li>a.active {
  color: var(--accent-blue);
}

/* Dropdown */
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background: #17181E;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 3px solid var(--primary-color);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
  border-radius: 0 0 8px 8px;
  z-index: 9999;
  padding: 8px 0;
}

.has-dropdown:hover>.dropdown {
  display: block;
}

.dropdown li {
  position: relative;
}

.dropdown li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 18px;
  font-size: 13.5px;
  color: #cbd5e1;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

.dropdown li a:hover {
  background: var(--primary-color);
  color: #fff;
}

/* Sub-dropdown */
.sub-dropdown {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  border-top: 3px solid var(--primary-color);
  background: #17181E;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown li:hover>.sub-dropdown {
  display: block;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 17px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: #f8fafc;
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  background: #17181E;
  padding: 16px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.mobile-nav-list>li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav-list>li>a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 600;
  color: #f8fafc;
}

.mobile-nav-list>li>a:hover {
  color: var(--accent-blue);
}

.mob-dropdown {
  display: none;
  padding: 6px 0 6px 16px;
  border-left: 3px solid var(--primary-color);
  margin-bottom: 8px;
}

.mob-dropdown li a {
  display: block;
  padding: 7px 8px;
  font-size: 13px;
  color: var(--text-muted);
}

.mob-dropdown li a:hover {
  color: var(--accent-blue);
}

.mob-dropdown.open {
  display: block;
}

/* =========================================
   HERO SLIDER
   ========================================= */
.hero-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: #0D0E12;
  min-height: 600px;
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}

.slide-banner {
  width: 100%;
  height: 100%;
  line-height: 0;
}

.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: brightness(0.9) contrast(1.05);
}

/* Keep hero-btn usable elsewhere on page */
.hero-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
  color: #fff;
  padding: 12px 28px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.25s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 15px rgba(255, 107, 26, 0.4);
}

.hero-btn:hover {
  background: linear-gradient(135deg, var(--primary-hover) 0%, var(--primary-color) 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255, 107, 26, 0.6);
}

/* Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.dot.active {
  background: var(--primary-color);
  border-color: var(--accent-blue);
  box-shadow: 0 0 10px var(--accent-blue);
}

/* =========================================
   INTRO SECTION
   ========================================= */
.intro-section {
  padding: 60px 0 30px;
  background: var(--bg-color);
}

.section-inner {
  max-width: 100%;
}

.section-heading {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.para {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* =========================================
   TWO-COLUMN LAYOUTS (Vision, Mission, Dynamics, Partner)
   ========================================= */
.two-col {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  padding: 50px 0;
}

.two-col.align-center {
  align-items: center;
}

.col-text {
  flex: 1;
}

.col-img {
  flex: 0 0 42%;
  max-width: 42%;
}

.col-img img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.img-fluid {
  max-width: 100%;
}

/* Vision */
.vision-section {
  padding: 0;
  background: var(--bg-color);
}

.mission-section {
  padding: 0;
  background: var(--bg-color);
}

.font-bold-first {
  font-size: 40px;
  font-weight: 700;
  display: inline;
  color: var(--accent-blue);
}

.rounded {
  border-radius: 12px;
}

/* =========================================
   WHY CHOOSE US
   ========================================= */
.why-choose-us {
  background: var(--bg-secondary);
  padding: 50px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.section-title-center {
  text-align: center;
  margin-bottom: 36px;
}

.section-title-center h2 {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
}

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

.service-box {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 32px 20px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.service-box:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 107, 26, 0.4);
  box-shadow: 0 12px 36px rgba(255, 107, 26, 0.2);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: rgba(255, 107, 26, 0.12);
  border: 1px solid rgba(255, 107, 26, 0.3);
  padding: 14px;
  transition: all 0.3s ease;
}

.service-box:hover .service-icon {
  background: rgba(255, 107, 26, 0.25);
  border-color: var(--primary-color);
  box-shadow: 0 0 25px rgba(255, 107, 26, 0.4);
  transform: scale(1.05);
}

.service-icon svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 6px rgba(255, 107, 26, 0.6));
}

.service-icon svg polygon,
.service-icon svg circle,
.service-icon svg path,
.service-icon svg line {
  stroke: #FF6B1A !important;
}

.service-icon svg circle[fill="#222"] {
  fill: #FF6B1A !important;
}

.service-box h3 {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
  margin-bottom: 14px;
  color: #ffffff;
}

.service-box p {
  font-size: 13.5px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.65;
}

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

/* =========================================
   OUR APPROACH
   ========================================= */
.approach-section {
  padding: 60px 0;
  background: var(--bg-color);
}

.approach-section h2 {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 50px;
}

.approach-items {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  position: relative;
}

/* The connector line */
.approach-items::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 5%;
  right: 5%;
  height: 3px;
  background: var(--primary-color);
  transform: translateY(-50%);
  z-index: 0;
}

.approach-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.process-box {
  background: #17181E;
  color: #fff;
  border-radius: 8px;
  padding: 14px 16px;
  max-width: 150px;
  min-height: 80px;
  position: relative;
  margin: 8px;
  border: 1px solid var(--primary-color);
  box-shadow: 0 4px 16px rgba(255, 107, 26, 0.3);
}

.process-box::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}

.process-box.bottom::after {
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-bottom: 10px solid var(--primary-color);
}

.process-box.top::after {
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-top: 10px solid var(--primary-color);
}

.process-box h3 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #fff;
}

.process-box p {
  font-size: 11.5px;
  opacity: 0.85;
  line-height: 1.4;
  color: #cbd5e1;
}

.process-box.invisible {
  background: transparent;
  box-shadow: none;
  border: none;
}

.process-box.invisible::after {
  display: none;
}

.approach-circle {
  flex: 0 0 auto;
  margin: 6px 0;
  z-index: 2;
}

.circle-border {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--card-bg);
  box-shadow: 0 2px 12px rgba(255, 107, 26, 0.25);
  transition: background 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.circle-border:hover {
  background: var(--primary-color);
  border-color: var(--primary-hover);
  box-shadow: 0 6px 24px rgba(255, 107, 26, 0.5);
}

.circle-border:hover .circle-img i {
  color: #fff;
}

.circle-img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-img i {
  font-size: 22px;
  color: var(--accent-blue);
  transition: color 0.25s;
}

/* =========================================
   INDUSTRIES SECTION
   ========================================= */
.industries-section {
  background: var(--bg-secondary);
  padding: 50px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.section-heading-center {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 36px;
}

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

.industry-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px 20px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative;
  overflow: visible;
}

.industry-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 107, 26, 0.4);
  box-shadow: 0 12px 36px rgba(255, 107, 26, 0.2);
}

.industry-icon {
  width: 90px;
  height: 90px;
  margin: -60px auto 20px;
  background: #111217;
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(255, 107, 26, 0.35);
  padding: 16px;
  transition: all 0.3s ease;
}

.industry-card:hover .industry-icon {
  background: rgba(255, 107, 26, 0.25);
  border-color: var(--primary-color);
  box-shadow: 0 0 30px rgba(255, 107, 26, 0.5);
  transform: scale(1.08);
}

.industry-icon svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 6px rgba(255, 107, 26, 0.6));
}

.industry-icon svg polygon,
.industry-icon svg circle,
.industry-icon svg path,
.industry-icon svg rect,
.industry-icon svg line {
  stroke: #FF6B1A !important;
}

.industry-icon svg rect[fill="#222"],
.industry-icon svg circle[fill="#222"],
.industry-icon svg path[fill="#222"] {
  fill: #FF6B1A !important;
}

.industry-card h2 {
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #ffffff;
  margin-bottom: 14px;
  margin-top: 16px;
}

.industry-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
  text-align: justify;
}

/* =========================================
   COUNTER SECTION
   ========================================= */
.counter-section {
  padding: 60px 0;
  background: var(--bg-color);
}

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

.counter-box {
  border-radius: 12px;
  padding: 30px 20px;
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.counter-box.red-border {
  border-bottom: 4px solid var(--primary-color);
  border-left: 4px solid var(--primary-color);
}

.counter-box.blue-border {
  border-bottom: 4px solid var(--accent-blue);
  border-left: 4px solid var(--accent-blue);
}

.counter-icon {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 22px;
}

.counter-icon.red {
  background: rgba(255, 107, 26, 0.15);
  color: var(--primary-color);
}

.counter-icon.blue {
  background: rgba(255, 107, 26, 0.1);
  color: var(--primary-color);
}

.counter-number {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}

.count-val {
  font-size: 44px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.plus {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-blue);
  line-height: 1;
  margin-top: 4px;
}

.counter-box h3 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
}

/* =========================================
   OUR SERVICES CAROUSEL
   ========================================= */
.services-section {
  background: var(--bg-secondary);
  padding: 60px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.services-carousel {
  display: flex;
  gap: 24px;
  overflow: hidden;
  position: relative;
  transition: transform 0.4s ease;
}

.service-card {
  flex: 0 0 calc(33.33% - 16px);
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  border-bottom: 4px solid transparent;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 107, 26, 0.4);
  box-shadow: 0 12px 36px rgba(255, 107, 26, 0.2);
}

.service-card1 {
  border-bottom-color: var(--primary-color);
}

.service-card2 {
  border-bottom-color: var(--primary-hover);
}

.service-card3 {
  border-bottom-color: var(--primary-color);
}

.service-card4 {
  border-bottom-color: var(--primary-hover);
}

.service-card.featured {
  transform: translateY(-12px);
  box-shadow: 0 12px 40px rgba(255, 107, 26, 0.3);
}

.service-card-icon {
  width: 54px;
  height: 54px;
  background: rgba(255, 107, 26, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
  color: var(--primary-color);
}

.service-card3 .service-card-icon {
  background: rgba(255, 107, 26, 0.1);
  color: var(--primary-color);
}

.service-card4 .service-card-icon {
  background: rgba(255, 107, 26, 0.1);
  color: var(--primary-hover);
}

.service-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
  line-height: 1.35;
}

.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
}

.carousel-nav button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  background: transparent;
  color: var(--primary-color);
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.carousel-nav button:hover {
  background: var(--primary-color);
  color: #fff;
}

/* =========================================
   MICROSOFT DYNAMICS 365 SECTION
   ========================================= */
.dynamics-section {
  padding: 60px 0;
  background: var(--bg-color);
}

/* =========================================
   PARTNER SECTION & CAROUSEL
   ========================================= */
.partner-section {
  padding: 0 0 60px;
  background: var(--bg-color);
}

.partners-section {
  padding: 50px 0;
  background: var(--bg-color);
}

.partners-track-wrap {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.partners-track {
  display: flex;
  gap: 0;
  animation: scrollPartners 20s linear infinite;
  width: max-content;
}

@keyframes scrollPartners {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.partner-logo {
  flex: 0 0 200px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2px;
  padding: 14px 20px;
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.partner-logo img {
  max-height: 60px;
  object-fit: contain;
  filter: brightness(0.9) contrast(1.1);
}

.partner-logo:hover {
  border-color: var(--primary-color);
  box-shadow: 0 4px 16px rgba(255, 107, 26, 0.25);
}

.partner-logo span {
  font-size: 16px;
  font-weight: 700;
  color: #f8fafc;
  text-align: center;
  line-height: 1.3;
}

.partner-logo span em {
  font-style: italic;
  color: var(--accent-blue);
}

/* =========================================
   CONTACT SECTION
   ========================================= */
.contact-section {
  padding: 60px 0;
  background: var(--bg-secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 50px 40px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.contact-left h1,
.contact-right h1 {
  font-size: 24px;
  font-weight: 700;
  text-transform: capitalize;
  color: #ffffff;
  margin-bottom: 30px;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 30px;
}

.info-box {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 16px;
  border-right: 1px dashed rgba(255, 255, 255, 0.15);
  border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
}

.info-box.even {
  background: var(--bg-secondary);
}

.info-icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.info-content h6 {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.info-content p,
.info-content a {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

.info-content a:hover {
  color: var(--accent-blue);
}

.lets-connect h1 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: capitalize;
  color: #ffffff;
}

.social-icons-contact {
  display: flex;
  gap: 10px;
}

.social-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background 0.25s, transform 0.2s;
}

.social-circle:hover {
  background: var(--primary-hover);
  transform: translateY(-3px);
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #cbd5e1;
}

.form-input {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 14px;
  font-family: inherit;
  color: #ffffff;
  background: var(--bg-secondary);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(255, 107, 26, 0.2);
}

textarea.form-input {
  resize: vertical;
  min-height: 100px;
}

.submit-btn {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 13px 30px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.25s, transform 0.2s, box-shadow 0.2s;
  width: fit-content;
}

.submit-btn:hover {
  background: linear-gradient(135deg, var(--primary-hover) 0%, var(--primary-color) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 26, 0.45);
}

/* =========================================
   FOOTER
   ========================================= */
.main-footer {
  background: #0D0E12;
  color: var(--text-muted);
  padding: 60px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-logo img {
  height: 55px;
  width: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 6px rgba(255, 107, 26, 0.3));
}

.footer-title {
  margin-bottom: 20px;
}

.footer-title h4 {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #ffffff;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary-color);
  display: inline-block;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
}

.footer-links li .fa-solid {
  color: var(--accent-blue);
  font-size: 10px;
}

.footer-links li a {
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-links li a:hover {
  color: var(--accent-blue);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
}

.footer-contact-list li .fa {
  color: var(--accent-blue);
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-list li a {
  color: var(--text-muted);
}

.footer-contact-list li a:hover {
  color: var(--accent-blue);
}

.footer-contact-list li span {
  color: var(--text-muted);
  line-height: 1.4;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  font-size: 22px;
  color: var(--text-muted);
  transition: color 0.2s, transform 0.2s;
}

.footer-social a:hover {
  color: var(--accent-blue);
  transform: translateY(-3px);
}

.footer-hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 40px 0 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.footer-bottom-left a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-bottom-left a:hover {
  color: var(--accent-blue);
}

.footer-bottom-right p {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-bottom-right a {
  color: var(--accent-blue);
}

.site-footer {
  background: #0D0E12;
  color: #fff;
  padding: 40px 20px 24px;
}

.site-footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 24px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.site-footer h4 {
  color: #fff;
  margin-bottom: 12px;
  font-size: 17px;
}

.site-footer p,
.site-footer a {
  color: var(--text-muted);
  line-height: 1.8;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--accent-blue);
}

.site-footer .footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 30px;
  padding-top: 20px;
}

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

  .site-footer .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =========================================
   FLOATING WHATSAPP BUTTON & POPUP WIDGET
   ========================================= */
.whatsapp-widget-container {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  font-family: 'Open Sans', 'Raleway', sans-serif;
}

.whatsapp-popup-card {
  display: none;
  width: 340px;
  max-width: calc(100vw - 36px);
  background: var(--card-bg);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  margin-bottom: 14px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s;
  pointer-events: none;
}

.whatsapp-popup-card.open {
  display: block !important;
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.wa-popup-header {
  background: linear-gradient(135deg, #CC5500 0%, #FF6B1A 100%);
  color: #ffffff;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.wa-popup-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wa-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  color: #FF6B1A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}

.wa-header-text h4 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.wa-header-text .wa-status {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 3px;
}

.status-dot {
  width: 7px;
  height: 7px;
  background-color: var(--whatsapp-green);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 6px var(--whatsapp-green);
}

.wa-close-btn {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #ffffff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  line-height: 1;
}

.wa-close-btn:hover {
  background: rgba(255, 255, 255, 0.35);
}

.wa-popup-body {
  padding: 16px 18px;
  background: var(--card-bg);
  max-height: 480px;
  overflow-y: auto;
}

.wa-popup-intro {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.4;
}

.wa-popup-intro strong {
  color: #ffffff;
}

.wa-form-group {
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.wa-form-group label {
  font-size: 11.5px;
  font-weight: 700;
  color: #cbd5e1;
  text-transform: capitalize;
}

.wa-form-group label .required {
  color: #ef4444;
}

.wa-form-group input {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  font-size: 13px;
  font-family: inherit;
  color: #ffffff;
  background: var(--bg-secondary);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

.wa-form-group input:focus {
  border-color: var(--primary-color);
  background: var(--bg-secondary);
  box-shadow: 0 0 0 3px rgba(255, 107, 26, 0.2);
}

.wa-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--whatsapp-green) 0%, #17a87c 100%);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 11px;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(32, 201, 151, 0.4);
}

.wa-submit-btn:hover {
  background: linear-gradient(135deg, #17a87c 0%, var(--whatsapp-green) 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(32, 201, 151, 0.5);
}

.floating_btn {
  position: relative;
  z-index: 10001;
}

.contact_icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--whatsapp-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  box-shadow: 0 4px 20px rgba(32, 201, 151, 0.5);
  animation: pulse 2s infinite;
  cursor: pointer;
  transition: transform 0.2s;
}

.contact_icon:hover {
  transform: scale(1.1);
}

.floating_phone_btn {
  position: fixed;
  right: 22px;
  bottom: 110px;
  z-index: 10002;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary-color);
  box-shadow: 0 8px 26px rgba(255, 107, 26, 0.4);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.floating_phone_btn.in-whatsapp-container {
  position: static;
  margin-bottom: 12px;
  z-index: auto;
}

.floating_phone_btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #fff;
}

.floating_phone_btn:hover {
  transform: translateY(-2px);
  background: var(--primary-hover);
}

.phone_icon {
  font-size: 24px;
}

@media (max-width: 600px) {
  .whatsapp-widget-container {
    bottom: 16px;
    right: 16px;
  }

  .floating_phone_btn {
    right: 16px;
    bottom: 88px;
    width: 52px;
    height: 52px;
  }

  .phone_icon {
    font-size: 22px;
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(32, 201, 151, 0.6);
  }

  70% {
    box-shadow: 0 0 0 16px rgba(32, 201, 151, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(32, 201, 151, 0);
  }
}

/* =========================================
   ENQUIRE NOW SIDEBAR
   ========================================= */
.sidebar-contact {
  position: fixed;
  top: 30%;
  right: -300px;
  width: 300px;
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: -4px 0 30px rgba(0, 0, 0, 0.6);
  border-radius: 12px 0 0 12px;
  padding: 24px 20px;
  z-index: 9998;
  transition: right 0.35s ease;
}

.sidebar-contact.open {
  right: 0;
}

.sidebar-contact .toggle {
  position: absolute;
  top: 50%;
  left: -90px;
  transform: translateY(-50%) rotate(-90deg);
  background: var(--primary-color);
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px 8px 0 0;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.sidebar-contact h2 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #ffffff;
}

.sidebar-contact .scroll {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar-contact input,
.sidebar-contact textarea {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: var(--bg-secondary);
  color: #ffffff;
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 13px;
  font-family: inherit;
  outline: none;
  resize: vertical;
}

.sidebar-contact input:focus,
.sidebar-contact textarea:focus {
  border-color: var(--primary-color);
}

.contact-btn-container {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 11px 20px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
  text-align: center;
  justify-content: center;
}

.contact-btn-container:hover {
  background: var(--primary-hover);
}

/* =========================================
   SECTION FADE-IN ANIMATIONS
   ========================================= */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.leftAni {
  animation: slideInLeft 0.7s ease forwards;
}

.rightAni {
  animation: slideInRight 0.7s ease forwards;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

/* Large Desktop */
@media (max-width: 1200px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

/* Tablet */
@media (max-width: 992px) {
  .desktop-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Hero banner responsive */
  .hero-slider {
    min-height: auto;
    height: auto;
  }

  .slide {
    position: relative;
    height: auto;
    display: none;
  }

  .slide.active {
    display: block;
  }

  .slide-banner {
    height: auto;
  }

  .banner-img {
    height: 380px;
    object-position: center center;
  }

  .slide-inner {
    padding: 30px 20px;
  }

  .slide-content-wrap {
    flex-direction: column;
    gap: 20px;
  }

  .slide-text {
    flex: 1;
    max-width: 100%;
    text-align: center;
  }

  .slide-image {
    flex: 1;
    max-width: 100%;
  }

  .slider-img {
    max-height: 250px;
  }

  .slide-text h3 {
    font-size: 22px;
  }

  .two-col {
    flex-direction: column;
    gap: 30px;
  }

  .col-img {
    flex: 1;
    max-width: 100%;
  }

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

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

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

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

  .approach-items {
    display: none;
  }

  .approach-section::after {
    content: '';
    display: block;
  }

  .services-carousel {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .service-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .sub-header-inner {
    flex-direction: column;
    gap: 8px;
  }

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

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

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

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

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .industry-card {
    margin-top: 50px;
  }

  .hero-slider {
    min-height: auto;
    height: auto;
  }

  .slide {
    position: relative;
    height: auto;
    display: none;
  }

  .slide.active {
    display: block;
  }

  .slide-banner {
    height: auto;
  }

  /* Hero banner mobile */
  .banner-img {
    width: 100%;
    height: auto;
    max-height: 280px;
    object-position: center center;
  }

  .slider-dots {
    bottom: 8px;
    gap: 7px;
  }

  .dot {
    width: 9px;
    height: 9px;
  }

  .slide-text h3 {
    font-size: 18px;
  }

  .hero-btn {
    padding: 10px 20px;
    font-size: 12px;
  }

  .section-heading {
    font-size: 22px;
  }

  .section-heading-center {
    font-size: 22px;
  }
}

@media (max-width: 360px ) {
  .sub-header-left {
    display: flex;
    align-items: center;
    justify-content: center;
   /* padding-left: 10px;*/
   padding-right: 10px; 
  }
  .divider{
    margin: 0 5px;
  }
}

/* Very small phones */
@media (max-width: 500px) {
  .banner-img {
    width: 100%;
    height: auto;
    max-height: 180px;
    object-position: center center;
  }

  .hero-slider {
    min-height: auto;
    height: auto;
  }

  .slide {
    position: relative;
    height: auto;
  }

  .slide.active {
    display: block;
  }

  .slide-banner {
    height: auto;
  }

  .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 5px;
  }

  .slider-dots {
    bottom: 6px;
  }

  .dot {
    width: 8px;
    height: 8px;
  }
}

/* =========================================
   ABOUT PAGE STYLES
   ========================================= */

.about-hero {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 50%, var(--primary-color) 100%);
  color: white;
  padding: 100px 20px 80px;
  text-align: center;
  margin-top: 10px;
}

.about-hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.about-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.about-content {
  padding: 80px 0;
  background-color: var(--bg-color);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-text h2 {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 10px;
}

.heading-line {
  width: 60px;
  height: 4px;
  background-color: var(--primary-color);
  margin-bottom: 25px;
  border-radius: 2px;
}

.heading-line.center-line {
  margin: 0 auto 40px auto;
}

.about-text p {
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.mv-box {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border-bottom: 3px solid var(--primary-color);
  transition: transform 0.3s ease;
}

.mv-box:hover {
  transform: translateY(-5px);
}

.mv-box i {
  font-size: 2rem;
  color: var(--accent-blue);
  margin-bottom: 15px;
}

.mv-box h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #ffffff;
}

.mv-box p {
  font-size: 0.95rem;
  margin-bottom: 0;
  color: var(--text-muted);
}

.about-image img {
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.core-values {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.core-values h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #ffffff;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.value-card {
  background: var(--card-bg);
  padding: 40px 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(255, 107, 26, 0.2);
  border-color: var(--primary-color);
}

.value-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 107, 26, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  color: var(--primary-color);
  font-size: 1.8rem;
  transition: all 0.3s ease;
}

.value-card:hover .value-icon {
  background: var(--primary-color);
  color: white;
}

.value-card h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #ffffff;
}

.value-card p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* Animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  animation: slideInLeft 0.8s ease forwards;
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  animation: slideInRight 0.8s ease forwards;
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

.delay-3 {
  animation-delay: 0.6s;
}

.delay-4 {
  animation-delay: 0.8s;
}

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

.timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background-color: rgba(255, 255, 255, 0.15);
  top: 0;
  bottom: 0;
  left: 20px;
  margin-left: -2px;
  border-radius: 2px;
}

.timeline-item {
  padding: 20px 0 20px 60px;
  position: relative;
}

.timeline-dot {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: var(--primary-color);
  border: 4px solid var(--bg-color);
  border-radius: 50%;
  top: 25px;
  left: 20px;
  margin-left: -10px;
  z-index: 1;
  box-shadow: 0 0 0 4px rgba(255, 107, 26, 0.25);
  transition: all 0.3s ease;
}

.timeline-item:hover .timeline-dot {
  transform: scale(1.3);
  box-shadow: 0 0 0 6px rgba(255, 107, 26, 0.35);
}

.timeline-content {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 25px 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
}

.timeline-item:hover .timeline-content {
  border-left: 3px solid var(--primary-color);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  transform: translateX(5px);
}

.timeline-content h3 {
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 10px;
}

.timeline-content p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .timeline::after {
    left: 50%;
  }

  .timeline-item {
    width: 50%;
    padding: 20px 40px;
  }

  .timeline-item:nth-child(even) {
    left: 50%;
  }

  .timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
  }

  .timeline-dot {
    left: auto;
    right: -10px;
  }

  .timeline-item:nth-child(even) .timeline-dot {
    left: -10px;
    right: auto;
  }
}

/* Team Section Styles */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.team-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(255, 107, 26, 0.2);
}

.team-image-wrapper {
  position: relative;
  height: 280px;
  overflow: hidden;
  background-color: var(--bg-secondary);
}

.team-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: #64748b;
  background: linear-gradient(135deg, #111217, #17181E);
  transition: all 0.3s ease;
}

.team-card:hover .team-placeholder {
  color: var(--primary-color);
  transform: scale(1.1);
}

.team-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-image-wrapper img {
  transform: scale(1.1);
}

.team-social {
  position: absolute;
  bottom: -60px;
  left: 0;
  width: 100%;
  background: rgba(255, 107, 26, 0.92);
  padding: 15px 0;
  display: flex;
  justify-content: center;
  gap: 15px;
  transition: bottom 0.3s ease;
}

.team-card:hover .team-social {
  bottom: 0;
}

.team-social a {
  color: white;
  font-size: 1.2rem;
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s ease, transform 0.3s ease;
}

.team-social a:hover {
  background: white;
  color: var(--primary-color);
  transform: translateY(-3px);
}

.team-info {
  padding: 25px 20px;
}

.team-info h3 {
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 5px;
}

.team-role {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.95rem;
}

/* Service & Feature Pages - Premium Dark Technology Theme Overrides */
body {
  background-color: var(--bg-color, #111217) !important;
  color: var(--text-color, #F5F5F5);
}

.feature-banner,
.service-page-banner,
.cyber-hero {
  background: linear-gradient(135deg, #111217 0%, #17181E 35%, #1E1F26 100%) !important;
  color: #F5F5F5 !important;
  border-bottom: 1px solid #25262C;
}

.feature-banner h1,
.service-page-banner h1,
.cyber-hero h1,
.feature-section h2,
.intro-card h2,
.cta-section h2 {
  color: #F5F5F5 !important;
}

.feature-banner p,
.service-page-banner p,
.cyber-hero p,
.feature-section p,
.intro-card p,
.cta-section p {
  color: #9A9AA0 !important;
}

.feature-content {
  background: #111217 !important;
  color: #F5F5F5 !important;
}

.content-card,
.intro-card,
.scene-card {
  background: #17181E !important;
  border: 1px solid #25262C !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4) !important;
  color: #F5F5F5 !important;
}

.icon-card,
.service-card,
.stat-card {
  background: #1E1F26 !important;
  border: 1px solid #25262C !important;
  color: #F5F5F5 !important;
}

.icon-card i,
.service-card i,
.feature-list li::before {
  color: #FF6B1A !important;
}

.icon-card h3,
.service-card h3 {
  color: #F5F5F5 !important;
}

.icon-card p,
.service-card p,
.feature-list li {
  color: #9A9AA0 !important;
}

.cta-section {
  background: linear-gradient(135deg, #17181E, #1E1F26) !important;
  border: 1px solid #25262C !important;
}

.cta-button {
  background: #FF6B1A !important;
  color: #FFFFFF !important;
  transition: all 0.3s ease !important;
}

.cta-button:hover {
  background: #FF7A24 !important;
  transform: translateY(-2px);
}

.secondary-button {
  background: #1E1F26 !important;
  color: #FF6B1A !important;
  border: 1px solid #25262C !important;
}

.secondary-button:hover {
  background: #25262C !important;
  color: #FF7A24 !important;
}

.eyebrow {
  background: rgba(255, 107, 26, 0.15) !important;
  border: 1px solid rgba(255, 107, 26, 0.3) !important;
  color: #FF6B1A !important;
}

.back-link {
  color: #FF6B1A !important;
}

.back-link:hover {
  color: #FF7A24 !important;
}

.pill,
.pill-grid span {
  background: #1E1F26 !important;
  border: 1px solid #25262C !important;
  color: #F5F5F5 !important;
}

.stat-card strong {
  color: #FF6B1A !important;
}

.stat-card span {
  color: #9A9AA0 !important;
}

.benefit-item {
  background: #1E1F26 !important;
  border: 1px solid #25262C !important;
  color: #F5F5F5 !important;
}

.benefit-item strong {
  color: #FF6B1A !important;
}