/* ==========================================================================
   Design System Variables & Theme Setup
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Roboto:wght@300;400;500;700;900&display=swap');

:root {
  --primary: #0096d6;
  --primary-hover: #007bb0;
  --secondary: #11294a;
  --secondary-light: #1b3d6c;
  --text-dark: #333333;
  --text-muted: #666666;
  --bg-light: #f8f9fa;
  --bg-grey: #f1f3f5;
  --bg-white: #ffffff;
  --accent-green: #25d366;
  --accent-orange: #ffc107;
  --accent-red: #dc3545;
  
  --font-poppins: 'Poppins', sans-serif;
  --font-roboto: 'Roboto', sans-serif;
  
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --header-height: 110px;
}

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

body {
  font-family: var(--font-roboto);
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 15px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-poppins);
  color: var(--secondary);
  font-weight: 600;
  line-height: 1.3;
}

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

a:hover {
  color: var(--primary-hover);
}

ul, ol {
  list-style: none;
}

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

/* ==========================================================================
   Layout Containers & Utilities
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col {
  flex: 1 0 0%;
  padding: 0 15px;
}

.col-12 { width: 100%; padding: 0 15px; }
.col-lg-9 { width: 75%; padding: 0 15px; }
.col-lg-7 { width: 58.333%; padding: 0 15px; }
.col-lg-6 { width: 50%; padding: 0 15px; }
.col-lg-5 { width: 41.666%; padding: 0 15px; }
.col-lg-4 { width: 33.333%; padding: 0 15px; }
.col-lg-3 { width: 25%; padding: 0 15px; }
.col-md-6 { width: 50%; padding: 0 15px; }
.col-md-7 { width: 58.333%; padding: 0 15px; }
.col-md-5 { width: 41.666%; padding: 0 15px; }

@media (max-width: 991px) {
  .col-lg-9, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3 {
    width: 100% !important;
  }
}

@media (max-width: 767px) {
  .col-md-6, .col-md-7, .col-md-5 {
    width: 100% !important;
  }
}

.section {
  padding: 80px 0;
  position: relative;
}

.section.py-0 { padding-top: 0; padding-bottom: 0; }
.section.py-3 { padding-top: 30px; padding-bottom: 30px; }
.section.mt-0 { margin-top: 0; }
.bg-grey { background-color: var(--bg-grey); }
.bg-light { background-color: var(--bg-light); }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-muted { color: var(--text-muted); }
.theme-color { color: var(--primary); }
.fw-bold { font-weight: 700; }
.mb-2 { margin-bottom: 10px; }
.mb-3 { margin-bottom: 15px; }
.mb-4 { margin-bottom: 25px; }
.mb-5 { margin-bottom: 40px; }
.mt-2 { margin-top: 10px; }
.mt-3 { margin-top: 15px; }
.mt-4 { margin-top: 25px; }
.mt-5 { margin-top: 40px; }
.gap-2 { gap: 10px; }
.flex-wrap { flex-wrap: wrap; }
.d-flex { display: flex; }
.align-items-center { align-items: center; }
.justify-content-center { justify-content: center; }
.position-relative { position: relative; }
.w-100 { width: 100%; }

/* Decor Header Underline */
.h-decor {
  width: 60px;
  height: 3px;
  background-color: var(--primary);
  margin: 15px auto 25px auto;
  position: relative;
  border-radius: 2px;
}

.h-decor::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background-color: var(--secondary);
  border-radius: 50%;
}

.h-decor.left {
  margin-left: 0;
}

.h-decor.left::after {
  left: 10px;
}

.text-lg-left {
  text-align: left;
}

@media (max-width: 991px) {
  .text-lg-left {
    text-align: center;
  }
  .h-decor.left {
    margin-left: auto;
  }
  .h-decor.left::after {
    left: 50%;
  }
  .section {
    padding: 50px 0;
  }
}

/* ==========================================================================
   Header Component
   ========================================================================== */
.header {
  width: 100%;
  position: relative;
  z-index: 1000;
  background-color: var(--bg-white);
}

.header-topline {
  background-color: var(--secondary);
  color: #cdd5df;
  font-size: 13px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-topline a {
  color: #cdd5df;
}

.header-topline a:hover {
  color: var(--primary);
}

.header-topline-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-info-list {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-info-item i {
  color: var(--primary);
}

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

.header-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  font-size: 12px;
  color: #fff;
  transition: var(--transition);
}

.header-social-link:hover {
  background-color: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

/* Main Navigation Bar */
.header-main {
  background-color: var(--bg-white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.header-main.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: var(--shadow-md);
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.header-main-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.header-logo {
  max-height: 55px;
  display: block;
}

.header-logo img {
  max-height: 55px;
}

.navbar {
  display: flex;
  align-items: center;
}

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

.nav-item {
  position: relative;
}

.nav-link {
  font-family: var(--font-poppins);
  font-weight: 500;
  color: var(--secondary);
  font-size: 15px;
  padding: 10px 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-item.active .nav-link::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--primary);
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 15px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: var(--transition);
  z-index: 100;
  border-top: 3px solid var(--primary);
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 10px 24px;
  color: var(--secondary);
  font-weight: 500;
  font-size: 14px;
  transition: var(--transition);
}

.dropdown-item:hover {
  background-color: var(--bg-grey);
  color: var(--primary);
  padding-left: 30px;
}

/* Burger Mobile Menu Trigger */
.navbar-toggler {
  display: none;
  background: none;
  border: none;
  color: var(--secondary);
  font-size: 24px;
  cursor: pointer;
}

/* Header Button */
.header-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--primary);
  color: #fff !important;
  font-family: var(--font-poppins);
  font-weight: 600;
  font-size: 13px;
  padding: 10px 20px;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(0, 150, 214, 0.3);
  transition: var(--transition);
}

.header-btn:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 150, 214, 0.4);
}

/* Mobile responsive menu overlay */
@media (max-width: 991px) {
  .header-topline {
    display: none;
  }
  .navbar-toggler {
    display: block;
  }
  .nav-list {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 300px;
    height: calc(100vh - 70px);
    background-color: var(--bg-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
    gap: 15px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    overflow-y: auto;
    z-index: 999;
  }
  .nav-list.active {
    left: 0;
  }
  .nav-item {
    width: 100%;
  }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 10px 0 0 15px;
    border-top: none;
    display: none;
  }
  .nav-item.dropdown-active .dropdown-menu {
    display: block;
  }
  .header-main-inner {
    padding: 12px 0;
  }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-poppins);
  font-weight: 600;
  font-size: 14px;
  padding: 12px 28px;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  outline: none;
}

.btn-primary {
  background-color: var(--primary);
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 150, 214, 0.2);
}

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

