/* =========================================
   CompsyTechnology – Main Stylesheet
   ========================================= */

:root {
  --primary: #0057b8;
  --primary-dark: #003d8f;
  --accent: #00aaff;
  --dark: #0a1628;
  --dark2: #112244;
  --text: #2d3748;
  --text-light: #64748b;
  --light-bg: #f4f7fc;
  --white: #ffffff;
  --border: #e2e8f0;
  --shadow: 0 4px 24px rgba(0,87,184,0.10);
  --radius: 10px;
  --transition: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 10px;
}

.section { padding: 60px 0; }
.center { text-align: center; }
.mt-1 { margin-top: 16px; }
.mt-2 { margin-top: 32px; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.25;
} 
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 16px; color: var(--dark); }
h3 { font-size: 1.15rem; margin-bottom: 10px; }
h4 { font-size: 1rem; }

.section-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: none;
  /*color: var(--primary);*/
  color: #000;
  margin-bottom: 10px;
}
.section-label.light { color: var(--accent); }
.section-sub {
  color: #000;
  max-width: 680px;
  margin: 0 auto 40px;
  font-size: 1.0rem;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 13px 32px;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 1px;
  text-transform: none;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: #80B3FF;
  color: var(--white);
  border-color: #80B3FF;
}
.btn-primary:hover {
  background: #5A9AFF;
  border-color: #5A9AFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(128,179,255,0.35);
}
.btn-outline {
  background: transparent;
  color: #80B3FF;
  border-color: #80B3FF;
}
.btn-outline:hover { 
  background: #80B3FF;
  color: var(--white);
  transform: translateY(-2px);
}
.btn-sm { padding: 9px 20px; font-size: 0.75rem; }
.card-link {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.card-link:hover { color: var(--primary-dark); gap: 10px; }

/* ---- TOPBAR ---- */
.topbar {
  background: #80B3FF;
  color: #fff;
  font-size: 0.78rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 7px 0;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
.topbar-left {
  display: flex;
  gap: 32px;
}
.topbar-right {
  display: flex;
  gap: 32px;
  margin-left: auto;
}
.topbar-inner .topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: color var(--transition);
}
.topbar-inner .topbar-link i {
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
}
/*.topbar-inner .topbar-link:hover { 
  color: var(--accent); 
}*/
.topbar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #80B3FF;
  border-radius: 50%;
  font-size: 14px;
}
.topbar-inner span {
  cursor: pointer;
  transition: color var(--transition);
}
/*.topbar-inner span:hover { color: var(--accent); }*/

/* Topbar Text Responsive */
.topbar-text-mobile {
  display: none;
}

@media (max-width: 768px) {
  .topbar {
    font-size: 0.7rem;
    padding: 6px 0;
  }
  
  .topbar-inner {
    gap: 12px;
  }
  
  .topbar-left {
    gap: 12px;
  }
  
  .topbar-right {
    gap: 12px;
  }
  
  .topbar-text-full {
    display: none;
  }
  
  .topbar-text-mobile {
    display: inline;
  }
  
  .topbar-inner .topbar-link {
    gap: 6px;
  }
  
  .topbar-inner .topbar-link i {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .topbar {
    font-size: 0.65rem;
    padding: 5px 0;
  }
  
  .topbar-inner {
    gap: 8px;
  }
  
  .topbar-left {
    gap: 8px;
  }
  
  .topbar-right {
    gap: 8px;
  }
  
  .topbar-inner .topbar-link {
    gap: 4px;
  }
  
  .topbar-inner .topbar-link i {
    font-size: 0.9rem;
  }
}

/* ---- HEADER / NAV ---- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(27,58,107,0.08);
  transition: all 0.3s ease;
}

.header.scrolled { 
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 24px;
}

.logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.logo-main { color: var(--dark); }
.logo-accent { color: var(--primary); }
.footer-logo { font-size: 1.3rem; }

.main-nav > ul {
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav > ul > li {
  position: relative;
}
.main-nav > ul > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.5px;
  color: var(--dark);
  border-radius: 4px;
  transition: var(--transition);
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li.active > a {
  color: var(--primary);
  background: rgba(0,87,184,0.06);
}
.main-nav .fa-chevron-down { font-size: 0.6rem; }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  min-width: 210px;
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  border-top: 3px solid var(--primary);
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 9px 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  transition: var(--transition);
}
.dropdown li a:hover {
  color: var(--primary);
  background: var(--light-bg);
  padding-left: 26px;
}

/* ---- MEGA MENU ---- */
.has-megamenu {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--white);
  width: 1216px;
  max-width: 90vw;
  border-radius: 12px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.15);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  border-top: 3px solid #80B3FF;
  overflow: hidden;
}

.has-megamenu:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-menu-inner {
  display: flex;
  min-height: 400px;
}

/* Left Side - Categories */
.mega-menu-left {
  width: 354px;
  background: #f4f7f6;
  padding: 32px 0;
  border-right: 1px solid #e5e7eb;
}

.mega-menu-categories {
  display: flex;
  flex-direction: column;
}

.mega-category-item {
  padding: 16px 32px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.0rem;
  font-weight: 600;
  color: #1a1a1a;
  cursor: pointer;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
  position: relative;
}

.mega-category-item.mega-category-title {
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1.3;
  cursor: default;
  padding-bottom: 24px;
  margin-bottom: 8px;
  border-left: none;
}

.mega-category-item.mega-category-title::after {
  content: '';
  position: absolute;
  bottom: 12px;
  left: 32px;
  right: 32px;
  height: 2px;
  background: linear-gradient(90deg, #80B3FF 0%, transparent 100%);
}

.mega-category-item:not(.mega-category-title):hover {
  background: rgba(128, 179, 255, 0.08);
  border-left-color: #80B3FF;
  padding-left: 36px;
}

.mega-category-item.active:not(.mega-category-title) {
  background: rgba(128, 179, 255, 0.12);
  border-left-color: #80B3FF;
  color: #0057b8;
  font-weight: 700;
}

/* Right Side - Content */
.mega-menu-right {
  flex: 1;
  background: #ffffff;
  padding: 32px 36px;
  overflow-y: auto;
  max-height: 500px;
}

.mega-menu-content {
  display: none;
  animation: fadeInUp 0.3s ease;
}

.mega-menu-content.active {
  display: block;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mega-menu-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px 24px;
  column-gap: 24px;
}

.mega-menu-list li {
  list-style: none;
}

.mega-menu-list li a {
  display: block;
  padding: 10px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #000000;
  border-radius: 6px;
  transition: all 0.2s ease;
  position: relative;
}

.mega-menu-list li a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: #80B3FF;
  transition: width 0.2s ease;
}

.mega-menu-list li a:hover {
  background: rgba(128, 179, 255, 0.08);
  color: #0057b8;
  padding-left: 24px;
}

.mega-menu-list li a:hover::before {
  width: 12px;
  left: 8px;
}

/* Inactive link style */
.mega-menu-list li a.inactive-link {
  color: #999999;
  cursor: not-allowed;
  opacity: 0.6;
}

.mega-menu-list li a.inactive-link:hover {
  background: transparent;
  padding-left: 16px;
  color: #999999;
}

.mega-menu-list li a.inactive-link:hover::before {
  width: 0;
}

/* ---- COMPANY MEGA MENU STYLES ---- */
.mega-menu-company-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
}

.company-description {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.3;
  margin-bottom: 32px;
}

.company-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-company-primary,
.btn-company-outline {
  padding: 14px 32px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid #80B3FF;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-company-outline {
  background: transparent;
  color: #80B3FF;
  border-color: #80B3FF;
}

.btn-company-outline:hover {
  background: rgba(128, 179, 255, 0.1);
  color: #5A9AFF;
  border-color: #5A9AFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(128, 179, 255, 0.25);
}

.btn-company-primary {
  background: #80B3FF;
  color: var(--white);
  border-color: #80B3FF;
}

.btn-company-primary:hover {
  background: #5A9AFF;
  border-color: #5A9AFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(128, 179, 255, 0.35);
}

/* Company Right Panel */
.mega-menu-company-right {
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.company-menu-item {
  padding: 20px 16px;
  text-decoration: none;
  display: block;
  border-bottom: 1px solid #e5e7eb;
  transition: all 0.2s ease;
}

.company-menu-item:hover {
  background: rgba(128, 179, 255, 0.05);
  padding-left: 20px;
}

.company-menu-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.company-menu-title i {
  font-size: 0.9rem;
  color: #80B3FF;
}

.company-menu-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  color: #666666;
  line-height: 1.4;
}

/* Vacancies Banner */
.company-vacancies-banner {
  margin-top: 16px;
  background-image: url('../images/pexels-edmond-dantes-8555677.JPG');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 8px;
  padding: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.company-vacancies-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  border-radius: 8px;
}

.vacancies-content {
  flex: 1;
  position: relative;
  z-index: 2;
}

.vacancies-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.vacancies-content p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
  margin: 0;
}

.btn-vacancies {
  padding: 14px 40px;
  background: #80B3FF;
  color: var(--white);
  border-radius: 24px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  display: inline-block;
}

.btn-vacancies:hover {
  background: #5A9AFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(128, 179, 255, 0.5);
}

/* Mobile Responsive for Company Menu */
@media (max-width: 768px) {
  .mega-menu-company-left {
    padding: 24px 20px;
  }
  
  .company-description {
    font-size: 1rem;
    margin-bottom: 24px;
  }
  
  .mega-menu-company-right {
    padding: 20px;
  }
  
  .company-vacancies-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  
  .btn-vacancies {
    width: 100%;
    text-align: center;
  }
}


/* ---- ECOSYSTEM MEGA MENU STYLES ---- */
.mega-menu-ecosystem-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
}

.ecosystem-description {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.3;
  margin-bottom: 32px;
}

.ecosystem-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-ecosystem-outline {
  padding: 14px 32px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid #80B3FF;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: transparent;
  color: #80B3FF;
}

.btn-ecosystem-outline:hover {
  background: rgba(128, 179, 255, 0.1);
  color: #5A9AFF;
  border-color: #5A9AFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(128, 179, 255, 0.25);
}

/* Ecosystem Right Panel */
.mega-menu-ecosystem-right {
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ecosystem-menu-item {
  padding: 20px 16px;
  text-decoration: none;
  display: block;
  border-bottom: 1px solid #e5e7eb;
  transition: all 0.2s ease;
}

.ecosystem-menu-item:hover {
  background: rgba(128, 179, 255, 0.05);
  padding-left: 20px;
}

.ecosystem-menu-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ecosystem-menu-title i {
  font-size: 0.9rem;
  color: #80B3FF;
}

.ecosystem-menu-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  color: #666666;
  line-height: 1.4;
}