.btn-outline-primary {
  background-color: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline-primary:hover {
  background-color: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-white {
  background-color: #fff;
  color: var(--secondary);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  background-color: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 13px;
}

/* ==========================================================================
   Hero Slider Section
   ========================================================================== */
/* ==========================================================================
   Hero Slider Section with Video Background & Glassmorphic Card
   ========================================================================== */
.hero-slider-wrap,
.hero-video-wrap {
  width: 100%;
  height: 650px;
  position: relative;
  overflow: hidden;
  background-color: #0c1827;
}

.hero-video-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  opacity: 0.55;
  z-index: 1;
}

.hero-slider-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(17, 41, 74, 0.3) 0%, rgba(11, 25, 46, 0.85) 100%);
  z-index: 2;
}

.hero-slide-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 40px 0;
}

/* Glassmorphism Card style */
.hero-glass-card {
  background: rgba(17, 41, 74, 0.45);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 55px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  text-align: center;
  max-width: 740px;
  width: 100%;
  margin: 0 auto;
  animation: cardFadeIn 1s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes cardFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero-badge {
  display: inline-block;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 3px;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), #3ac3ff);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 11px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 150, 214, 0.25);
  animation: pulseGlow 3s infinite alternate;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 4px 15px rgba(0, 150, 214, 0.25); }
  100% { box-shadow: 0 4px 25px rgba(0, 150, 214, 0.5); }
}

.hero-desc {
  font-size: 16px;
  opacity: 0.95;
  color: #e2e8f0;
  margin-bottom: 35px;
  line-height: 1.6;
}

.slide-text-title {
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.25;
  letter-spacing: -0.5px;
}

.slide-text-title b {
  color: #3ac3ff;
  text-shadow: 0 0 20px rgba(58, 195, 255, 0.35);
}

@media (max-width: 767px) {
  .slide-text-title {
    font-size: 30px;
  }
  .hero-slider-wrap,
  .hero-video-wrap {
    height: auto;
    min-height: 550px;
  }
  .hero-glass-card {
    padding: 30px 20px;
    margin: 10px;
  }
  .hero-desc {
    font-size: 14px;
    margin-bottom: 25px;
  }
  .hero-slider-wrap,
  .hero-video-wrap {
    height: 550px;
  }
}

/* Custom Overrides for Hero Slider Navigation & Track */
.hero-slider-wrap .slider-track {
  height: 100%;
}

.hero-slider-wrap .slider-nav {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 0;
  z-index: 10;
}

.hero-slider-wrap .slider-dot {
  background-color: rgba(255, 255, 255, 0.35);
  width: 12px;
  height: 12px;
}

.hero-slider-wrap .slider-dot:hover {
  background-color: rgba(255, 255, 255, 0.7);
}

.hero-slider-wrap .slider-dot.active {
  background-color: #fff;
  width: 28px;
}

/* Hero Slider Navigation Arrows */
.hero-slider-wrap .prev-arrow,
.hero-slider-wrap .next-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: rgba(17, 41, 74, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
}

.hero-slider-wrap .prev-arrow {
  left: 25px;
}

.hero-slider-wrap .next-arrow {
  right: 25px;
}

.hero-slider-wrap .prev-arrow:hover,
.hero-slider-wrap .next-arrow:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 0 15px rgba(0, 150, 214, 0.4);
}

.hero-slide {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

@media (max-width: 991px) {
  .hero-slider-wrap .prev-arrow,
  .hero-slider-wrap .next-arrow {
    display: none; /* Hide navigation arrows on tablets/mobile to avoid overlapping text */
  }
}


/* ==========================================================================
   About Section & Experience block
   ========================================================================== */
.custom-video-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16/10;
  background-color: #000;
}

.custom-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-control-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 150, 214, 0.4);
}

.video-control-btn:hover {
  background-color: var(--primary-hover);
  transform: translate(-50%, -50%) scale(1.1);
}

.about-experience-num {
  font-size: 80px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

/* ==========================================================================
   Products Tab Section
   ========================================================================== */
.products-category-tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
  border-bottom: 2px solid var(--bg-grey);
  padding-bottom: 15px;
}

.products-category-tabs .nav-link {
  font-family: var(--font-poppins);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  color: var(--secondary);
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition);
}

.products-category-tabs .nav-link:hover,
.products-category-tabs .nav-link.active {
  background-color: var(--primary);
  color: #fff;
}

.products-category-tabs .nav-link::after {
  display: none;
}

.tab-content-wrap {
  width: 100%;
  position: relative;
}

.tab-pane {
  display: none;
  animation: fadeIn 0.5s ease-out;
}

.tab-pane.active {
  display: block;
}

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

/* Product Cards Grid & Layout */
.product-slide {
  width: 100%;
}

.special-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--bg-grey);
  overflow: hidden;
  display: flex;
  margin-bottom: 30px;
  transition: var(--transition);
}

.special-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.special-card-photo {
  width: 40%;
  position: relative;
  background-color: #f7f7f7;
  overflow: hidden;
}

.special-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.special-card:hover .special-card-photo img {
  transform: scale(1.08);
}

.special-card-caption {
  width: 60%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-box-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--secondary);
}

.special-card-caption p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-links {
  display: flex;
  gap: 20px;
}

.product-link {
  font-family: var(--font-poppins);
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--secondary);
}

.product-link:hover {
  color: var(--primary);
}

.product-link i {
  font-size: 10px;
  transition: var(--transition);
}

.product-link:hover i {
  transform: translateX(4px);
}

@media (max-width: 767px) {
  .special-card {
    flex-direction: column;
  }
  .special-card-photo {
    width: 100%;
    aspect-ratio: 16/9;
  }
  .special-card-caption {
    width: 100%;
    padding: 20px;
  }
}

/* ==========================================================================
   Partners & Sponsors Section
   ========================================================================== */
.exclusive-partners-wrapper,
.associate-partners-wrapper {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--bg-grey);
  height: 100%;
}

.exclusive-partners-wrapper h5,
.associate-partners-wrapper h5 {
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.exclusive-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
}

.exclusive-logo img {
  max-height: 80px;
  object-fit: contain;
}

.associate-logo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: center;
}

.associate-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  padding: 10px;
  background-color: var(--bg-light);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.associate-logo-item img {
  max-height: 40px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: var(--transition);
}

.associate-logo-item:hover {
  background-color: #fff;
  box-shadow: var(--shadow-sm);
}

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

@media (max-width: 575px) {
  .associate-logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Vertical separator line */
.vertical-line-left {
  position: absolute;
  left: 50%;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background-color: var(--bg-grey);
}

@media (max-width: 991px) {
  .vertical-line-left {
    display: none;
  }
}

/* ==========================================================================
   Banner CTA Section
   ========================================================================== */
.banner-center {
  padding: 100px 0;
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
  z-index: 1;
}

.banner-center::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(17, 41, 74, 0.75);
  z-index: -1;
}