/* Customers & Success Stories Banner */
.ecosystem-customers-banner {
  margin-top: 16px;
  background-image: url('../images/puzzle.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 8px;
  padding: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.ecosystem-customers-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  border-radius: 8px;
}

.customers-content {
  flex: 1;
  position: relative;
  z-index: 2;
}

.customers-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.customers-content p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
  margin: 0;
}

.btn-customers {
  padding: 14px 40px;
  background: #80B3FF;
  color: var(--white);
  border-radius: 24px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  display: inline-block;
}

.btn-customers:hover {
  background: #5A9AFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(128, 179, 255, 0.5);
}

/* Mobile Responsive for Ecosystem Menu */
@media (max-width: 768px) {
  .mega-menu-ecosystem-left {
    padding: 24px 20px;
  }
  
  .ecosystem-description {
    font-size: 1rem;
    margin-bottom: 24px;
  }
  
  .mega-menu-ecosystem-right {
    padding: 20px;
  }
  
  .ecosystem-customers-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  
  .btn-customers {
    width: 100%;
    text-align: center;
  }
}


/* ---- OUR PORTFOLIO MEGA MENU STYLES ---- */
.mega-menu-portfolio-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 32px;
  padding-top: 40px;
}

.portfolio-description {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

.portfolio-headline {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.2;
  white-space: nowrap;
}

.portfolio-subtext {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.3;
}

/* Portfolio Right Panel */
.mega-menu-portfolio-right {
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Portfolio Tabs */
.portfolio-tabs {
  display: flex;
  flex-direction: row;
  gap: 0;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 16px;
}

.portfolio-tab {
  padding: 16px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1a1a;
  background: transparent;
  border: none;
  border-left: 3px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 8px;
}

.portfolio-tab i {
  font-size: 0.8rem;
  color: #80B3FF;
  transition: transform 0.2s ease;
}

.portfolio-tab:hover {
  background: rgba(128, 179, 255, 0.05);
  border-left-color: #80B3FF;
  padding-left: 20px;
}

.portfolio-tab:hover i {
  transform: translateX(3px);
}

.portfolio-tab.active {
  background: rgba(128, 179, 255, 0.1);
  border-left-color: #80B3FF;
  color: #0057b8;
  font-weight: 700;
}

.portfolio-tab.active i {
  color: #0057b8;
}

/* Portfolio Tab Content */
.portfolio-tab-content-wrapper {
  max-height: 200px;
  overflow-y: auto;
  margin-bottom: 16px;
}

.portfolio-tab-content {
  display: none;
  animation: fadeInUp 0.3s ease;
}

.portfolio-tab-content.active {
  display: block;
}

.portfolio-items-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px 24px;
  column-gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.portfolio-items-list li {
  list-style: none;
}

.portfolio-items-list li a {
  display: block;
  padding: 6px 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: #000000;
  border-radius: 6px;
  transition: all 0.2s ease;
  position: relative;
  text-decoration: none;
}

.portfolio-items-list li a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: #80B3FF;
  transition: width 0.2s ease;
}

.portfolio-items-list li a:hover {
  background: rgba(128, 179, 255, 0.08);
  color: #0057b8;
  padding-left: 20px;
}

.portfolio-items-list li a:hover::before {
  width: 12px;
  left: 6px;
}

/* Marketplace Banner */
.portfolio-marketplace-banner {
  margin-top: 16px;
  background-image: url('../images/compsyscloud.PNG');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 8px;
  padding: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.portfolio-marketplace-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  border-radius: 8px;
}

.marketplace-content {
  flex: 1;
  position: relative;
  z-index: 2;
}

.marketplace-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.marketplace-content p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  /*color: rgba(255, 255, 255, 0.85);*/
  color: #000000;
  line-height: 1.4;
  margin: 0;
}

.marketplace-content span {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
  margin: 0;
}

.btn-marketplace {
  padding: 14px 40px;
  background: #80B3FF;
  color: var(--white);
  border-radius: 24px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  display: inline-block;
}

.btn-marketplace:hover {
  background: #5A9AFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(128, 179, 255, 0.5);
}

/* Scrollbar for tab content */
.portfolio-tab-content-wrapper::-webkit-scrollbar {
  width: 6px;
}

.portfolio-tab-content-wrapper::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.portfolio-tab-content-wrapper::-webkit-scrollbar-thumb {
  background: #80B3FF;
  border-radius: 10px;
}

.portfolio-tab-content-wrapper::-webkit-scrollbar-thumb:hover {
  background: #5A9AFF;
}

/* Mobile Responsive for Portfolio Menu */
@media (max-width: 768px) {
  .mega-menu-portfolio-left {
    padding: 24px 20px;
  }
  
  .portfolio-headline {
    font-size: 1.2rem;
  }
  
  .portfolio-subtext {
    font-size: 0.95rem;
  }
  
  .mega-menu-portfolio-right {
    padding: 20px;
  }
  
  .portfolio-items-list {
    grid-template-columns: 1fr;
  }
  
  .portfolio-marketplace-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  
  .btn-marketplace {
    width: 100%;
    text-align: center;
  }
}


/* Scrollbar styling for mega menu */
.mega-menu-right::-webkit-scrollbar {
  width: 6px;
}

.mega-menu-right::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.mega-menu-right::-webkit-scrollbar-thumb {
  background: #80B3FF;
  border-radius: 10px;
}

.mega-menu-right::-webkit-scrollbar-thumb:hover {
  background: #5A9AFF;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- SEARCH ICON IN NAV ---- */
.search-icon-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--dark);
  border-radius: 4px;
  transition: var(--transition);
}
.search-icon-nav a i {
  font-weight: 900;
}
.search-icon-nav a:hover {
  color: var(--primary);
  background: rgba(0,87,184,0.06);
}

/* ---- NAV ACTION CARD ---- */
.nav-action-card {
  margin-left: 8px;
}

.action-card {
  display: flex;
  gap: 0;
  background: #80B3FF;
  border: 1px solid rgba(0,87,184,0.15);
  border-radius: 8px;
  padding: 4px;
  box-shadow: 0 2px 12px rgba(0,87,184,0.08);
  transition: all 0.3s ease;
}

.action-card:hover {
  box-shadow: 0 4px 20px rgba(0,87,184,0.15);
}

.action-card-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--white);
  background: transparent;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.action-card-item:first-child {
  border-right: 1px solid rgba(255,255,255,0.3);
  border-radius: 6px 0 0 6px;
  padding-right: 12px;
  margin-right: 4px;
}

.action-card-item i {
  font-size: 1.2rem;
  color: var(--white);
}

.action-card-item:hover {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}

.action-card-item:hover i {
  transform: scale(1.1);
}

/* ---- SEARCH MODAL ---- */
.search-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.search-modal.active {
  opacity: 1;
  visibility: visible;
}

.search-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.search-modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  background: var(--white);
  border-radius: 16px;
  padding: 60px 50px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.7);
  transition: transform 0.3s ease;
  z-index: 10000;
}

.search-modal.active .search-modal-content {
  transform: scale(1);
}

.search-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: var(--text-light);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.search-modal-close:hover {
  background: var(--light-bg);
  color: var(--primary);
  transform: rotate(90deg);
}

.search-form {
  width: 100%;
}

.search-form-group {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.search-input {
  width: 100%;
  padding: 20px 24px;
  font-family: 'Open Sans', sans-serif;
  font-size: 1.1rem;
  color: var(--text);
  border: 2px solid var(--border);
  border-radius: 8px;
  outline: none;
  transition: var(--transition);
}

.search-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(0, 87, 184, 0.1);
}

.search-input::placeholder {
  color: var(--text-light);
}

.search-submit {
  align-self: flex-start;
  padding: 16px 48px;
  font-size: 0.9rem;
}

/* Responsive Search Modal */
@media (max-width: 768px) {
  .search-modal-content {
    width: 95%;
    padding: 40px 30px;
  }
  
  .search-input {
    font-size: 1rem;
    padding: 16px 20px;
  }
  
  .search-submit {
    width: 100%;
    padding: 14px 32px;
  }
}

/* ---- STICKY ENQUIRY BUTTON ---- */
.sticky-enquiry-btn {
  position: fixed;
  right: 20px;
  bottom: 95px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  padding: 12px 10px;
  cursor: pointer;
  z-index: 9998;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 54px;
}

.sticky-enquiry-btn:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transform: translateY(-3px);
}

.sticky-enquiry-btn .enquiry-icon {
  width: 36px;
  height: 36px;
  background: #80B3FF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  transition: all 0.3s ease;
}

.sticky-enquiry-btn:hover .enquiry-icon {
  transform: scale(1.1);
  background: #6a9fe6;
}

.sticky-enquiry-btn .enquiry-text {
  font-family: 'Poppins', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  color: #80B3FF;
  text-align: center;
  line-height: 1.2;
}

/* Responsive */
@media (max-width: 768px) {
  .sticky-enquiry-btn {
    width: 50px;
    padding: 10px 8px;
    right: 15px;
    bottom: 85px;
  }
  
  .sticky-enquiry-btn .enquiry-icon {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
  
  .sticky-enquiry-btn .enquiry-text {
    font-size: 0.55rem;
  }
}

/* ---- SCROLL TO TOP BUTTON ---- */
.scroll-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  background: #fff;
  border: 3px solid #80B3FF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  background: #f8fbff;
}

.scroll-to-top i {
  color: #80B3FF;
  font-size: 1.4rem;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
  .scroll-to-top {
    width: 45px;
    height: 45px;
    right: 15px;
    bottom: 15px;
    border-width: 2.5px;
  }
  
  .scroll-to-top i {
    font-size: 1.2rem;
  }
}

/* ---- PARTNER ENQUIRY FLYOUT PANEL ---- */
.partner-flyout {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  pointer-events: none;
  
}

.partner-flyout.active {
  pointer-events: auto;
}

.partner-flyout-overlay {
  display: none;
}

.partner-flyout-panel {
  position: fixed;
  top: 48px;
  right: 0;
  width: 100%;
  max-width: 450px;
  /*height: calc(100vh - 48px - 120px);*/
  height: 665px;
  background: var(--white);
  box-shadow: -4px 0 30px rgba(0, 0, 0, 0.3);
  border: 1px solid #80B3FF;
  border-right: none;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  z-index: 10000;
  pointer-events: auto;
}

.partner-flyout.active .partner-flyout-panel {
  transform: translateX(0);
}

.partner-flyout-header {
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 100;
  padding: 11px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #80B3FF;
  margin-bottom: 0;
}

.partner-flyout-close {
  background: transparent;
  border: none;
  font-size: 2rem;
  color: var(--text);
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
  flex-shrink: 0;
}

.partner-flyout-close:hover {
  background: var(--light-bg);
  color: var(--primary);
  transform: rotate(90deg);
}

.partner-flyout-subtitle-wrapper {
  position: sticky;
  top: 53px;
  background: var(--white);
  z-index: 99;
  padding: 12px 40px 16px;
  /*border-bottom: 1px solid var(--border);*/
}

.partner-flyout-content {
  padding: 0 40px 40px;
}

.partner-flyout-content h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0;
  letter-spacing: 1px;
}

.partner-flyout-subtitle {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0;
  margin-top: 0;
  line-height: 1.6;
}

.partner-enquiry-form .form-group {
  margin-bottom: 20px;
}

.partner-enquiry-form .form-input,
.partner-enquiry-form .form-select,
.partner-enquiry-form .form-textarea {
  width: 100%;
  padding: 14px 0;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--dark);
  border: none;
  border-bottom: 1px solid var(--border);
  background: transparent;
  outline: none;
  transition: var(--transition);
}

.partner-enquiry-form .form-input:focus,
.partner-enquiry-form .form-select:focus,
.partner-enquiry-form .form-textarea:focus {
  border-bottom-color: var(--primary);
}

.partner-enquiry-form .form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2364748b' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  padding-right: 30px;
  cursor: pointer;
  color: var(--dark);
  font-weight: 600;
}

.partner-enquiry-form .form-select[multiple] {
  background-image: none;
  padding-right: 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 8px 14px;
  height: auto;
  color: var(--dark);
  font-weight: 400;
}

.partner-enquiry-form .form-select[multiple] option {
  padding: 6px 8px;
  border-radius: 3px;
  margin: 2px 0;
}

.partner-enquiry-form .form-select[multiple] option:checked {
  background: linear-gradient(0deg, #80B3FF 0%, #80B3FF 100%);
  color: white;
}

/* Multi-Select Tag Style */
.multi-select-wrapper {
  position: relative;
}

.multi-select-hidden {
  display: none;
}

.multi-select-tags {
  min-height: 45px;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  cursor: pointer;
  background: var(--white);
  transition: border-color 0.3s ease;
}

.multi-select-tags:hover {
  border-color: var(--primary);
}

.multi-select-tags.active {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 87, 184, 0.1);
}

.multi-select-tags:empty::before {
  content: 'Click to select countries...';
  color: var(--text-light);
  font-size: 0.95rem;
}

.multi-select-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  background: #e2e8f0;
  border-radius: 4px;
  font-size: 0.85rem;
  color: var(--dark);
  font-family: 'Open Sans', sans-serif;
}

.multi-select-tag-remove {
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  color: #64748b;
  transition: color 0.2s ease;
  font-weight: bold;
}

.multi-select-tag-remove:hover {
  color: #ef4444;
}

.multi-select-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  max-height: 280px;
  overflow: hidden;
}

.multi-select-search {
  padding: 10px;
  border-bottom: 1px solid var(--border);
}

.multi-select-search input {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 0.9rem;
  outline: none;
  font-family: 'Open Sans', sans-serif;
}

.multi-select-search input:focus {
  border-color: var(--primary);
}

.multi-select-options {
  max-height: 220px;
  overflow-y: auto;
}

.multi-select-option {
  padding: 10px 14px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--dark);
  transition: background-color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.multi-select-option:hover {
  background: var(--light-bg);
}

.multi-select-option.selected {
  background: rgba(128, 179, 255, 0.1);
  color: var(--primary);
  font-weight: 600;
}

.multi-select-option input[type="checkbox"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: #80B3FF;
}

.partner-enquiry-form .form-select option:first-child {
  color: var(--dark);
}

.partner-enquiry-form .form-textarea {
  resize: vertical;
  min-height: 80px;
  padding-top: 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding-left: 14px;
  padding-right: 14px;
}

.partner-enquiry-form .form-textarea:focus {
  border-color: var(--primary);
}

.partner-enquiry-form .checkbox-group {
  margin-bottom: 16px;
}

.partner-enquiry-form .checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.6;
  cursor: pointer;
  text-transform: none;
}

.partner-enquiry-form .checkbox-label input[type="checkbox"] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #16a34a;
  flex-shrink: 0;
}

.partner-enquiry-form .checkbox-label a {
  color: var(--primary);
  text-decoration: underline;
}

.partner-enquiry-form .checkbox-label a:hover {
  color: var(--primary-dark);
}

.partner-enquiry-form .btn-block {
  width: 100%;
  margin-top: 24px;
  padding: 16px 32px;
  font-size: 0.95rem;
}

/* Responsive Partner Flyout */
@media (max-width: 768px) {
  .partner-flyout-panel {
    max-width: 100%;
    height: calc(100vh - 48px - 80px);
  }
  
  .partner-flyout-header {
    padding: 12px 24px 0;
  }
  
  .partner-flyout-subtitle-wrapper {
    padding: 12px 24px 16px;
  }
  
  .partner-flyout-content {
    padding: 0 24px 40px;
  }
  
  .partner-flyout-content h2 {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .partner-flyout-panel {
    height: calc(100vh - 48px - 60px);
  }
  
  .partner-flyout-header {
    padding: 12px 20px 0;
  }
  
  .partner-flyout-subtitle-wrapper {
    padding: 12px 20px 16px;
  }
  
  .partner-flyout-content {
    padding: 0 20px 30px;
  }
  
  .partner-flyout-content h2 {
    font-size: 0.9rem;
  }
  
  .partner-flyout-subtitle {
    font-size: 0.9rem;
  }
  
  .partner-flyout-close {
    font-size: 1.5rem;
    width: 35px;
    height: 35px;
  }
}

/* ---- ENQUIRY FORM LOADER ---- */
.enquiry-loader-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  flex-direction: column;
  gap: 20px;
}

.enquiry-loader-overlay.active {
  display: flex;
}

.enquiry-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid #e2e8f0;
  border-top: 4px solid #80B3FF;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.enquiry-loader-text {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.5px;
}

/* ---- INTERNATIONAL TELEPHONE INPUT STYLING ---- */
.iti {
  width: 100%;
  display: block;
}

.iti__flag-container {
  border-bottom: 1px solid var(--border);
  padding-bottom: 14px;
}

.iti__selected-flag {
  padding: 0 0 0 0;
  background: transparent;
  border: none;
  outline: none;
}

.iti__selected-flag:hover,
.iti__selected-flag:focus {
  background: transparent;
}

.iti__arrow {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--dark);
  margin-left: 6px;
}

.iti--show-flags .iti__flag-container {
  padding-left: 0;
}

.iti__country-list {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  max-height: 250px;
  overflow-y: auto;
  margin-top: 4px;
  z-index: 10001;
}

.iti__search-input {
  width: calc(100% - 20px);
  margin: 10px;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 0.9rem;
  outline: none;
  font-family: 'Open Sans', sans-serif;
}

.iti__search-input:focus {
  border-color: var(--primary);
}

.iti__country {
  padding: 10px 14px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--dark);
  transition: background-color 0.2s ease;
}

.iti__country:hover {
  background: var(--light-bg);
}

.iti__country.iti__highlight {
  background: rgba(128, 179, 255, 0.1);
}

.iti__country-name {
  margin-left: 8px;
  color: var(--dark);
}

.iti__dial-code {
  color: var(--text-light);
  margin-left: 8px;
}

.iti__flag {
  margin-right: 8px;
}

#phoneInput {
  padding-left: 60px !important;
}

.iti--separate-dial-code .iti__selected-flag {
  background-color: transparent;
}

.iti--separate-dial-code .iti__selected-dial-code {
  margin-left: 6px;
  color: var(--dark);
  font-weight: 600;
}

/* ---- HERO SLIDER ---- */
.hero-slider {
  position: relative;
  /*height: 595px;  */
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}
.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 0.7s ease;
  padding: 300px 10px;
}
.slide.active { opacity: 1; }

/* Slide Overlay */
.slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.slide-content {
  max-width: 750px;
  animation: slideIn 0.7s ease forwards;
  position: relative;
  z-index: 2;
  text-align: left;
}
@keyframes slideIn {
  from { transform: translateX(-30px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* Hero Slider */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  background: var(--navy);
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
}

.slide.active {
  opacity: 1;
}

.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.slide-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(27,58,107,0.95) 0%, rgba(27,58,107,0.7) 50%, rgba(27,58,107,0.85) 100%);
}

.slide-bg-entrust::after {
  background: linear-gradient(135deg, rgba(114,57,136,0.95) 0%, rgba(114,57,136,0.7) 50%, rgba(114,57,136,0.85) 100%);
}

.slide-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding-top: 80px;
  padding-left: 0px;
  margin-left: 0;
}

.slide-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(76,175,80,0.2);
  color: #66BB6A;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  border: 1px solid rgba(76,175,80,0.3);
}

.slide-label i {
  color: #4CAF50;
}

.slide h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: white;
  margin-bottom: 24px;
  font-weight: 800;
  line-height: 1.1;
}

.slide p {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 600px;
}

.slide-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.slider-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.dot.active {
  background: #4CAF50;
  transform: scale(1.2);
}

.dot:hover {
  background: rgba(255,255,255,0.6);
}

.slider-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 24px;
  z-index: 10;
  pointer-events: none;
}

.arrow {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  pointer-events: all;
  font-size: 1.2rem;
}

.arrow:hover {
  background: #4CAF50;
  border-color: #4CAF50;
}

/* ---- TWO ENGINES ONE PARTNER SECTION ---- */
.twoengines-onepartner {
  /*background: url('../images/africabg.PNG') 30% 10% no-repeat, #f4f7f6;*/
  background: #f4f7f6;
  background-size: auto 115%;
  position: relative;
  padding: 80px 0;
  text-align: center;
}

.twoengines-onepartner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(244, 247, 246, 0.65);
  z-index: 1;
}

.twoengines-onepartner .container {
  position: relative;
  z-index: 2;
}

.twoengines-onepartner h2 {
  color: #80B3FF;
}

.twoengines-tabs {
  display: flex;
  max-width: 800px;
  width: 100%;
  height: 74px;
  background: #f4f7f6;
  border: 1px solid rgba(128, 179, 255, 0.6);
  border-radius: 16px;
  padding: 12px;
  margin: 40px auto 30px;
  gap: 0;
}

.twoengines-tab {
  flex: 1;
  width: 50%;
  background: transparent;
  color: #00143D;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 300ms ease;
  padding: 12px 24px;
  outline: none;
}

.twoengines-tab.active {
  background: #80B3FF;
  color: #00143D;
}