.banner-center-text1 {
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 15px;
}

.banner-center-text4 {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 30px auto;
  opacity: 0.9;
}

/* ==========================================================================
   Contact Form section & Validation
   ========================================================================== */
.contact-form {
  background-color: var(--bg-white);
  padding: 40px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--bg-grey);
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}

.form-control {
  width: 100%;
  padding: 14px 20px;
  font-family: var(--font-roboto);
  font-size: 14px;
  border: 1px solid #ddd;
  border-radius: var(--radius-sm);
  outline: none;
  transition: var(--transition);
  background-color: var(--bg-light);
}

.form-control:focus {
  border-color: var(--primary);
  background-color: #fff;
  box-shadow: 0 0 8px rgba(0, 150, 214, 0.15);
}

textarea.form-control {
  resize: vertical;
}

/* Captcha Field styling */
.captcha-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

.captcha-question {
  font-family: var(--font-poppins);
  font-weight: 700;
  background-color: var(--secondary);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  min-width: 110px;
  text-align: center;
  letter-spacing: 1px;
}

.captcha-refresh {
  border: 1px solid #ddd;
  background: #fff;
  border-radius: var(--radius-sm);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.captcha-refresh:hover {
  background-color: var(--bg-grey);
  border-color: var(--primary);
  color: var(--primary);
}

.successform, .errorform {
  padding: 15px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}

.successform {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.errorform {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* ==========================================================================
   Footer Component
   ========================================================================== */
.footer {
  background-color: var(--secondary);
  color: #aebfd4;
  padding-top: 80px;
  font-size: 14px;
}

.footer h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 25px;
  font-weight: 600;
}

.footer-logo {
  max-width: 200px;
  margin-bottom: 20px;
}

.footer-logo img {
  max-width: 200px;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #aebfd4;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(4px);
}

.icn-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.icn-list li i {
  position: absolute;
  left: 0;
  top: 5px;
  color: var(--primary);
  font-size: 16px;
}

.footer-bottom {
  margin-top: 60px;
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.policy-links-inline a {
  color: #aebfd4;
  margin-left: 15px;
}

.policy-links-inline a:hover {
  color: #fff;
}

.mx-1 { margin-left: 5px; margin-right: 5px; }

/* Certification Logos Footer */
.certification-logos-footer {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.certification-logos-footer img {
  height: 38px;
  object-fit: contain;
  background-color: rgba(255,255,255,0.05);
  padding: 4px;
  border-radius: var(--radius-sm);
}

/* ==========================================================================
   Side Floating Panels (Inquiry Widget)
   ========================================================================== */
.inquiry-panel {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.inquiry-panel-item {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.inquiry-panel-btn {
  width: 50px;
  height: 50px;
  border-radius: 30px 0 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.btn-whatsapp { background-color: var(--accent-green); }
.btn-inquiry { background-color: var(--primary); }
.btn-quote { background-color: var(--accent-orange); }

.inquiry-panel-btn:hover {
  width: 55px;
}

.inquiry-panel-inside {
  position: absolute;
  right: 55px;
  top: 0;
  width: 280px;
  background-color: var(--bg-white);
  border-radius: var(--radius-md) 0 var(--radius-md) var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--bg-grey);
  padding: 25px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(20px);
  transition: var(--transition);
  z-index: 1000;
}

.inquiry-panel-item.open .inquiry-panel-inside {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

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

.inquiry-content h4 {
  font-size: 16px;
  margin: 15px 0 8px 0;
}

.inquiry-content p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 12px;
  cursor: pointer;
  font-size: 14px;
  color: var(--text-muted);
  transition: var(--transition);
}

.close-btn:hover {
  color: var(--accent-red);
}

.backToTop {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 45px;
  height: 45px;
  background-color: var(--secondary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 998;
}

.backToTop.visible {
  opacity: 1;
  visibility: visible;
}

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

/* ==========================================================================
   Modals Styling
   ========================================================================== */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(17, 41, 74, 0.7);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal.open {
  opacity: 1;
  visibility: visible;
}

.modal-dialog {
  width: 100%;
  max-width: 500px;
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: scale(0.9);
  transition: var(--transition);
  margin: 20px;
}

.modal.open .modal-dialog {
  transform: scale(1);
}

.modal-content {
  padding: 40px;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-content h3 {
  font-size: 22px;
  margin-bottom: 25px;
  text-align: center;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 20px;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.modal-close:hover {
  color: var(--accent-red);
}

.selectWrapper select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

.whatsapp-toggle {
  margin-bottom: 20px;
}

.switch-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  cursor: pointer;
  user-select: none;
}

.switch-label input {
  width: 16px;
  height: 16px;
}

.error-text {
  color: var(--accent-red);
  font-size: 12px;
  margin-top: 4px;
  display: none;
}

/* ==========================================================================
   Company Profile Page Timeline
   ========================================================================== */
.breadcrumbs-wrap {
  background-color: var(--bg-grey);
  padding: 15px 0;
  font-size: 13px;
}

.breadcrumbs a {
  color: var(--text-muted);
}

.breadcrumbs span {
  color: var(--secondary);
  font-weight: 500;
}

.breadcrumbs span::before {
  content: '/';
  margin: 0 10px;
  color: #ccc;
}

.marker-list-md li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  font-size: 15px;
}

.marker-list-md li i {
  position: absolute;
  left: 0;
  top: 4px;
}

/* Vertical Timeline */
.timeline-wrapper {
  position: relative;
  max-width: 900px;
  margin: 50px auto 0 auto;
  padding: 20px 0;
}

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

.timeline-card {
  width: 50%;
  padding-right: 40px;
  position: relative;
  margin-bottom: 40px;
}

.timeline-card.right {
  margin-left: auto;
  padding-right: 0;
  padding-left: 40px;
}

.timeline-dot {
  width: 16px;
  height: 16px;
  background-color: var(--primary);
  border: 4px solid var(--bg-white);
  border-radius: 50%;
  position: absolute;
  right: -8px;
  top: 15px;
  z-index: 2;
  box-shadow: 0 0 0 4px rgba(0, 150, 214, 0.2);
}

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

.timeline-card-content {
  background-color: var(--bg-white);
  padding: 25px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--bg-grey);
}

.timeline-year {
  font-family: var(--font-poppins);
  font-weight: 800;
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 8px;
  line-height: 1;
}

.timeline-card-content h3 {
  font-size: 16px;
  margin-bottom: 10px;
}

.timeline-card-content p {
  font-size: 13px;
  color: var(--text-muted);
}

.timeline-badge {
  position: absolute;
  right: -60px;
  top: 10px;
  font-family: var(--font-poppins);
  font-weight: 800;
  font-size: 16px;
  color: var(--text-muted);
  opacity: 0.3;
}

.timeline-card.right .timeline-badge {
  right: auto;
  left: -60px;
}

@media (max-width: 767px) {
  .timeline-wrapper::before {
    left: 20px;
  }
  .timeline-card {
    width: 100%;
    padding-left: 45px;
    padding-right: 0;
    margin-bottom: 30px;
  }
  .timeline-dot {
    left: 12px;
    right: auto;
  }
  .timeline-card.right {
    padding-left: 45px;
  }
  .timeline-card.right .timeline-dot {
    left: 12px;
  }
  .timeline-badge {
    display: none;
  }
}

/* Leaders Section Slider/Carousel layout in flex */
.leader-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--bg-grey);
  padding: 45px;
  margin-bottom: 30px;
}

.leader-image-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.leader-image-wrapper img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
}

.leader-quote {
  border-left: 3px solid var(--primary);
  padding-left: 15px;
  color: var(--text-muted);
}

.badge {
  display: inline-block;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  border-radius: 4px;
  text-transform: uppercase;
}

.badge-primary {
  background-color: rgba(0,150,214,0.1);
  color: var(--primary);
}

.badge-light {
  background-color: var(--bg-grey);
  color: var(--secondary);
}

/* Pure JS Slider styles */
.slider-container {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.slider-slide {
  flex: 0 0 100%;
  width: 100%;
}

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

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ddd;
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background-color: var(--primary);
  width: 24px;
  border-radius: 5px;
}

/* ==========================================================================
   Products Catalog Listing Layout
   ========================================================================== */
.column-filters {
  background-color: var(--bg-white);
  padding-right: 30px;
}

.side-block {
  margin-bottom: 40px;
  border-bottom: 1px solid var(--bg-grey);
  padding-bottom: 30px;
}

.side-block:last-child {
  border-bottom: none;
}

.side-block-title {
  font-size: 18px;
  margin-bottom: 20px;
}

.category-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.category-item {
  width: 100%;
}

.category-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  background-color: var(--bg-light);
  border-radius: var(--radius-sm);
  color: var(--secondary);
  font-weight: 500;
  transition: var(--transition);
}

.category-link:hover,
.category-link.active {
  background-color: var(--primary);
  color: #fff;
}

.subcategory-list {
  padding-left: 15px;
  margin-top: 5px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.subcategory-item {
  display: block;
  padding: 8px 12px;
  font-size: 13px;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.subcategory-item:hover,
.subcategory-item.active {
  background-color: var(--bg-grey);
  color: var(--primary);
  padding-left: 18px;
}

.filters-row {
  margin-bottom: 30px;
}

.search-box {
  width: 100%;
}

.search-form .form-wrap {
  display: flex;
  position: relative;
}

.search-input {
  border-radius: 30px;
  padding-right: 60px;
}

.button-search {
  position: absolute;
  right: 5px;
  top: 5px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.button-search:hover {
  background-color: var(--primary-hover);
}

.button-reset {
  position: absolute;
  right: 50px;
  top: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Products Grid listing */
.prd-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

@media (max-width: 991px) {
  .prd-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.prd {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--bg-grey);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.prd:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.prd-img {
  aspect-ratio: 1/1;
  background-color: #f7f7f7;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prd-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.prd:hover .prd-img img {
  transform: scale(1.06);
}

.prd-info {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.prd-info h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.4;
  height: 42px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.prd-info h3 a {
  color: var(--secondary);
}

.prd-info h3 a:hover {
  color: var(--primary);
}

.prd-info .btn {
  width: 100%;
  padding: 8px 15px;
  font-size: 12px;
  border-radius: var(--radius-sm);
  background-color: var(--bg-light);
  color: var(--secondary);
}

.prd:hover .prd-info .btn {
  background-color: var(--primary);
  color: #fff;
}

.featured-product-item {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
  align-items: center;
}

.featured-product-img {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background-color: var(--bg-light);
}

.featured-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-product-info h4 {
  font-size: 13px;
  line-height: 1.3;
}

.featured-product-info a {
  color: var(--secondary);
}

.featured-product-info a:hover {
  color: var(--primary);
}

/* ==========================================================================
   Services Grid & Setup Layout
   ========================================================================== */
.service-setup-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--bg-grey);
  padding: 40px;
  margin-bottom: 30px;
  height: 100%;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-setup-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.service-setup-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.service-setup-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(0, 150, 214, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 24px;
}

.service-setup-card:hover .service-setup-icon {
  background-color: var(--primary);
  color: #fff;
  transform: rotate(360deg);
  transition: all 0.6s ease;
}

.service-setup-title {
  font-size: 20px;
  font-weight: 700;
}

.service-setup-body p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 14px;
}

.service-setup-list {
  margin-bottom: 25px;
}

.service-setup-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 13.5px;
  color: var(--text-dark);
}

.service-setup-list li::before {
  content: '•';
  color: var(--primary);
  font-size: 18px;
  position: absolute;
  left: 0;
  top: -2px;
}

/* ==========================================================================
   Map placeholder styling
   ========================================================================== */
.map-container {
  width: 100%;
  height: 350px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--bg-grey);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ==========================================================================
   Multi-Tenant Branding & Theme Layout Customization
   ========================================================================== */

/* --- Modern Theme overrides --- */
.theme-modern {
  background-color: #f7fafc;
}
.theme-modern .header-main {
  margin: 15px auto;
  max-width: 1200px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}
.theme-modern .header-main.sticky {
  margin: 0;
  max-width: 100%;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.95);
}
.theme-modern .btn {
  border-radius: 50px;
}
.theme-modern .special-card,
.theme-modern .card,
.theme-modern .service-card-item,
.theme-modern .service-setup-card {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.theme-modern .special-card:hover,
.theme-modern .card:hover,
.theme-modern .service-card-item:hover,
.theme-modern .service-setup-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.theme-modern .h-decor {
  border-radius: 30px;
  height: 4px;
}

/* --- CorporateBlue Theme overrides --- */
.theme-corporateblue .header-topline {
  background-color: var(--secondary);
}
.theme-corporateblue .header-main {
  border-bottom: 3px solid var(--primary);
}
.theme-corporateblue .btn {
  border-radius: 4px;
}
.theme-corporateblue .special-card,
.theme-corporateblue .card,
.theme-corporateblue .service-card-item,
.theme-corporateblue .service-setup-card {
  border-radius: 4px;
  border-top: 3px solid var(--primary);
}

/* --- DarkGlass Theme (Sleek Tech Dark Mode) --- */
.theme-darkglass {
  background-color: #0b0f19;
  color: #cbd5e1;
}
.theme-darkglass h1, 
.theme-darkglass h2, 
.theme-darkglass h3, 
.theme-darkglass h4, 
.theme-darkglass h5, 
.theme-darkglass h6 {
  color: #ffffff;
}
.theme-darkglass .bg-grey,
.theme-darkglass .bg-light {
  background-color: #0f172a !important;
}
.theme-darkglass .section {
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
.theme-darkglass .header-topline {
  background-color: #030712;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.theme-darkglass .header-main {
  background-color: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
.theme-darkglass .nav-link {
  color: #94a3b8;
}
.theme-darkglass .nav-link:hover {
  color: var(--primary);
}
.theme-darkglass .dropdown-menu {
  background-color: #1e293b;
  border-color: var(--primary);
}
.theme-darkglass .dropdown-item {
  color: #cbd5e1;
}
.theme-darkglass .dropdown-item:hover {
  background-color: #334155;
  color: #ffffff;
}
.theme-darkglass .special-card,
.theme-darkglass .card,
.theme-darkglass .service-card-item,
.theme-darkglass .service-setup-card {
  background-color: rgba(30, 41, 59, 0.45) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3) !important;
  color: #cbd5e1;
}
.theme-darkglass .special-card-photo {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.theme-darkglass .text-muted {
  color: #94a3b8 !important;
}
.theme-darkglass .btn-white {
  background-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: none;
}
.theme-darkglass .btn-white:hover {
  background-color: var(--primary);
  border-color: var(--primary);
}
.theme-darkglass .footer {
  background-color: #030712;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: #94a3b8;
}
.theme-darkglass .footer h3,
.theme-darkglass .footer h5 {
  color: #ffffff;
}
.theme-darkglass .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.theme-darkglass .modal-content {
  background-color: #1e293b;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
}
.theme-darkglass .form-control {
  background-color: #0f172a;
  border-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}
.theme-darkglass .form-control:focus {
  border-color: var(--primary);
  background-color: #0b0f19;
}
.theme-darkglass .inquiry-panel-inside {
  background-color: #1e293b;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
}
.theme-darkglass .special-card-caption p,
.theme-darkglass .leader-card p {
  color: #94a3b8;
}

/* --- Minimal Theme overrides --- */
.theme-minimal .header-topline {
  display: none !important;
}
.theme-minimal .header-main {
  box-shadow: none;
  border-bottom: 1px solid #e2e8f0;
}
.theme-minimal .header-btn {
  border-radius: 4px;
  box-shadow: none;
}
.theme-minimal .btn {
  border-radius: 4px;
  box-shadow: none;
}
.theme-minimal .special-card, 
.theme-minimal .card, 
.theme-minimal .service-card-item,
.theme-minimal .service-setup-card {
  border-radius: 4px;
  box-shadow: none;
  border: 1px solid #e2e8f0;
}
.theme-minimal .h-decor {
  height: 2px;
}
.theme-minimal .h-decor::after {
  display: none;
}

/* --- Mobile Menu Improvements & Styling (Responsive-first) --- */
@media (max-width: 991px) {
  /* Ensure logo container doesn't overflow on small devices */
  .header-main-inner {
    padding: 10px 0;
  }
  
  .header-logo-container {
    max-width: 70%;
  }
  
  .header-logo-container img {
    max-height: 35px !important;
  }
  
  .nav-list {
    width: 280px;
    padding: 20px;
  }

  /* Handle dark mode mobile menu */
  .theme-darkglass .nav-list {
    background-color: #0f172a;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
  }
  .theme-darkglass .nav-link {
    color: #cbd5e1;
  }
  
  /* Inquiry side panel adjustments for mobile */
  .inquiry-panel {
    bottom: 20px;
    right: 15px;
  }
  
  .inquiry-panel-inside {
    width: 260px;
    right: 50px;
  }
}

/* ==========================================================================
   ENHANCED CUSTOM BRANDING & WEB APP AESTHETICS
   ========================================================================== */

/* --- Button Effects (Glossy reflection & Water bubble) --- */
.theme-modern .btn,
.theme-classic .btn,
.btn-glossy {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Diagonal Glossy Shine Sweep */
.theme-modern .btn::after,
.theme-classic .btn::after,
.btn-glossy::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );
  z-index: 2;
  transition: 0.6s ease-in-out;
}

.theme-modern .btn:hover::after,
.theme-classic .btn:hover::after,
.btn-glossy:hover::after {
  left: 100%;
}

/* Rotating Water/Liquid wave bubble on primary buttons */
.theme-modern .btn-primary {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.theme-modern .btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180px;
  height: 180px;
  background-color: rgba(255, 255, 255, 0.12);
  border-radius: 42%;
  transform: translate(-50%, -50%) rotate(0deg);
  transition: all 0.8s cubic-bezier(0.1, 0.8, 0.3, 1);
  z-index: -1;
  opacity: 0;
}

.theme-modern .btn-primary:hover::before {
  border-radius: 35%;
  transform: translate(-50%, -50%) rotate(360deg) scale(1.3);
  opacity: 1;
}

/* --- DarkGlass Neon Glow Liquid Shadows --- */
.theme-darkglass .btn {
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 0 10px rgba(114, 9, 183, 0.4), inset 0 0 5px rgba(255, 255, 255, 0.05);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.theme-darkglass .btn:hover {
  box-shadow: 0 0 15px var(--primary), 0 0 25px var(--secondary), inset 0 0 8px rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* --- Themed Hero Banner Slides --- */

/* Modern theme: left-aligned content box with accent border */
.theme-modern .hero-modern-card {
  background: rgba(255, 255, 255, 0.92);
  padding: 55px;
  border-radius: 24px;
  border-left: 6px solid var(--primary);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  max-width: 680px;
  animation: slideInLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.theme-modern .hero-modern-card .hero-badge {
  background-color: var(--primary);
  color: #fff;
  padding: 5px 14px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 20px;
}

.theme-modern .hero-modern-card .slide-text-title {
  color: var(--secondary) !important;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.25;
}

.theme-modern .hero-modern-card .hero-desc {
  color: var(--text-dark);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* CorporateBlue theme: split-width typography overlay */
.theme-corporateblue .hero-corporate-card {
  background: transparent;
  padding: 40px 0;
  max-width: 700px;
  animation: fadeIn 0.8s ease-out forwards;
}

.theme-corporateblue .hero-corporate-card .hero-badge {
  color: var(--primary);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 15px;
}

.theme-corporateblue .hero-corporate-card .slide-text-title {
  color: #ffffff !important;
  font-size: 46px;
  font-weight: 700;
  line-height: 1.3;
}

.theme-corporateblue .hero-corporate-card .hero-desc {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  margin-bottom: 30px;
  border-left: 4px solid var(--primary);
  padding-left: 20px;
  line-height: 1.6;
}

/* DarkGlass theme: tech glowing translucent centered container */
.theme-darkglass .hero-darkglass-card {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(114, 9, 183, 0.35);
  box-shadow: 0 0 35px rgba(114, 9, 183, 0.3), inset 0 0 15px rgba(255, 255, 255, 0.05);
  padding: 55px;
  border-radius: 20px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  max-width: 800px;
  margin: 0 auto;
  animation: zoomIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.theme-darkglass .hero-darkglass-card .hero-badge {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  padding: 5px 16px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  box-shadow: 0 0 10px rgba(114, 9, 183, 0.6);
  display: inline-block;
  margin-bottom: 20px;
}

.theme-darkglass .hero-darkglass-card .slide-text-title {
  color: #ffffff !important;
  text-shadow: 0 0 15px rgba(114, 9, 183, 0.7);
  font-size: 42px;
  font-weight: 800;
}

.theme-darkglass .hero-darkglass-card .hero-desc {
  color: #94a3b8;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 30px;
}

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

@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

/* --- Homepage Category Grid Cards Layout --- */
.category-grid-wrap {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
}

.category-grid-card {
  background-color: var(--bg-white);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--bg-grey);
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.category-grid-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border-color: var(--primary);
}

.category-grid-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.category-grid-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background-color: var(--bg-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s ease;
}

.category-grid-card:hover .category-grid-icon {
  background-color: var(--primary);
  color: #fff;
  transform: scale(1.05);
}

.category-grid-header h3 {
  font-size: 19px;
  font-weight: 700;
  margin: 0;
  color: var(--secondary);
}

.category-grid-body {
  flex-grow: 1;
}

.subcategory-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 15px;
}

.sub-chip {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  background-color: var(--bg-light);
  color: var(--text-dark);
  border-radius: 20px;
  border: 1px solid var(--bg-grey);
  transition: all 0.2s ease;
  text-decoration: none;
}

.sub-chip:hover {
  background-color: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.mini-product-list {
  list-style: none;
  padding: 0;
  margin: 15px 0 0 0;
  border-top: 1px dashed var(--bg-grey);
  padding-top: 15px;
}

.mini-product-list li {
  margin-bottom: 8px;
  font-size: 13px;
}

.mini-product-list li a {
  color: var(--text-dark);
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.mini-product-list li a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.mini-product-list li a i {
  font-size: 8px;
  color: var(--primary);
}

/* Category Grid Card overrides for DarkGlass theme */
.theme-darkglass .category-grid-card {
  background-color: rgba(30, 41, 59, 0.45) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3) !important;
}

.theme-darkglass .category-grid-header h3 {
  color: #ffffff;
}

.theme-darkglass .sub-chip {
  background-color: rgba(255, 255, 255, 0.05);
  color: #cbd5e1;
  border-color: rgba(255, 255, 255, 0.08);
}

.theme-darkglass .sub-chip:hover {
  background-color: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.theme-darkglass .mini-product-list {
  border-top-color: rgba(255, 255, 255, 0.08);
}

.theme-darkglass .mini-product-list li a {
  color: #cbd5e1;
}

.theme-darkglass .mini-product-list li a:hover {
  color: var(--primary);
}

/* --- Storefront Product Grid Card Enhancements --- */

/* Modern Theme overrides for Product Catalog */
.theme-modern .prd {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  background-color: #ffffff;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.theme-modern .prd:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
}

.theme-modern .prd-img-wrap {
  border-radius: 20px 20px 0 0 !important;
}

.theme-modern .prd-badge {
  border-radius: 20px;
  background-color: rgba(2, 128, 144, 0.1);
  color: var(--primary);
  font-weight: 700;
  font-size: 11px;
}

/* DarkGlass Theme overrides for Product Catalog */
.theme-darkglass .prd {
  background-color: rgba(30, 41, 59, 0.45) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3) !important;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.theme-darkglass .prd:hover {
  border-color: var(--primary) !important;
  box-shadow: 0 0 20px rgba(114, 9, 183, 0.35) !important;
  transform: translateY(-5px);
}

.theme-darkglass .prd-badge {
  background-color: rgba(114, 9, 183, 0.2);
  color: #e2e8f0;
  border: 1px solid rgba(114, 9, 183, 0.4);
  border-radius: 4px;
}

.theme-darkglass .prd h3 {
  color: #ffffff;
}

.theme-darkglass .prd-info p {
  color: #94a3b8;
}

/* Minimal Theme overrides for Product Catalog */
.theme-minimal .prd {
  border-radius: 0;
  box-shadow: none !important;
  border: 1px solid #e2e8f0;
  background-color: #ffffff;
  transition: all 0.2s ease;
}

.theme-minimal .prd:hover {
  border-color: var(--primary);
  transform: none;
}

.theme-minimal .prd-img-wrap {
  border-radius: 0 !important;
}

.theme-minimal .prd-badge {
  background-color: #f1f5f9;
  color: #475569;
  border-radius: 0;
  font-size: 10px;
  letter-spacing: 0.5px;
}

/* --- About Us Timelines & Leaders Overrides --- */

/* Modern Theme About Us Overrides */
.theme-modern .timeline-wrapper::before {
  background-color: rgba(2, 128, 144, 0.15);
}

.theme-modern .timeline-dot {
  background-color: var(--primary);
  border: 4px solid #f7fafc;
  box-shadow: 0 0 0 4px rgba(2, 128, 144, 0.15);
}

.theme-modern .timeline-card-content {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.theme-modern .timeline-card-content:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
  border-color: var(--primary);
}

.theme-modern .leader-card {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.theme-modern .leader-image-wrapper {
  border-radius: 20px;
}

/* DarkGlass Theme About Us Overrides */
.theme-darkglass .timeline-wrapper::before {
  background-color: rgba(255, 255, 255, 0.05);
}

.theme-darkglass .timeline-dot {
  background-color: var(--primary);
  border: 4px solid #0b0f19;
  box-shadow: 0 0 12px var(--primary);
}

.theme-darkglass .timeline-card-content {
  background-color: rgba(30, 41, 59, 0.45) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3) !important;
}

.theme-darkglass .timeline-card-content:hover {
  border-color: var(--primary) !important;
  box-shadow: 0 0 15px rgba(114, 9, 183, 0.3) !important;
}

.theme-darkglass .timeline-year {
  color: #ffffff;
  text-shadow: 0 0 8px var(--primary);
}

.theme-darkglass .leader-card {
  background-color: rgba(30, 41, 59, 0.45) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3) !important;
}

.theme-darkglass .leader-image-wrapper div {
  background-color: rgba(114, 9, 183, 0.25) !important;
  border: 1px solid rgba(114, 9, 183, 0.4);
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
}

/* Minimal Theme About Us Overrides */
.theme-minimal .timeline-wrapper::before {
  background-color: #e2e8f0;
}

.theme-minimal .timeline-dot {
  background-color: var(--primary);
  border: 3px solid #ffffff;
  box-shadow: none;
  border-radius: 0;
  width: 12px;
  height: 12px;
  right: -6px;
  top: 17px;
}

.theme-minimal .timeline-card.right .timeline-dot {
  left: -6px;
}

.theme-minimal .timeline-card-content {
  border-radius: 0;
  border: 1px solid #e2e8f0;
  box-shadow: none;
}

.theme-minimal .timeline-year {
  font-size: 20px;
  letter-spacing: -0.5px;
}

.theme-minimal .leader-card {
  border-radius: 0;
  border: 1px solid #e2e8f0;
  box-shadow: none;
}

.theme-minimal .leader-image-wrapper {
  border-radius: 0;
}

.theme-minimal .leader-image-wrapper div {
  background-color: #f1f5f9 !important;
  color: #475569 !important;
  border-radius: 0;
}

/* CorporateBlue Theme About Us Overrides */
.theme-corporateblue .timeline-card-content {
  border-radius: 4px;
  border-left: 4px solid var(--primary);
}

.theme-corporateblue .leader-card {
  border-radius: 4px;
  border-left: 5px solid var(--primary);
}

/* ==========================================================================
   PARTNERS LOGO MARQUEE SLIDER & THREE.JS 3D CANVAS OVERLAYS
   ========================================================================== */

/* --- Technology Partners Infinite Marquee Ticker --- */
.marquee-container {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 15px 0;
  background: var(--bg-light);
  border-radius: 12px;
  border: 1px solid var(--bg-grey);
  display: flex;
}

/* Fading edge masks for infinite loop depth */
.marquee-container::before,
.marquee-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 18%;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

.marquee-container::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-white) 0%, transparent 100%);
}

.marquee-container::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-white) 0%, transparent 100%);
}

/* Theme overrides for Dark Mode edge masks */
.theme-darkglass .marquee-container {
  background: rgba(30, 41, 59, 0.25) !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
}

.theme-darkglass .marquee-container::before {
  background: linear-gradient(to right, #0b0f19 0%, transparent 100%);
}

.theme-darkglass .marquee-container::after {
  background: linear-gradient(to left, #0b0f19 0%, transparent 100%);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 24s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused; /* Pause scrolling on mouse hover */
}

.marquee-item {
  flex: 0 0 auto;
  padding: 10px 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.partner-name {
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: 19px;
  color: var(--secondary);
  opacity: 0.75;
  transition: all 0.3s ease;
  letter-spacing: 0.8px;
}

.theme-darkglass .partner-name {
  color: #cbd5e1;
}

.marquee-item:hover .partner-name {
  color: var(--primary);
  opacity: 1;
  transform: scale(1.1);
  text-shadow: 0 0 10px rgba(var(--primary), 0.2);
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-33.333%);
  }
}

/* --- Three.js 3D DNA Canvas Overlays --- */
.custom-video-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--bg-grey);
}

.theme-darkglass .custom-video-wrapper {
  border-color: rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
}

#three-dna-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

#three-dna-canvas canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.dna-overlay-content {
  position: relative;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.4), rgba(var(--secondary-rgb), 0.5));
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 45px;
  text-align: center;
}