.twoengines-tab:hover:not(.active) {
  background: rgba(128, 179, 255, 0.1);
}

.twoengines-tab:focus-visible {
  outline: 2px solid #80B3FF;
  outline-offset: 2px;
}

.twoengines-content {
  margin: 40px auto 0;
  padding: 22.5px;
  max-width: 850px;
  width: 85%;
}

.tab-tagline {
  text-align: center;
  font-weight: 800;
  color: #000000;
  text-transform: none;
  font-size: 1.8rem;
  margin-bottom: 24px;
  font-family: 'Poppins', sans-serif;
}

.tab-tagline-right {
  text-align: left;
  font-weight: 700;
  color: #000000;
  text-transform: none;
  font-size: 1.3rem;
  margin-bottom: 24px;
  font-family: 'Poppins', sans-serif;
}

.tab-supporting-text {
  text-align: center;
  font-weight: 500;
  color: #000000;
  font-size: 1.0rem;
  line-height: 1.6;
  margin-bottom: 24px;
  font-family: 'Manrope', sans-serif;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.tab-two-columns {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-top: 30px;
  max-width: 1400px;
  width: calc(100vw - 80px);
  margin-left: 50%;
  transform: translateX(-50%);
  position: relative;
}

.tab-content-left {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.tab-content-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-left: 60px;
}
  align-items: center;
}

.tab-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 20, 61, 0.1);
}

/* Services Diagram Image */
.services-diagram-image {
  width: auto;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 0;
}

.diagram-svg {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  min-height: 450px;
  margin-top: 20px;
  margin-right: 20px;
}

.tab-pane {
  display: none !important;
  animation: fadeIn 400ms ease;
  position: relative;
  z-index: 1;
  pointer-events: none;
  visibility: hidden;
}

.tab-pane.active {
  display: block !important;
  pointer-events: auto;
  visibility: visible;
  z-index: 10;
}

@keyframes fadeIn {
  from { 
    opacity: 0;
    transform: translateY(10px);
  }
  to { 
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .twoengines-tabs {
    height: auto;
    flex-direction: column;
    padding: 8px;
    gap: 8px;
  }
  
  .twoengines-tab {
    width: 100%;
    padding: 16px;
  }
  
  .tab-two-columns {
    flex-direction: column;
    gap: 24px;
    width: 95%;
    transform: translateX(-50%);
  }
  
  .tab-content-left,
  .tab-content-right {
    width: 100%;
  }
  
  .diagram-svg {
    min-height: 300px;
  }
}
.prev-slide, .next-slide {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.prev-slide:hover, .next-slide:hover {
  background: var(--primary);
  border-color: var(--primary);
}
.dots { display: flex; gap: 10px; }
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
}
.dot.active { background: var(--white); width: 28px; border-radius: 5px; }

/* ---- ABOUT ---- */
.about-section { 
  background: url('../images/africabg.PNG') 30% 10% no-repeat, #f4f7f6;
  background-size: auto 115%;
  position: relative;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(244, 247, 246, 0.65);
  z-index: 1;
}

.about-section .container {
  position: relative;
  z-index: 2;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-image {
  position: relative;
  overflow: visible;
}
.about-image img {
  width: 90%;
  height: 378px;
  object-fit: cover;
  /*border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;*/
  border-radius: 38% 62% 58% 42% / 48% 38% 62% 52%;
  /*box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);*/
  position: relative;
  z-index: 1;
  transition: all 0.6s ease;
  margin-top: 30px;
}
.about-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(128, 179, 255, 0.6) 0%, rgba(128, 179, 255, 0.3) 40%, transparent 70%);
  /*border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;*/
  border-radius: 38% 62% 58% 42% / 48% 38% 62% 52%;
  z-index: 2;
  pointer-events: none;
  transition: all 0.6s ease;
}
.about-image:hover img {
  transform: scale(1.02);
  /*box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);*/
}
.about-image:hover::before {
  /*background: linear-gradient(135deg, rgba(128, 179, 255, 0.2) 0%, rgba(128, 179, 255, 0.6) 100%);*/
}

/* Home About Image - Specific styling for home.blade.php */
.homeabout-image {
  position: relative;
  overflow: visible;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Floating Collage Container */
.floating-collage {
  position: relative;
  width: 100%;
  max-width: 550px;
  height: 450px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
  padding: 20px;
}

/* Base Card Styling */
.collage-card {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  background: #fff;
}

.collage-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Hover Effects */
.collage-card:hover {
  transform: scale(1.08);
  box-shadow: 0 16px 48px rgba(128, 179, 255, 0.25), 0 8px 24px rgba(0, 0, 0, 0.15);
  z-index: 100 !important;
}

.collage-card:hover img {
  transform: scale(1.1);
}

/* Card Positioning - 2x2 Grid */
.card-1 {
  grid-column: 1;
  grid-row: 1;
  z-index: 4;
}

.card-2 {
  grid-column: 2;
  grid-row: 1;
  z-index: 3;
}

.card-3 {
  grid-column: 1;
  grid-row: 2;
  z-index: 2;
}

.card-4 {
  grid-column: 2;
  grid-row: 2;
  z-index: 1;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .floating-collage {
    max-width: 400px;
    height: 400px;
    gap: 15px;
    padding: 15px;
  }
  
  .collage-card {
    border-radius: 18px;
  }
}

@media (max-width: 480px) {
  .floating-collage {
    max-width: 320px;
    height: 320px;
    gap: 12px;
    padding: 10px;
  }
  
  .collage-card {
    border-radius: 16px;
  }
}

/* Mission Section - Overlapping Two Image Layout with Blue Frame */
.mission-section .about-image {
  position: relative;
  width: 100%;
  height: 500px;
}

.mission-section .about-image-frame {
  position: absolute;
  top: 30px;
  left: 30px;
  width: 75%;
  height: 75%;
  background: #80B3FF;
  border-radius: 12px;
  z-index: 1;
}

.mission-section .about-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.mission-section .about-image-wrapper .about-img-1 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 65%;
  height: 70%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  z-index: 3;
}

.mission-section .about-image-wrapper .about-img-2 {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 55%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  z-index: 2;
}

.mission-section .about-image-wrapper .about-img-1:hover,
.mission-section .about-image-wrapper .about-img-2:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Hexagon Shapes */
.hexagon-shapes {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 30px 0;
  position: relative;
}

.hexagon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #80B3FF;
  clip-path: polygon(30% 0%, 70% 0%, 100% 50%, 70% 100%, 30% 100%, 0% 50%);
  border-radius: 8px;
  filter: blur(0.3px);
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.hexagon::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #80B3FF;
  clip-path: polygon(30% 0%, 70% 0%, 100% 50%, 70% 100%, 30% 100%, 0% 50%);
  border-radius: 8px;
  filter: blur(0.5px);
  z-index: -1;
}

.hexagon-large {
  width:  160px;
  height: 145px;
  animation: hexagonPulse 4s ease-in-out infinite;
}

.hexagon-small {
  width: 55px;
  height: 50px;
  animation: hexagonPulse 4s ease-in-out infinite 0.5s;
  margin-top: 40px;
}

.hexagon-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  line-height: 1.4;
  padding: 20px;
}

.hexagon-text span {
  display: block;
}

@keyframes hexagonPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
}

/* Innovation Statement Styling */
.innovation-statement {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  color: #000;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, #000 0%, #80B3FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.innovation-statement.visible {
  opacity: 1;
  transform: translateX(0);
}

.innovation-line-1 {
  display: block;
}

.innovation-line-2 {
  display: block;
  padding-left: 5ch;
}

.about-text p {
  /*color: var(--text-light);*/
  color: #000;
  margin-bottom: 16px;
  font-size: 0.95rem;
}
.about-text .btn { margin-top: 24px; }

/* ---- SOLUTIONS / CORE AREAS ---- */
.solutions-section { 
  background: #f4f7f6;
  background-image: url('../images/africabg.PNG');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 50%;
  padding: 80px 0 60px;
  margin-bottom: 0;
  overflow: hidden;
  position: relative;
}
.solutions-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(244, 247, 246, 0.85);
  z-index: 1;
}
.solutions-section > * {
  position: relative;
  z-index: 2;
}
.solutions-section h2 { margin-bottom: 60px; }

/* Core Areas Wrapper */
.core-areas-wrapper {
  position: relative;
  margin-top: 40px;
  min-height: 300px;
}

/* Interlocking Ribbon */
.interlocking-ribbon {
  position: absolute;
  top: 0;
  left: 0;
  transform: none;
  width: 100%;
  max-width: 1200px;
  height: 300px;
  z-index: 2;
  pointer-events: none;
}

.ribbon-segment {
  animation: ribbonPulse 4s ease-in-out infinite;
}

.ribbon-back-1, .ribbon-back-2 {
  z-index: 1;
}

.ribbon-front-1, .ribbon-front-2 {
  z-index: 5;
}

@keyframes ribbonPulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.9;
  }
}

/* Core Areas Grid */
.core-areas-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  max-width: 1000px;
  margin: 0;
  padding: 0;
  z-index: 3;
  justify-items: start;
}

/* Core Area Item */
.core-area-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

/* Core Circle */
.core-circle {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.15),
    0 5px 20px rgba(0, 0, 0, 0.1),
    0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.core-circle:hover {
  transform: translateY(-5px);
}

.core-circle-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.3;
  text-align: center;
}

.core-circle-inner img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

/* Core Connector (Vertical Line) */
.core-connector {
  width: 4px;
  height: 120px;
  margin-top: 20px;
  position: relative;
  border-radius: 2px;
}

/* Core Dot */
.core-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Horizontal Bar */
.core-horizontal-bar {
  position: absolute;
  top: 360px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 900px;
  height: 4px;
  background: #666;
  border-radius: 2px;
  z-index: 2;
}

/* Core Descriptions */
.core-descriptions {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  max-width: 1000px;
  margin: 0;
  padding: 0;
  margin-top: 20px;
  z-index: 3;
  justify-items: start;
}

.core-description {
  text-align: left;
}

.core-description h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 16px;
}

.core-description p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: #000;
}

/* Solutions CTA */
.solutions-cta {
  text-align: left;
  margin-top: 50px;
  margin-bottom: 40px;
}

.solutions-cta .btn {
  font-size: 1rem;
  padding: 14px 32px;
}

/* ---- SERVICES ---- */
.services-section { 
  background: url('../images/core/worldmap.PNG') center/cover no-repeat, var(--white);
  position: relative;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.92);
  z-index: 1;
}

.services-section .container {
  position: relative;
  z-index: 2;
}
.services-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.service-tab {
  padding: 28px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-tab:hover, .service-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 8px 30px rgba(0,87,184,0.25);
  transform: translateY(-4px);
}
.service-tab:hover *, .service-tab.active * {
  color: var(--white) !important;
}
.service-tab:hover .tab-icon, .service-tab.active .tab-icon {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}
.tab-icon {
  width: 46px; height: 46px;
  border-radius: 8px;
  background: rgba(0,87,184,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 14px;
  transition: var(--transition);
}
.service-tab h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  color: var(--dark);
}
.service-tab p {
  font-size: 0.83rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ---- MAGIC ---- */
.magic-section {
  background: url('https://mindware.net/wp-content/uploads/2024/04/homepage-MAGIC-scaled.jpg') center/cover no-repeat;
  position: relative;
  padding: 100px 0;
}
.magic-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(10,22,40,0.93) 55%, rgba(0,87,184,0.7) 100%);
}
.magic-grid { position: relative; z-index: 1; }
.magic-text { max-width: 620px; color: var(--white); }
.magic-text h2 { color: var(--white); margin-bottom: 20px; }
.magic-text p { color: rgba(255,255,255,0.78); margin-bottom: 14px; font-size: 0.95rem; }

/* ---- NEWS ---- */
.news-section { 
  background: url('../images/worldmap.PNG') center/cover no-repeat, var(--light-bg);
  position: relative;
}

.news-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(244, 247, 246, 0.92);
  z-index: 1;
}

.news-section .container {
  position: relative;
  z-index: 2;
}

.news-section h2 { margin-bottom: 40px; }

/* News Slider Wrapper */
.news-slider-wrapper {
  position: relative;
  padding: 0 60px;
}

.news-grid-slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  padding-bottom: 10px;
}

.news-grid-slider::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.news-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  flex: 0 0 calc(25% - 18px);
  min-width: calc(25% - 18px);
}

.news-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.news-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.news-card:hover .news-img { transform: scale(1.04); }

.news-body { padding: 22px 22px 24px; }