.theme-darkglass .dna-overlay-content {
  background: rgba(11, 15, 25, 0.55);
}

.theme-modern .dna-overlay-content {
  background: rgba(2, 128, 144, 0.4);
}

.theme-minimal .dna-overlay-content {
  background: rgba(247, 127, 0, 0.45);
}

/* ==========================================================================
   GLASSMORPHISM & GLOSSY PREMIUM THEMES UPGRADE
   ========================================================================== */

/* Enhanced light glassmorphism styles */
.theme-modern {
  background: radial-gradient(circle at 10% 20%, rgba(2, 128, 144, 0.04) 0%, transparent 45%),
              radial-gradient(circle at 90% 80%, rgba(0, 150, 214, 0.04) 0%, transparent 45%);
}

.theme-modern .header-main {
  background: rgba(255, 255, 255, 0.65) !important;
  backdrop-filter: blur(25px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(25px) saturate(180%) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.theme-modern .hero-modern-card,
.theme-modern .special-card,
.theme-modern .category-grid-card,
.theme-modern .leader-card,
.theme-modern .timeline-card-content,
.theme-modern .contact-form,
.theme-modern .modal-content,
.theme-modern .exclusive-partner-card,
.theme-modern .custom-video-wrapper {
  background: rgba(255, 255, 255, 0.65) !important;
  backdrop-filter: blur(30px) saturate(200%) !important;
  -webkit-backdrop-filter: blur(30px) saturate(200%) !important;
  border: 1px solid rgba(255, 255, 255, 0.5) !important;
  box-shadow: 0 10px 35px 0 rgba(31, 38, 135, 0.06) !important;
}

/* Enhanced dark glassmorphism styles */
.theme-darkglass {
  background: #0b0f19 !important;
  color: #f8fafc !important;
}

.theme-darkglass .header-main {
  background: rgba(11, 15, 25, 0.75) !important;
  backdrop-filter: blur(25px) saturate(160%) !important;
  -webkit-backdrop-filter: blur(25px) saturate(160%) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.theme-darkglass h1, .theme-darkglass h2, .theme-darkglass h3, .theme-darkglass h4, .theme-darkglass h5, .theme-darkglass h6, .theme-darkglass .service-box-title {
  color: #ffffff !important;
}

.theme-darkglass .text-muted {
  color: #94a3b8 !important;
}

.theme-darkglass .section {
  background-color: transparent !important;
}

.theme-darkglass .section.bg-grey {
  background-color: rgba(255, 255, 255, 0.02) !important;
}

.theme-darkglass .hero-darkglass-card,
.theme-darkglass .special-card,
.theme-darkglass .category-grid-card,
.theme-darkglass .leader-card,
.theme-darkglass .timeline-card-content,
.theme-darkglass .contact-form,
.theme-darkglass .modal-content,
.theme-darkglass .exclusive-partner-card,
.theme-darkglass .custom-video-wrapper {
  background: rgba(15, 23, 42, 0.55) !important;
  backdrop-filter: blur(30px) saturate(220%) !important;
  -webkit-backdrop-filter: blur(30px) saturate(220%) !important;
  border: 1px solid rgba(255, 255, 255, 0.09) !important;
  box-shadow: 0 15px 40px 0 rgba(0, 0, 0, 0.35) !important;
}

.theme-darkglass .form-control {
  background-color: rgba(30, 41, 59, 0.4) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
}

.theme-darkglass .form-control:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 10px rgba(114, 9, 183, 0.4) !important;
}

/* ==========================================================================
   MEDIBAZAR EXACT THEME STYLING
   ========================================================================== */

.theme-medibazar {
  --primary: #028090;
  --primary-hover: #e63946;
  --secondary: #0b1d33;
  --secondary-light: #18304f;
  --font-poppins: 'Poppins', sans-serif;
  --font-roboto: 'Poppins', sans-serif;
  font-family: var(--font-poppins) !important;
}

.theme-medibazar .header-topline {
  background-color: var(--secondary) !important;
  border-bottom: 2px solid var(--primary) !important;
  padding: 12px 0;
}

.theme-medibazar .header-main {
  padding: 10px 0;
  border-bottom: 1px solid #e6ebf1;
}

/* Medibazar slider alignment & layouts */
.theme-medibazar .hero-medibazar-card {
  background: transparent !important;
  text-align: left !important;
  max-width: 680px;
  animation: slideInLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.theme-medibazar .hero-medibazar-card .hero-badge {
  background: #e63946 !important;
  color: #fff;
  border-radius: 4px;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 12px;
  box-shadow: none !important;
  margin-bottom: 20px;
}

.theme-medibazar .hero-medibazar-card .slide-text-title {
  font-size: 52px;
  font-weight: 800;
  color: #ffffff !important;
  line-height: 1.15;
  margin-bottom: 25px;
  text-shadow: 0 2px 10px rgba(11, 29, 51, 0.4);
}

.theme-medibazar .hero-medibazar-card .hero-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9) !important;
  line-height: 1.7;
  margin-bottom: 35px;
  text-shadow: 0 1px 4px rgba(11, 29, 51, 0.3);
}

/* Buttons for Medibazar template */
.theme-medibazar .c-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--primary) !important;
  color: #fff !important;
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: 13px;
  padding: 15px 32px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(2, 128, 144, 0.25);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-decoration: none;
}

.theme-medibazar .c-btn:hover {
  background-color: var(--primary-hover) !important;
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.3);
  transform: translateY(-2px);
}

.theme-medibazar .b-button a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff !important;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  border-bottom: 2px solid var(--primary);
  padding: 10px 0;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.theme-medibazar .b-button a:hover {
  color: var(--primary-hover) !important;
  border-color: var(--primary-hover);
}

/* Feature promo boxes matching Medibazar style */
.theme-medibazar .banner-wrapper:hover {
  transform: translateY(-5px);
}

.theme-medibazar .banner-wrapper .red-b-button a {
  color: #ffffff !important;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  border-bottom: 2px solid #fff;
  padding-bottom: 2px;
}

.theme-medibazar .banner-wrapper .red-b-button a:hover {
  color: #ffe3e3 !important;
  border-color: #ffe3e3;
}

/* Medibazar product card and tabs styling */
.theme-medibazar .products-category-tabs {
  border-bottom: 2px solid #eef1f6;
}

.theme-medibazar .products-category-tabs .nav-link {
  font-weight: 700;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 30px;
  color: var(--secondary);
}

.theme-medibazar .products-category-tabs .nav-link.active,
.theme-medibazar .products-category-tabs .nav-link:hover {
  background-color: var(--primary) !important;
  color: #fff !important;
}