.news-date {
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--primary);
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.news-body h4 {
  font-size: 0.92rem;
  line-height: 1.45;
  margin-bottom: 14px;
  color: var(--dark);
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

/* Slider Navigation Buttons */
.news-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.news-slider-btn:hover {
  background: #80B3FF;
  color: var(--white);
  border-color: #80B3FF;
  box-shadow: 0 4px 12px rgba(128, 179, 255, 0.3);
}

.news-slider-prev {
  left: 0;
}

.news-slider-next {
  right: 0;
}

.news-slider-btn i {
  font-size: 1.1rem;
}

/* ---- OUR SERVICES ---- */
.ourservices-section {
  /*background: #f4f7f6;*/
  background: #ffffff;
  background-size: auto 115%;
  position: relative;
  padding: 60px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.services-image {
  position: relative;
}

.services-image img {
  width: 100%;
  height: auto;
  max-height: 550px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.services-content {
  padding: 20px 0;
}

.services-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.0rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.2;
}

.services-subtitle {
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 35px;
  line-height: 1.6;
}

/* Accordion Styles */
.services-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accordion-item {
  background: #f4f7fc;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #e1e8f0;
}

.accordion-header {
  width: 100%;
  padding: 18px 24px;
  background: #f4f7fc;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
}

.accordion-header:hover {
  background: #e8eef7;
}

.accordion-header span {
  flex: 1;
}

.accordion-icon {
  font-size: 0.9rem;
  color: var(--dark);
  transition: transform 0.3s ease;
  margin-left: 15px;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-item.active {
  border-color: #d0dce9;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background: #fff;
  padding: 0 24px;
  border-top: 1px solid #e8eef7;
}

.accordion-item.active .accordion-content {
  max-height: 300px;
  padding: 20px 24px 24px;
}

.accordion-content p {
  margin-bottom: 16px;
  line-height: 1.7;
  color: var(--text);
  font-size: 0.95rem;
}

.accordion-content .card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #80B3FF;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.accordion-content .card-link:hover {
  color: #0057b8;
  gap: 12px;
}

.accordion-content .card-link i {
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.accordion-content .card-link:hover i {
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 968px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services-title {
    font-size: 2rem;
  }

  .services-image img {
    max-height: 400px;
  }
}

/* ---- CLIENTS ---- */
.clients-section { 
  background: var(--light-bg);
  padding: 80px 0;
}

.clients-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Left Side - Client Logos Area */
.clients-logos-area {
  position: relative;
  min-height: 400px;
}

.clients-industry-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.clients-industry-group.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.client-logo-item {
  background: var(--white);
  border-radius: 12px;
  padding: 24px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 1px solid var(--border);
  min-height: 100px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.clients-industry-group.active .client-logo-item {
  animation: fadeInUp 0.6s ease forwards;
}

.clients-industry-group.active .client-logo-item:nth-child(1) { animation-delay: 0.1s; }
.clients-industry-group.active .client-logo-item:nth-child(2) { animation-delay: 0.2s; }
.clients-industry-group.active .client-logo-item:nth-child(3) { animation-delay: 0.3s; }
.clients-industry-group.active .client-logo-item:nth-child(4) { animation-delay: 0.4s; }
.clients-industry-group.active .client-logo-item:nth-child(5) { animation-delay: 0.5s; }
.clients-industry-group.active .client-logo-item:nth-child(6) { animation-delay: 0.6s; }
.clients-industry-group.active .client-logo-item:nth-child(7) { animation-delay: 0.7s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.client-logo-item:hover {
  box-shadow: 0 8px 24px rgba(128, 179, 255, 0.15);
  transform: translateY(-4px);
  border-color: #80B3FF;
}

.client-logo-item img {
  max-height: 60px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  filter: grayscale(30%);
  transition: all 0.3s ease;
}

.client-logo-item:hover img { 
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* Right Side - Text Content */
.clients-text-area {
  padding-right: 40px;
}

.clients-quote {
  position: relative;
  margin-bottom: 30px;
}

.quote-mark {
  font-size: 80px;
  font-weight: 700;
  color: #80B3FF;
  line-height: 1;
  display: block;
  margin-bottom: -10px;
  font-family: Georgia, serif;
}

.clients-quote p {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.6;
  color: var(--dark);
  font-family: 'Poppins', sans-serif;
  margin: 0;
}

.clients-subtitle {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
}

.clients-industry-name {
  position: relative;
  min-height: 60px;
  margin-top: 30px;
}

.industry-text {
  font-size: 1.3rem;
  font-weight: 600;
  color: #80B3FF;
  font-family: 'Poppins', sans-serif;
  display: block;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.6s ease, visibility 0.6s ease, transform 0.6s ease;
  transform: translateX(-20px);
}

.industry-text.active {
  opacity: 1;
  visibility: visible;
  position: relative;
  transform: translateX(0);
}

/* Responsive Clients Section */
@media (max-width: 992px) {
  .clients-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .clients-text-area {
    padding-right: 0;
    order: -1;
  }
  
  .clients-quote p {
    font-size: 1.3rem;
  }
  
  .industry-text {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .clients-section {
    padding: 60px 0;
  }
  
  .clients-industry-group {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .clients-logos-area {
    min-height: 300px;
  }
  
  .client-logo-item {
    padding: 20px 12px;
    min-height: 80px;
  }
  
  .client-logo-item img {
    max-height: 48px;
  }
  
  .quote-mark {
    font-size: 60px;
  }
  
  .clients-quote p {
    font-size: 1.1rem;
  }
  
  .clients-subtitle {
    font-size: 0.9rem;
  }
  
  .industry-text {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .clients-section {
    padding: 50px 0;
  }
  
  .clients-industry-group {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .clients-logos-area {
    min-height: 250px;
  }
  
  .client-logo-item {
    padding: 16px 10px;
    min-height: 70px;
  }
  
  .client-logo-item img {
    max-height: 42px;
  }
  
  .quote-mark {
    font-size: 50px;
  }
  
  .clients-quote p {
    font-size: 1rem;
  }
  
  .industry-text {
    font-size: 0.95rem;
  }
}

/* ---- VENDORS ---- */
.vendors-section { background: var(--white); }
.vendors-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
  align-items: center;
  margin-top: 40px;
}
.vendor-logo {
  /**background: var(--light-bg);
  border-radius: 8px;
  padding: 14px 10px;**/
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  /*border: 1px solid var(--border);*/
  height: 70px;
}
.vendor-logo:hover {
  box-shadow: var(--shadow);
  transform: scale(1.05);
  background: var(--white);
}
.vendor-logo img {
  height: 40px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(60%);
  transition: var(--transition);
}
.vendor-logo:hover img { filter: grayscale(0%); }

/* Redesigned Vendors Section */
.vendors-redesign {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
}

.vendors-logos-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.vendor-row {
  display: flex;
  gap: 15px;
  align-items: center;
}

.vendor-row-3 {
  justify-content: flex-start;
}

.vendor-row-2 {
  justify-content: flex-start;
  padding-left: 90px;
}

.vendor-logo-item {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 25px 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 90px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.vendor-logo-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.vendor-logo-item img {
  max-width: 100%;
  max-height: 50px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.vendor-rotating-logo {
  transition: all 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
  transform-origin: center center;
}

.vendors-content {
  padding-left: 20px;
}

.vendors-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #f89c1c;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.vendors-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.3;
  margin-bottom: 20px;
}

.vendors-description {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 35px;
}

.vendors-cta-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.btn-vendor-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #80B3FF;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #80B3FF;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  min-width: 180px;
}

.btn-vendor-outline:hover {
  background: #80B3FF;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(128, 179, 255, 0.3);
}

.btn-vendor-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #80B3FF;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #80B3FF;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  min-width: 220px;
}

.btn-vendor-primary:hover {
  background: #6a9de6;
  border-color: #6a9de6;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(128, 179, 255, 0.4);
}

.btn-vendors {
  display: inline-block;
  background: #f89c1c;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #f89c1c;
}

.btn-vendors:hover {
  background: #e08a0f;
  border-color: #e08a0f;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(248, 156, 28, 0.3);
}

@media (max-width: 1024px) {
  .vendors-redesign {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .vendors-content {
    padding-left: 0;
  }
  
  .vendor-row-2 {
    padding-left: 45px;
  }
  
  .vendors-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .btn-vendor-outline,
  .btn-vendor-primary {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .vendor-logo-item {
    width: 120px;
    height: 80px;
    padding: 15px 20px;
  }
  
  .vendor-row {
    gap: 10px;
  }
  
  .vendors-logos-grid {
    gap: 10px;
  }
  
  .vendor-row-2 {
    padding-left: 30px;
  }
  
  .vendors-title {
    font-size: 1.8rem;
  }
  
  .vendors-cta-buttons {
    flex-direction: column;
    gap: 12px;
  }
}

/* ---- FOOTER ---- */
.footer {
  /*background: #1a2332;*/
  background: #07101f;
  color: rgba(255,255,255,0.7);
  padding-top: 0;
}

/* Footer Top Section - Logo and Contact */
.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
  gap: 30px;
}

.footer-logo-section {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 0;
  line-height: 1;
}

.footer-logo img {
  display: block;
  margin: 0;
  padding: 0;
}

.footer-office-location {
  margin-top: 10px;
  line-height: 1.6;
}

.footer-company-description {
  margin-top: 15px;
  margin-bottom: 20px;
  max-width: 450px;
}

.footer-company-description p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-family: 'Open Sans', sans-serif;
  line-height: 1.7;
  margin: 0;
}

.footer-office-location p {
  color: #fff;
  font-size:12px;
  margin: 0;
  padding: 1px 0;
}

.footer-office-location .office-title {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 2px;
}

.footer-contact-info {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.footer-contact-item i {
  font-size: 1.8rem;
  color: rgba(255,255,255,0.6);
  margin-top: 2px;
}

.footer-contact-item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-contact-item strong {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
}

.footer-contact-item span {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}

.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
}

/* Footer Main Content */
.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  padding: 60px 0;
  align-items: start;
}

/* Newsletter Section */
.footer-newsletter {
  max-width: 520px;
}

.footer-newsletter h3 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 12px;
  font-family: 'Poppins', sans-serif;
}

.footer-newsletter > p {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  margin-bottom: 25px;
  line-height: 1.6;
}

.newsletter-form-inline {
  display: flex;
  gap: 0;
  margin-bottom: 25px;
}

.newsletter-form-inline input {
  flex: 1;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,0.15);
  border-right: none;
  border-radius: 6px 0 0 6px;
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}

.newsletter-form-inline input::placeholder { 
  color: rgba(255,255,255,0.4); 
}

.newsletter-form-inline input:focus { 
  border-color: #0066ff;
  background: rgba(255,255,255,0.08);
}

.newsletter-form-inline button {
  padding: 14px 28px;
  border-radius: 0 6px 6px 0;
  background: #80B3FF;
  color: #fff;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form-inline button:hover {
  background: #6a9de6;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(128, 179, 255, 0.3);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-social span {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

.footer-social .social-links {
  display: flex;
  gap: 10px;
  margin-top: 0;
}

.footer-social .social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.footer-social .social-links a:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
  transform: translateY(-2px);
}

/* Footer Links Grid */
.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: 30px;
}

.footer-col h5 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
  text-transform: none;
  letter-spacing: 0;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li { 
  margin-bottom: 2px; 
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  display: inline-block;
}

.footer-col ul li a:hover { 
  color: #fff;
  padding-left: 4px; 
}

/* Footer Bottom */
.footer-bottom {
  padding: 25px 0;
  background: rgba(0,0,0,0.2);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom > .container > span { 
  font-size: 0.85rem; 
  color: rgba(255,255,255,0.5); 
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-bottom-link {
  font-size: 0.85rem;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.footer-bottom-link i {
  font-size: 1.1rem;
  color: #fff;
}

.footer-bottom-link:hover {
  color: #80B3FF;
}

.footer-bottom-link:hover i {
  color: #80B3FF;
}

/* ---- ABOUT PAGE ---- */
.page-hero {
  background: linear-gradient(rgba(10, 22, 40, 0.85), rgba(17, 34, 68, 0.85)), url('../images/homepage-magic.jpg') center/cover no-repeat;
  padding: 80px 0;
  color: var(--white);
  text-align: center;
} 
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto; }

/* About Company Section */
.about-company {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: visible;
  background: var(--navy);
  display: flex;
  align-items: center;
}

.about-company-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0F172A 0%, #1E3A8A 50%, #0F62FE 100%);
  overflow: hidden;
}

/* EMEA Map Background Image */
.about-company-bg-map {
  position: absolute;
  top: 50%;
  right: 5%;
  width: 45%;
  height: auto;
  transform: translateY(-50%);
  opacity: 0.35;
  z-index: 1;
  pointer-events: none;
  background: transparent;
}

.about-company-bg-map img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(1.3) contrast(1.2);
  background: transparent;
}

.about-company-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(96, 165, 250, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(15, 98, 254, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(30, 58, 138, 0.3) 0%, transparent 70%);
  animation: pulseGlow 8s ease-in-out infinite;
  z-index: 2;
}

.about-company-bg::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -10%;
  width: 120%;
  height: 120%;
  background-image: 
    radial-gradient(circle, transparent 5%, transparent 5.5%, rgba(96, 165, 250, 0.18) 6%, transparent 6.5%),
    radial-gradient(circle, transparent 12%, transparent 12.5%, rgba(96, 165, 250, 0.16) 13%, transparent 13.5%),
    radial-gradient(circle, transparent 18%, transparent 19%, rgba(96, 165, 250, 0.15) 19.5%, transparent 20%),
    radial-gradient(circle, transparent 28%, transparent 29%, rgba(96, 165, 250, 0.12) 29.5%, transparent 30%),
    radial-gradient(circle, transparent 38%, transparent 39%, rgba(96, 165, 250, 0.1) 39.5%, transparent 40%),
    radial-gradient(circle, transparent 48%, transparent 49%, rgba(96, 165, 250, 0.08) 49.5%, transparent 50%),
    radial-gradient(circle, transparent 58%, transparent 59%, rgba(96, 165, 250, 0.06) 59.5%, transparent 60%),
    radial-gradient(circle, transparent 68%, transparent 69%, rgba(96, 165, 250, 0.05) 69.5%, transparent 70%),
    radial-gradient(circle, transparent 78%, transparent 79%, rgba(96, 165, 250, 0.04) 79.5%, transparent 80%);
  background-size: 200% 200%;
  background-position: center center;
  animation: circlesPulse 15s ease-in-out infinite;
  opacity: 0.8;
  z-index: 3;
}

@keyframes circlesPulse {
  0%, 100% {
    transform: translate(0, -50%) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: translate(0, -50%) scale(1.1);
    opacity: 0.6;
  }
}

@keyframes pulseGlow {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.about-company-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}

.about-company-content {
  padding-right: 40px;
  max-width: 700px;
}

.about-company-label {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #60A5FA;
  margin-bottom: 20px;
}

.about-company-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 28px;
}

.about-company-description {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 40px;
  text-align: left;
}

.about-company-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  min-height: 450px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-company-image img {
  display: none;
}

/* Responsive */
@media (max-width: 992px) {
  .about-company {
    height: auto;
    min-height: 100vh;
    padding: 140px 0 80px 0;
  }
  
  .about-company-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .about-company-content {
    padding-right: 0;
    text-align: center;
    max-width: 100%;
  }
  
  .about-company-label {
    display: block;
  }
  
  .about-company-image {
    min-height: 350px;
  }
}

@media (max-width: 768px) {
  .about-company {
    min-height: auto;
    padding: 120px 0 60px 0;
  }
  
  .about-company-title {
    font-size: 2rem;
  }
  
  .about-company-description {
    font-size: 1rem;
  }
  
  .about-company-image {
    min-height: 300px;
  }
}

/* Tabbed Info Section */
.about-company-tabbed-info {
  background: #f4f7f6;
  padding: 30px 0;
  margin-top: 0;
}

.tabbed-info-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  border-bottom: 2px solid #d1d5db;
  margin-bottom: 50px;
  width: 100%;
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
  position: sticky;
  top: 80px;
  background: #f4f7f6;
  z-index: 100;
  padding: 20px 40px 0 40px;
  transition: all 0.3s ease;
}

.tabbed-info-tabs.scrolled {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tab-btn {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #6b7280;
  background: transparent;
  border: none;
  padding: 16px 40px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  text-transform: none;
  letter-spacing: 0.3px;
}

.tab-btn:hover {
  color: #80B3FF;
}

.tab-btn.active {
  color: #80B3FF;
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: #80B3FF;
  border-radius: 3px 3px 0 0;
}

.tabbed-info-content {
  min-height: 400px;
  overflow: visible;
}

.tab-content {
  display: none;
  animation: fadeInTab 0.4s ease;
  overflow: visible;
}

.tab-content.active {
  display: block;
  overflow: visible;
}

.tab-content-center {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.tab-content-center h3 {
  text-align: center;
}

.tab-content-center p {
  text-align: center;
}

/* What We Do Stats Section */
.what-we-do-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-top: 60px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.stat-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.stat-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.stat-item:hover .stat-icon {
  transform: scale(1.1);
}

.stat-icon svg {
  width: 100%;
  height: 100%;
}

.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1;
  margin-top: -5px;
}

.stat-description {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
  max-width: 200px;
}

/* Responsive Stats */
@media (max-width: 768px) {
  .what-we-do-stats {
    grid-template-columns: 1fr;
    gap: 50px;
    margin-top: 40px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .stat-description {
    font-size: 0.9rem;
  }
}

/* Vendors Redesign Reversed Layout (for How We Do It tab) */
.vendors-redesign-reversed {
  grid-template-columns: 1fr 1fr;
  padding: 20px 0 80px 0;
  margin-top: -30px;
}

.vendors-redesign-reversed .vendors-content {
  order: 1;
  padding-left: 0;
  padding-right: 20px;
}

.vendors-redesign-reversed .vendors-logos-grid {
  order: 2;
}

.vendors-redesign-reversed .vendor-row-2 {
  padding-left: 0;
  padding-right: 90px;
  justify-content: flex-end;
}

.vendors-redesign-reversed .vendor-row-3 {
  justify-content: flex-end;
}

@media (max-width: 1024px) {
  .vendors-redesign-reversed {
    grid-template-columns: 1fr;
  }
  
  .vendors-redesign-reversed .vendors-content {
    order: 1;
    padding-right: 0;
  }
  
  .vendors-redesign-reversed .vendors-logos-grid {
    order: 2;
  }
  
  .vendors-redesign-reversed .vendor-row-2 {
    padding-right: 45px;
  }
}

/* Our Presence Two-Column Layout */
.our-presence-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 60px;
  align-items: stretch;
  padding: 20px 0;
  width: 100%;
}

.our-presence-left {
  padding: 0;
  width: 100%;
}

.our-presence-right {
  padding: 0;
  width: 100%;
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background-image: url('../images/EMEA_3.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #f8f9fa;
  border-radius: 8px;
}

.geographic-stats {
  text-align: center;
  z-index: 2;
  position: relative;
  padding: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stats-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #1a1a1a;
  margin: 10px 0;
  line-height: 1.3;
}

.stats-number {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 15px 0 25px 0;
  line-height: 1;
}

.our-presence-left h3,
.our-presence-right h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.our-presence-left p,
.our-presence-right p {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
}

/* Responsive Our Presence */
@media (max-width: 768px) {
  .our-presence-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .our-presence-left,
  .our-presence-right {
    padding: 0;
  }
}

.tab-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.tab-content-left {
  padding-right: 20px;
  display: flex;
  flex-direction: column;
}

.tab-content-left h3 {
  order: 1;
}

.tab-content-left p {
  order: 2;
}

.tab-content-left .tab-content-cta {
  order: 3;
}

.tab-content-right {
  padding-left: 20px;
}

.tab-content-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: block;
}

.tab-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.tab-content p {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.85rem;
  line-height: 1.7;
  color: #000;
  margin-bottom: 30px;
}

.tab-content-cta {
  text-align: left;
  margin-top: 10px;
}

@keyframes fadeInTab {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .about-company-tabbed-info {
    padding: 60px 0;
  }
  
  .tab-content-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .tab-content-left,
  .tab-content-right {
    padding: 0;
  }
  
  .tabbed-info-tabs {
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .tab-btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
  
  .tab-content h3 {
    font-size: 1.5rem;
  }
  
  .tab-content p {
    font-size: 1rem;
  }
}

/* Regional Presence Section */
.regionalpresence {
  background: #f4f7fc;
  padding: 60px 0;
}

.regional-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #000;
  text-align: left;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
  line-height: 1.2;
  align-self: flex-start;
}

.regional-flags-container {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 25px;
  flex-wrap: nowrap;
}

.regionalpresence .container {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.regional-flag-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.regional-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.regional-circle:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.regional-circle-inner {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.regional-circle-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.regional-country-name {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--dark);
  text-align: center;
  margin: 0;
}

/* Responsive */
@media (max-width: 1200px) {
  .regionalpresence .container {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .regional-flags-container {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .regional-title {
    font-size: 1rem;
  }
  
  .regional-flags-container {
    gap: 20px;
  }
  
  .regional-circle {
    width: 60px;
    height: 60px;
  }
  
  .regional-circle-inner {
    width: 54px;
    height: 54px;
  }
  
  .regional-country-name {
    font-size: 0.7rem;
  }
}

.stats-bar {
  background: #fff;
  padding: 32px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  text-align: center;
}
.stat-item { 
  color: var(--black);
  position: relative;
  padding: 16px;
  min-height: 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.stat-item .number {
  font-family: 'Poppins', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  display: block;
  color: #80B3FF;
  z-index: 1;
}
.stat-item .label {
  font-size: 0.96rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: none;
  color: #80B3FF;
  display: block;
  z-index: 2;
}
  line-height: 1.4;
}

.mission-section { 
  padding: 80px 0; 
  background: url('../images/africabg.PNG') center/cover no-repeat, var(--white);
  background-attachment: fixed;
  position: relative;
}

.mission-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.95);
  z-index: 1;
}

.mission-section .container {
  position: relative;
  z-index: 2;
}
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.mission-block h3 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}
.mission-block p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 16px; }

/* ---- MISSION SLIDER SECTION ---- */
.mission-slider-section {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
}

.mission-slider-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  min-height: 100vh;
}

.mission-slider-content {
  background: #f4f7f6;
  color: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 60px;
  position: relative;
}

.mission-slides {
  width: 100%;
  max-width: 600px;
  position: relative;
  min-height: 400px;
}

.mission-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.mission-slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.mission-slide-inner {
  text-align: left;
}

.mission-slide h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 30px;
  line-height: 1.2;
}

.mission-slide p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #000;
  margin-bottom: 20px;
  opacity: 0.95;
}

.values-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.values-list li {
  font-size: 1rem;
  line-height: 0.8;
  color: #000;
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.values-list li i {
  color: #80B3FF;
  font-size: 1.8rem;
  flex-shrink: 0;
  margin-top: 3px;
}

.values-list li div {
  flex: 1;
}

.values-list li strong {
  font-size: 1.2rem;
  font-weight: 700;
  color: #000;
  display: block;
  margin-bottom: 5px;
}

.mission-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
}

.mission-prev,
.mission-next {
  background: transparent;
  border: 2px solid #000;
  color: #000;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.mission-prev:hover,
.mission-next:hover {
  background: #000;
  color: #000;
  transform: scale(1.1);
}

.mission-dots {
  display: flex;
  gap: 12px;
}

.mission-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.mission-dot.active {
  background: #000;
  width: 40px;
  border-radius: 6px;
}

.mission-slider-image {
  position: relative;
  overflow: hidden;
}

.mission-slider-image img {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  object-fit: cover;
  display: block;
}

/* Responsive */
@media (max-width: 992px) {
  .mission-slider-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  
  .mission-slider-content {
    min-height: 80vh;
    padding: 60px 40px;
  }
  
  .mission-slider-image img {
    min-height: 60vh;
  }
  
  .mission-slide h2 {
    font-size: 2rem;
  }
  
  .mission-slide p,
  .values-list li {
    font-size: 0.5rem;
  }
}

@media (max-width: 768px) {
  .mission-slider-content {
    padding: 40px 30px;
  }
  
  .mission-slide h2 {
    font-size: 1.8rem;
  }
  
  .mission-prev,
  .mission-next {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

/* ---- CONTACT PAGE ---- */
.contact-section { padding: 80px 0; background: var(--light-bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
}
.contact-info h3 { font-size: 1.3rem; margin-bottom: 20px; color: var(--dark); }
.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.contact-item-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-text h5 { font-size: 0.85rem; margin-bottom: 4px; color: var(--dark); }
.contact-item-text p { font-size: 0.88rem; color: var(--text-light); }

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}
.contact-form h3 { margin-bottom: 24px; font-size: 1.3rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--dark);
  text-transform: none;
  letter-spacing: 0.5px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition);
  font-family: 'Open Sans', sans-serif;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--primary); }
.form-group textarea { resize: vertical; min-height: 130px; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1100px) {
  .solutions-grid { grid-template-columns: repeat(2, 1fr); }
  .services-tabs { grid-template-columns: repeat(2, 1fr); }
  .vendors-grid { grid-template-columns: repeat(5, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 850px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-image { display: none; }
  .homeabout-image { display: none; }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-slider { height: 550px; }
  .contact-grid { grid-template-columns: 1fr; }
  .mission-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero-slider { 
    height: 100vh;
    min-height: 600px;
  }
  .slide-content h1 { font-size: 1.8rem; }
  .slide-buttons { gap: 12px; }
  .main-nav {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--white);
    padding: 80px 24px 40px;
    overflow-y: auto;
    z-index: 999;
  }
  .main-nav.open { display: block; }
  .main-nav > ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    display: flex;
  }
  .main-nav > ul > li { width: 100%; }
  .main-nav > ul > li > a {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
  }
  .search-icon-nav {
    order: -2;
    margin-bottom: 16px;
  }
  .search-icon-nav a {
    justify-content: flex-start;
    padding: 12px 0;
    font-size: 1.5rem;
  }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-top: none;
    border-left: 3px solid var(--primary);
    padding-left: 12px;
    display: none;
  }
  .has-dropdown.open .dropdown { display: block; }
  .hamburger { display: flex; z-index: 1000; }
  
  /* Mega Menu Mobile Styles */
  .mega-menu {
    position: static;
    transform: none;
    width: 100%;
    max-width: 100%;
    box-shadow: none;
    border: none;
    border-radius: 0;
    opacity: 1;
    visibility: visible;
    display: none;
    margin-top: 8px;
  }
  
  .has-megamenu.open .mega-menu {
    display: block;
  }
  
  .mega-menu-inner {
    flex-direction: column;
    min-height: auto;
  }
  
  .mega-menu-left {
    width: 100%;
    padding: 16px 0;
    border-right: none;
    border-bottom: 2px solid #e5e7eb;
  }
  
  .mega-category-item {
    padding: 12px 16px;
    font-size: 0.9rem;
  }
  
  .mega-category-item:first-child {
    font-size: 1.3rem;
    padding-bottom: 16px;
    margin-bottom: 8px;
  }
  
  .mega-menu-right {
    padding: 16px;
    max-height: none;
  }
  
  .mega-menu-list {
    grid-template-columns: 1fr;
  }
  
  .mega-menu-list li a {
    padding: 10px 12px;
    font-size: 0.85rem;
  }
  
  /* Make action card visible and adjust for mobile */
  .nav-action-card {
    order: -1;
    width: 100%;
    margin-bottom: 16px;
    margin-left: 0;
  }
  
  .action-card {
    width: 100%;
    justify-content: center;
  }
  
  .action-card-item {
    flex: 1;
    justify-content: center;
    font-size: 0.7rem;
    padding: 8px 10px;
  }
  
  .solutions-grid { grid-template-columns: 1fr; }
  .services-tabs { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .vendors-grid { grid-template-columns: repeat(3, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .newsletter-inner { flex-direction: column; text-align: center; }
  .newsletter-form { max-width: 100%; width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-slider { 
    height: 100vh;
    min-height: 550px;
  }
  .slide { 
    padding: 30px 20px;
    padding-top: 106px;
    padding-bottom: 90px;
  }
  .slide-content { 
    max-width: 100%;
    padding-bottom: 70px;
  }
  .slide-sub { font-size: 0.75rem; }
  .slider-dots {
    bottom: 25px;
  }
  .vendors-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}


/* Solutions & Services List */
.solutions-services-wrapper {
  width: 100%;
  max-width: 600px;
  position: relative;
}

.solutions-services-list {
  width: 100%;
  max-width: 600px;
  text-align: left;
  max-height: 400px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 10px;
  scroll-behavior: smooth;
}

/* Custom scrollbar styling */
.solutions-services-list::-webkit-scrollbar {
  width: 4px;
}

.solutions-services-list::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 2px;
}

.solutions-services-list::-webkit-scrollbar-thumb {
  background: #80B3FF;
  border-radius: 2px;
}

.solutions-services-list::-webkit-scrollbar-thumb:hover {
  background: #6BA0E5;
}

.scroll-indicator {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding: 12px 0 8px 0;
  font-family: 'Manrope', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: #80B3FF;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.scroll-indicator i {
  font-size: 1rem;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(4px);
  }
}

.scroll-indicator:hover {
  opacity: 1;
}

.list-section {
  margin-bottom: 30px;
}

.list-section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  color: #1B3A6B;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: left;
}

.solution-service-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 16px 0;
  border-bottom: none;
  text-decoration: none;
  color: #000000;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: left;
  position: relative;
}