.theme-medibazar .special-card {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 8px !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02) !important;
}

.theme-medibazar .special-card:hover {
  border-color: var(--primary) !important;
  box-shadow: 0 10px 30px rgba(2, 128, 144, 0.1) !important;
}

.theme-medibazar .special-card-caption h3 {
  color: var(--secondary) !important;
  font-weight: 700;
}

.theme-medibazar .product-link {
  color: var(--primary) !important;
  font-weight: 700;
}

.theme-medibazar .product-link:hover {
  color: var(--primary-hover) !important;
}

/* Medibazar headers / search */
.theme-medibazar .header-search-center input {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  color: var(--secondary) !important;
}

.theme-medibazar .header-search-center input:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 10px rgba(2, 128, 144, 0.1) !important;
}

/* ==========================================================================
   MEDIZIN EXACT THEME STYLING
   ========================================================================== */

.theme-medizin {
  --primary: #20ad96;
  --primary-hover: #178a76;
  --secondary: #0e1b2f;
  --secondary-light: #192b45;
  --font-poppins: 'Outfit', sans-serif;
  --font-roboto: 'Outfit', sans-serif;
  font-family: var(--font-poppins) !important;
}

.theme-medizin .header-topline {
  background-color: #f8fafc !important;
  color: #475569 !important;
  border-bottom: 1px solid #e2e8f0 !important;
  padding: 8px 0;
}