.solution-service-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 66%;
  height: 1px;
  background-color: #1B3A6B;
}

.solution-service-item:hover {
  color: #80B3FF;
  padding-left: 8px;
}

.solution-service-item .item-text {
  flex: 1;
  text-align: left;
}

.solution-service-item .item-arrow {
  color: #80B3FF;
  font-size: 0.72rem;
  transition: transform 0.3s ease;
  position: absolute;
  left: 66%;
  transform: translateX(-100%);
}

.solution-service-item:hover .item-arrow {
  transform: translateX(-95%);
  color: #80B3FF;
}

.small-padding {
  height: 20px;
  width: 100%;
  display: block;
}


/* =========================================
   ENTRUST SECTION
   ========================================= */

.entrust-section {
  background: linear-gradient(rgba(123, 77, 158, 0.92), rgba(123, 77, 158, 0.92)), url('../images/Entrust_section_bg.PNG');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.entrust-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(128,179,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(30%, -30%);
}

.entrust-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.entrust-left {
  color: var(--white);
}

.entrust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #80B3FF;
  border: 1px solid #80B3FF;
  color: var(--white);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.entrust-badge i {
  font-size: 0.9rem;
}

.entrust-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.2;
  font-family: 'Poppins', sans-serif;
}

.entrust-description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  max-width: 540px;
}

.entrust-industries {
  margin-bottom: 32px;
  max-width: 540px;
  color: #ffffff;
}

.industry-item-home {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.industry-item-home:hover {
  transform: translateY(-4px);
}

.industry-icon-home {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.industry-item-home:hover .industry-icon-home {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.6);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.industry-icon-home i {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.industry-item-home:hover .industry-icon-home i {
  color: #ffffff;
}

.industry-name-home {
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
  display: block;
  white-space: nowrap;
}

.entrust-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-entrust {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-entrust-primary {
  background: #80B3FF;
  color: var(--white);
  border-color: #80B3FF;
}

.btn-entrust-primary:hover {
  background: transparent;
  border-color: #80B3FF;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(128, 179, 255, 0.4);
}

.btn-entrust-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-entrust-secondary:hover {
  background: #80B3FF;
  border-color: #80B3FF;
  transform: translateY(-2px);
}

.entrust-right {
  display: flex;
  justify-content: flex-end;
}

.entrust-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 500px;
}

.entrust-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.entrust-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.entrust-card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: rgba(128, 179, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.entrust-card:hover .entrust-card-icon {
  background: rgba(128, 179, 255, 0.35);
  transform: scale(1.1);
}

.entrust-card-icon i {
  font-size: 1.8rem;
  color: #80B3FF;
}

.entrust-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  font-family: 'Poppins', sans-serif;
}

.entrust-card-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .entrust-content-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .entrust-right {
    justify-content: center;
  }
  
  .entrust-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .entrust-section {
    padding: 60px 0;
  }
  
  .entrust-title {
    font-size: 1.75rem;
  }
  
  .entrust-cards-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
  
  .entrust-buttons {
    flex-direction: column;
  }
  
  .btn-entrust {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .entrust-title {
    font-size: 1.5rem;
  }
  
  .entrust-description {
    font-size: 0.95rem;
  }
}


/* ============================================
   ENTRUST ENQUIRY FLYOUT PANEL
   ============================================ */

.entrust-flyout {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  z-index: 10000;
  pointer-events: none;
}

.entrust-flyout.active {
  pointer-events: auto;
}

.entrust-flyout-overlay {
  display: none;
}

.entrust-flyout-panel {
  position: fixed;
  top: 48px;
  right: 0;
  width: 100%;
  max-width: 598px;
  height: calc(100vh - 48px);
  background: white;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow-y: auto;
  z-index: 10001;
}

.entrust-flyout.active .entrust-flyout-panel {
  transform: translateX(0);
}

.entrust-flyout-header {
  position: sticky;
  top: 0;
  background: linear-gradient(135deg, #7b4d9e 0%, #5a3a7a 100%);
  color: white;
  padding: 16px 40px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.entrust-flyout-header h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.5px;
}

.entrust-flyout-close {
  background: transparent;
  border: none;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
  padding: 8px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.entrust-flyout-close:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #80B3FF;
  transform: rotate(90deg);
}

.entrust-flyout-subtitle-wrapper {
  position: sticky;
  top: 53px;
  background: linear-gradient(135deg, #7b4d9e 0%, #5a3a7a 100%);
  padding: 12px 40px 20px;
  z-index: 9;
}

.entrust-flyout-content {
  padding: 0 40px 40px;
}

.entrust-flyout-content h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin: 24px 0 16px;
  color: var(--dark);
}

.entrust-flyout-subtitle {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  line-height: 1.5;
}

/* Industry Cards Grid */
.industry-label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--dark);
}

.industry-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.industry-card {
  position: relative;
  cursor: pointer;
  border: 2px solid #ddd;
  border-radius: 8px;
  padding: 16px 12px;
  text-align: center;
  transition: all 0.3s ease;
  background: white;
}

.industry-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.industry-card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.industry-card-content i {
  font-size: 2rem;
  color: #80B3FF;
  transition: all 0.3s ease;
}

.industry-card-content span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  transition: all 0.3s ease;
}

.industry-card:hover {
  border-color: #80B3FF;
  background: rgba(128, 179, 255, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(128, 179, 255, 0.2);
}

.industry-card input[type="radio"]:checked + .industry-card-content {
  color: white;
}

.industry-card input[type="radio"]:checked ~ .industry-card-content i {
  color: white;
}

.industry-card input[type="radio"]:checked ~ .industry-card-content span {
  color: white;
}

.industry-card:has(input[type="radio"]:checked) {
  background: linear-gradient(135deg, #80B3FF 0%, #5a94e0 100%);
  border-color: #80B3FF;
  box-shadow: 0 4px 16px rgba(128, 179, 255, 0.4);
}

.industry-card:has(input[type="radio"]:checked) .industry-card-content i,
.industry-card:has(input[type="radio"]:checked) .industry-card-content span {
  color: white;
}

/* Entrust Loader Overlay */
.entrust-loader-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 10002;
}

.entrust-loader-overlay.active {
  display: flex;
}

.entrust-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #80B3FF;
  border-radius: 50%;
  animation: entrust-spin 1s linear infinite;
}

@keyframes entrust-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.entrust-loader-text {
  margin-top: 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: #7b4d9e;
  font-weight: 600;
}

/* Responsive Entrust Flyout */
@media (max-width: 768px) {
  .entrust-flyout-panel {
    max-width: 100%;
    height: calc(100vh - 48px - 80px);
  }
  
  .entrust-flyout-header {
    padding: 12px 24px 0;
  }
  
  .entrust-flyout-header h3 {
    font-size: 1rem;
  }
  
  .entrust-flyout-subtitle-wrapper {
    padding: 12px 24px 16px;
  }
  
  .entrust-flyout-content {
    padding: 0 24px 40px;
  }
  
  .industry-cards-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .entrust-flyout-panel {
    height: calc(100vh - 48px - 60px);
  }
  
  .entrust-flyout-header {
    padding: 12px 20px 0;
  }
  
  .entrust-flyout-header h3 {
    font-size: 0.9rem;
  }
  
  .entrust-flyout-subtitle-wrapper {
    padding: 12px 20px 16px;
  }
  
  .entrust-flyout-content {
    padding: 0 20px 30px;
  }
  
  .entrust-flyout-subtitle {
    font-size: 0.9rem;
  }
  
  .entrust-flyout-close {
    font-size: 1.5rem;
    width: 35px;
    height: 35px;
  }
}


/* ============================================
   MARKETPLACE SECTION
   ============================================ */

.marketplace-section {
  background: #e8f2f7;
  padding: 80px 0;
  margin-top: 0;
}

.marketplace-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.marketplace-left {
  padding-right: 40px;
}

.marketplace-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 20px;
}

.marketplace-description {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.05rem;
  color: #5a6c7d;
  line-height: 1.6;
  margin-bottom: 40px;
}

.marketplace-description2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.05rem;
  color: #000000;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* Marketplace Features */
.marketplace-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.marketplace-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-number {
  width: 40px;
  height: 40px;
  background: #80B3FF;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.feature-text h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #000000;
  margin: 0 0 4px 0;
}

.feature-text p {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  color: #5a6c7d;
  margin: 0;
  line-height: 1.4;
}

/* Marketplace Buttons */
.marketplace-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.marketplace-buttons .btn-marketplace {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.marketplace-buttons .btn-marketplace i {
  font-size: 1.1rem;
}

.btn-marketplace-primary {
  background: #80B3FF;
  color: white;
  border-color: #80B3FF;
}

.btn-marketplace-primary:hover {
  background: transparent;
  border-color: #80B3FF;
  color: #80B3FF;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(128, 179, 255, 0.4);
}

.btn-marketplace-secondary {
  background: transparent;
  border-color: #80B3FF;
  color: #80B3FF;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(128, 179, 255, 0.4);
}

.btn-marketplace-secondary:hover {
  background: #80B3FF;
  color: white;
  border-color: #80B3FF;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(128, 179, 255, 0.4);
}

/* Browser Mockup */
.marketplace-right {
  position: relative;
}

.browser-mockup {
  background: white;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.browser-header {
  background: #f5f5f5;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #ddd;
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot-red {
  background: #ff5f56;
}

.dot-yellow {
  background: #ffbd2e;
}

.dot-green {
  background: #27c93f;
}

.browser-address {
  flex: 1;
  background: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.85rem;
  color: #4caf50;
  display: flex;
  align-items: center;
  gap: 6px;
}

.browser-address i {
  font-size: 0.9rem;
}

.browser-content {
  padding: 30px;
  min-height: 300px;
  background: #fafafa;
}

.browser-placeholder {
  display: flex;
  gap: 20px;
}

.placeholder-box {
  flex: 1;
  height: 200px;
  background: #e0e0e0;
  border-radius: 8px;
}

/* Responsive */
@media (max-width: 992px) {
  .marketplace-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .marketplace-left {
    padding-right: 0;
  }
  
  .marketplace-title {
    font-size: 2rem;
  }
  
  .marketplace-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .marketplace-section {
    padding: 60px 0;
  }
  
  .marketplace-title {
    font-size: 1.75rem;
  }
  
  .marketplace-buttons {
    flex-direction: column;
  }
  
  .btn-marketplace {
    width: 100%;
    justify-content: center;
  }
  
  .browser-content {
    padding: 20px;
    min-height: 200px;
  }
  
  .browser-placeholder {
    flex-direction: column;
    gap: 15px;
  }
  
  .placeholder-box {
    height: 120px;
  }
}