.theme-medizin .header-topline a {
  color: #475569 !important;
}

.theme-medizin .header-topline a:hover {
  color: var(--primary) !important;
}

.theme-medizin .header-main {
  border-bottom: 1px solid #f1f5f9;
}

.theme-medizin .hero-medizin-card {
  background: rgba(255, 255, 255, 0.95) !important;
  border-radius: 12px !important;
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 20px 40px rgba(14, 27, 47, 0.06) !important;
  text-align: left !important;
  max-width: 600px;
  padding: 50px !important;
  animation: slideInLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.theme-medizin .hero-medizin-card .hero-badge {
  background: rgba(32, 173, 150, 0.12) !important;
  color: var(--primary) !important;
  border-radius: 4px;
  font-weight: 700;
  font-size: 11px;
  padding: 4px 10px;
  box-shadow: none !important;
}

.theme-medizin .hero-medizin-card .slide-text-title {
  color: var(--secondary) !important;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
}

.theme-medizin .hero-medizin-card .hero-desc {
  color: #64748b !important;
  font-size: 15px;
}

.theme-medizin .btn-primary {
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
  box-shadow: 0 4px 12px rgba(32, 173, 150, 0.2) !important;
}

.theme-medizin .btn-primary:hover {
  background-color: var(--primary-hover) !important;
  border-color: var(--primary-hover) !important;
}

.theme-medizin .category-grid-card {
  border-radius: 12px !important;
  border: 1px solid #f1f5f9 !important;
  box-shadow: 0 5px 15px rgba(14, 27, 47, 0.02) !important;
}

.theme-medizin .category-grid-card:hover {
  border-color: var(--primary) !important;
  box-shadow: 0 15px 30px rgba(14, 27, 47, 0.06) !important;
}

.theme-medizin .category-grid-icon {
  background-color: rgba(32, 173, 150, 0.08) !important;
  color: var(--primary) !important;
  border-radius: 10px !important;
}

.theme-medizin .category-grid-card:hover .category-grid-icon {
  background-color: var(--primary) !important;
  color: #fff !important;
}

.theme-medizin .sub-chip {
  background-color: #f8fafc !important;
  border-color: #e2e8f0 !important;
  color: #475569 !important;
  font-size: 12px !important;
}

.theme-medizin .sub-chip:hover {
  background-color: var(--primary) !important;
  color: #fff !important;
  border-color: var(--primary) !important;
}

.theme-medizin .header-search-center input {
  background: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
}

.theme-medizin .header-search-center input:focus {
  border-color: var(--primary) !important;
  background-color: #fff !important;
}



