﻿/* ==============================
   KESHAV INDUSTRIES - Main Stylesheet
   Premium Corporate Website
   Version: 1.0
   ============================== */

/* ==============================
   1. CSS Variables & Root
   ============================== */
:root {
  --primary: #1a237e;
  --primary-dark: #0d47a1;
  --primary-light: #3f51b5;
  --secondary: #ff6f00;
  --secondary-dark: #e65100;
  --secondary-light: #ffa000;
  --accent: #00bcd4;
  --accent-dark: #0097a7;
  --accent-light: #4dd0e1;
  --gradient-1: linear-gradient(135deg, #1a237e, #0d47a1);
  --gradient-2: linear-gradient(135deg, #ff6f00, #e65100);
  --gradient-3: linear-gradient(135deg, #667eea, #764ba2);
  --gradient-primary: linear-gradient(135deg, #1a237e, #0d47a1);
  --gradient-secondary: linear-gradient(135deg, #ff6f00, #e65100);
  --gradient-accent: linear-gradient(135deg, #00bcd4, #0097a7);
  --gradient-dark: linear-gradient(135deg, #0a0e27, #1a1a3e);
  --dark-bg: #0a0e27;
  --dark-bg-2: #111338;
  --light-bg: #f8f9fe;
  --light-bg-2: #eef0f7;
  --text-dark: #1a1a2e;
  --text-light: #ffffff;
  --text-muted: #6b7280;
  --text-gray: #9ca3af;
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.18);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  --card-glass-bg: rgba(255, 255, 255, 0.05);
  --card-glass-border: rgba(255, 255, 255, 0.1);
  --card-glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 0 20px rgba(26, 35, 126, 0.3);
  --shadow-glow-secondary: 0 0 20px rgba(255, 111, 0, 0.3);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 50%;
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-spring: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --font-xs: 0.75rem;
  --font-sm: 0.875rem;
  --font-base: 1rem;
  --font-lg: 1.125rem;
  --font-xl: 1.25rem;
  --font-2xl: 1.5rem;
  --font-3xl: 2rem;
  --font-4xl: 2.5rem;
  --font-5xl: 3.5rem;
  --section-padding: 100px 0;
  --section-padding-md: 80px 0;
  --section-padding-sm: 60px 0;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--light-bg);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

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

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

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-dark);
}

p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

section {
  position: relative;
}

::selection {
  background: var(--primary);
  color: var(--text-light);
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--light-bg-2);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

.container {
  max-width: 1200px;
  padding: 0 15px;
}

.section-padding {
  padding: var(--section-padding);
}

@media (max-width: 991px) {
  .section-padding {
    padding: var(--section-padding-md);
  }
}

@media (max-width: 767px) {
  .section-padding {
    padding: var(--section-padding-sm);
  }
}/* ==============================
   3. Typography
   ============================== */
h1 {
  font-size: var(--font-5xl);
  letter-spacing: -0.02em;
}

h2 {
  font-size: var(--font-4xl);
  letter-spacing: -0.01em;
}

h3 {
  font-size: var(--font-3xl);
}

h4 {
  font-size: var(--font-xl);
}

h5 {
  font-size: var(--font-lg);
}

h6 {
  font-size: var(--font-base);
}

@media (max-width: 991px) {
  h1 { font-size: var(--font-4xl); }
  h2 { font-size: var(--font-3xl); }
  h3 { font-size: var(--font-2xl); }
}

@media (max-width: 767px) {
  h1 { font-size: var(--font-3xl); }
  h2 { font-size: var(--font-2xl); }
  h3 { font-size: var(--font-xl); }
}

.section-header {
  margin-bottom: 3rem;
}

.section-header.text-start {
  text-align: left;
}

.section-subtitle {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--font-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--secondary);
  margin-bottom: 0.75rem;
  position: relative;
  padding: 6px 16px;
  background: rgba(255, 111, 0, 0.1);
  border-radius: 50px;
}

.section-title {
  margin-bottom: 1rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gradient-2);
  margin-top: 1rem;
  border-radius: 2px;
}

.section-header.text-center .section-title::after {
  margin-left: auto;
  margin-right: auto;
}

.section-header.text-start .section-title::after {
  margin-left: 0;
}

.section-desc {
  font-size: var(--font-lg);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.bg-dark .section-subtitle {
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent-light);
}

.text-primary {
  color: var(--primary) !important;
}

.text-primary-light {
  color: var(--accent-light) !important;
}

/* ==============================
   4. Buttons
   ============================== */
.btn {
  font-family: var(--font-body);
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 50px;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
  text-transform: none;
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gradient-1);
  color: var(--text-light);
  box-shadow: 0 4px 15px rgba(26, 35, 126, 0.3);
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--gradient-1);
  color: var(--text-light);
  box-shadow: 0 8px 25px rgba(26, 35, 126, 0.4);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--gradient-2);
  color: var(--text-light);
  box-shadow: 0 4px 15px rgba(255, 111, 0, 0.3);
}

.btn-secondary:hover,
.btn-secondary:focus {
  background: var(--gradient-2);
  color: var(--text-light);
  box-shadow: 0 8px 25px rgba(255, 111, 0, 0.4);
  transform: translateY(-2px);
}

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

.btn-outline-primary:hover {
  background: var(--gradient-1);
  color: var(--text-light);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26, 35, 126, 0.3);
}

.btn-outline-light {
  background: transparent;
  color: var(--text-light);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
  background: var(--text-light);
  color: var(--primary);
  border-color: var(--text-light);
  transform: translateY(-2px);
}

.btn-gradient {
  background: var(--gradient-3);
  color: var(--text-light);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-gradient:hover {
  color: var(--text-light);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
  transform: translateY(-2px);
}

.btn-glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  color: var(--text-light);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--text-light);
  transform: translateY(-2px);
}

.btn-light {
  background: var(--text-light);
  color: var(--primary);
}

.btn-light:hover {
  background: var(--light-bg-2);
  color: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--dark-bg);
  color: var(--text-light);
}

.btn-dark:hover {
  background: var(--dark-bg-2);
  color: var(--text-light);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 40px;
  font-size: var(--font-lg);
}

.btn-sm {
  padding: 8px 20px;
  font-size: var(--font-sm);
}

.btn-link {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  padding: 0;
  position: relative;
}

.btn-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-1);
  transition: var(--transition-base);
}

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

.btn-link:hover::after {
  width: 100%;
}

.btn-link i {
  transition: var(--transition-base);
}

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

.btn:disabled,
.btn.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}
/* ==============================
   5. Navigation / Top Bar
   ============================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-base);
}

.top-bar {
  background: var(--dark-bg);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-base);
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-link {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--font-sm);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-base);
}

.top-bar-link:hover {
  color: var(--secondary);
}

.top-bar-link i {
  font-size: var(--font-xs);
}

.top-bar-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--font-xs);
  transition: var(--transition-base);
}

.social-icons a:hover {
  background: var(--secondary);
  color: var(--text-light);
  transform: translateY(-2px);
}

.main-navbar {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0;
  transition: var(--transition-base);
}

.main-navbar.scrolled {
  background: rgba(10, 14, 39, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.site-header.scrolled .top-bar {
  height: 0;
  padding: 0;
  overflow: hidden;
}

.navbar-brand {
  padding: 10px 0;
}

.site-logo {
  height: 50px;
  width: auto;
  transition: var(--transition-base);
}

.navbar-nav {
  gap: 4px;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: var(--text-light) !important;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--font-sm);
  padding: 28px 16px !important;
  position: relative;
  transition: var(--transition-base);
  letter-spacing: 0.3px;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--gradient-2);
  transition: var(--transition-base);
  border-radius: 2px 2px 0 0;
}

.nav-link:hover::before,
.nav-link.active::before {
  width: 60%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-light) !important;
}

.dropdown-menu {
  background: rgba(10, 14, 39, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 12px 0;
  margin-top: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  min-width: 220px;
}

.dropdown-menu .dropdown-item {
  color: rgba(255, 255, 255, 0.8);
  padding: 8px 24px;
  font-size: var(--font-sm);
  font-weight: 400;
  transition: var(--transition-base);
  position: relative;
}

.dropdown-menu .dropdown-item:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--secondary);
  padding-left: 32px;
}

.dropdown-menu .dropdown-divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 8px 0;
}

.mega-menu {
  column-count: 3;
  column-gap: 0;
  min-width: 600px;
  padding: 16px 0;
}

.mega-menu .dropdown-item {
  break-inside: avoid;
  padding: 8px 24px;
}

@media (max-width: 991px) {
  .mega-menu {
    column-count: 1;
    min-width: auto;
  }
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 20px;
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-search {
  background: none;
  border: none;
  color: var(--text-light);
  font-size: var(--font-lg);
  padding: 8px;
  cursor: pointer;
  transition: var(--transition-base);
}

.btn-search:hover {
  color: var(--secondary);
  transform: scale(1.1);
}

.nav-icon {
  position: relative;
  color: var(--text-light);
  font-size: var(--font-lg);
  padding: 8px;
  transition: var(--transition-base);
}

.nav-icon:hover {
  color: var(--secondary);
  transform: scale(1.1);
}

.nav-icon .badge {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 10px;
  min-width: 18px;
  height: 18px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  color: var(--text-light);
  font-weight: 600;
  padding: 0 5px;
}

.navbar-toggler {
  border: none;
  padding: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler:focus {
  box-shadow: none;
}

@media (max-width: 991px) {
  .main-navbar {
    background: rgba(10, 14, 39, 0.98);
  }

  .navbar-nav {
    padding: 16px 0;
  }

  .nav-link {
    padding: 12px 16px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-link::before {
    display: none;
  }

  .dropdown-menu {
    background: transparent;
    border: none;
    box-shadow: none;
    padding-left: 20px;
    margin-top: 0;
  }

  .mega-menu {
    column-count: 1;
  }

  .nav-actions {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
    padding: 16px;
    justify-content: center;
  }
}
/* ==============================
   6. Hero Slider
   ============================== */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}

.swiper-hero {
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.85) 0%, rgba(26, 35, 126, 0.6) 50%, rgba(10, 14, 39, 0.85) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 120px 0 60px;
}

.hero-content.text-center {
  margin: 0 auto;
  text-align: center;
}

.hero-subtitle {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--font-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--secondary);
  margin-bottom: 1rem;
  padding: 8px 20px;
  background: rgba(255, 111, 0, 0.15);
  border-radius: 50px;
  border: 1px solid rgba(255, 111, 0, 0.3);
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-desc {
  font-size: var(--font-lg);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  max-width: 600px;
  line-height: 1.8;
}

.hero-content.text-center .hero-desc {
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-content.text-center .hero-actions {
  justify-content: center;
}

.hero-pagination {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}

.hero-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
  border-radius: var(--radius-full);
  transition: var(--transition-base);
}

.hero-pagination .swiper-pagination-bullet-active {
  width: 36px;
  border-radius: 6px;
  background: var(--secondary);
}

.hero-navigation {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  padding: 0 40px;
  pointer-events: none;
}

.hero-prev,
.hero-next {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: var(--font-xl);
  cursor: pointer;
  transition: var(--transition-base);
  pointer-events: all;
}

.hero-prev:hover,
.hero-next:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  transform: scale(1.1);
}

@media (max-width: 991px) {
  .hero-section,
  .hero-slide {
    height: 80vh;
    min-height: 600px;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-navigation {
    display: none;
  }
}

@media (max-width: 767px) {
  .hero-section,
  .hero-slide {
    height: 70vh;
    min-height: 500px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-desc {
    font-size: var(--font-base);
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-content.text-center .hero-actions {
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
  }
}

/* ==============================
   7. Page Hero (Inner Pages)
   ============================== */
.page-hero {
  position: relative;
  padding: 180px 0 100px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.products-hero {
  background: linear-gradient(135deg, #0a0e27, #1a237e);
}

.about-hero {
  background: linear-gradient(135deg, #0a0e27, #1a237e);
}

.services-hero {
  background: linear-gradient(135deg, #0a0e27, #1a237e);
}

.blog-hero {
  background: linear-gradient(135deg, #0a0e27, #1a237e);
}

.contact-hero {
  background: linear-gradient(135deg, #0a0e27, #1a237e);
}

.faq-hero {
  background: linear-gradient(135deg, #0a0e27, #1a237e);
}

.page-hero .hero-overlay {
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.9) 0%, rgba(26, 35, 126, 0.7) 100%);
}

.page-hero .hero-content {
  position: relative;
  z-index: 2;
  padding: 0;
}

.page-hero h1 {
  font-size: var(--font-5xl);
  color: var(--text-light);
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: var(--font-lg);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

@media (max-width: 767px) {
  .page-hero {
    padding: 140px 0 60px;
  }

  .page-hero h1 {
    font-size: var(--font-3xl);
  }
}

/* ==============================
   8. Breadcrumb
   ============================== */
.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}

.breadcrumb-item {
  font-size: var(--font-sm);
  font-weight: 500;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  padding: 0 10px;
}

.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item a:hover {
  color: var(--secondary);
}

.breadcrumb-item.active {
  color: var(--secondary);
}
/* ==============================
   9. Glass Morphism
   ============================== */
.glass-card {
  background: var(--card-glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--card-glass-border);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.glass-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
}

.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
}

/* ==============================
   11. Cards - Product
   ============================== */
.product-card {
  background: var(--text-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.product-image {
  position: relative;
  overflow: hidden;
  height: 260px;
  background: var(--light-bg-2);
}

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

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

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.product-badge.discount {
  background: var(--secondary);
  color: var(--text-light);
}

.product-badge.trending {
  background: var(--accent);
  color: var(--text-light);
  left: auto;
  right: 12px;
}

.product-actions {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateX(20px);
  transition: var(--transition-base);
  z-index: 2;
}

.product-card:hover .product-actions {
  opacity: 1;
  transform: translateX(0);
}

.product-actions a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  font-size: var(--font-sm);
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
}

.product-actions a:hover {
  background: var(--gradient-1);
  color: var(--text-light);
  transform: scale(1.1);
}

.product-info {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-category {
  font-size: var(--font-xs);
  color: var(--secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.product-title {
  font-size: var(--font-lg);
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.4;
}

.product-title a {
  color: var(--text-dark);
}

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

.product-desc {
  font-size: var(--font-sm);
  color: var(--text-muted);
  margin-bottom: 12px;
  flex: 1;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.product-price .price {
  font-size: var(--font-lg);
  font-weight: 700;
  color: var(--primary);
}

.product-price .price.original {
  font-size: var(--font-sm);
  color: var(--text-muted);
  text-decoration: line-through;
  font-weight: 400;
}

.product-price .price.discounted {
  color: var(--secondary);
}

/* ==============================
   12. Blog Cards
   ============================== */
.blog-card {
  background: var(--text-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.blog-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

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

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

.blog-category {
  position: absolute;
  bottom: 12px;
  left: 12px;
  padding: 6px 14px;
  background: var(--gradient-1);
  color: var(--text-light);
  font-size: var(--font-xs);
  font-weight: 600;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-info {
  padding: 24px;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
  font-size: var(--font-sm);
  color: var(--text-muted);
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-meta i {
  color: var(--secondary);
}

.blog-title {
  font-size: var(--font-xl);
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-title a {
  color: var(--text-dark);
}

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

.blog-desc,
.blog-excerpt {
  font-size: var(--font-sm);
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.7;
}
/* ==============================
   13. Testimonial Cards
   ============================== */
.testimonial-card {
  background: var(--card-glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--card-glass-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition-base);
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-stars i {
  color: #ffc107;
  font-size: var(--font-sm);
}

.testimonial-content {
  font-size: var(--font-base);
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 3px solid var(--secondary);
}

.author-name {
  font-size: var(--font-base);
  font-weight: 600;
  margin-bottom: 2px;
  color: var(--text-dark);
}

.author-company {
  font-size: var(--font-sm);
  color: var(--text-muted);
}

.bg-dark .testimonial-card {
  background: var(--card-glass-bg);
  border-color: rgba(255, 255, 255, 0.08);
}

.bg-dark .testimonial-content {
  color: rgba(255, 255, 255, 0.8);
}

.bg-dark .author-name {
  color: var(--text-light);
}

/* ==============================
   14. Cards - Why Choose Us / Services
   ============================== */
.why-card {
  text-align: center;
  padding: 40px 30px;
  height: 100%;
}

.why-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-full);
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: var(--font-2xl);
  color: var(--text-light);
  transition: var(--transition-base);
}

.why-card:hover .why-icon {
  transform: rotateY(180deg);
  background: var(--gradient-2);
}

.why-title {
  font-size: var(--font-xl);
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.why-desc {
  font-size: var(--font-sm);
  color: var(--text-muted);
  line-height: 1.7;
}

.service-card {
  text-align: center;
  padding: 40px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-full);
  background: var(--gradient-2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: var(--font-2xl);
  color: var(--text-light);
  transition: var(--transition-base);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(10deg);
}

.service-title {
  font-size: var(--font-xl);
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.service-desc {
  font-size: var(--font-sm);
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
}

.service-features {
  text-align: left;
  margin-top: 16px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-size: var(--font-sm);
  color: var(--text-muted);
}

.service-features li i {
  color: var(--accent);
  font-size: var(--font-xs);
}

/* Industry Cards */
.industry-card {
  background: var(--card-glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition-base);
  height: 100%;
}

.industry-card:hover {
  transform: translateY(-8px);
  border-color: var(--secondary);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.industry-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  background: rgba(255, 111, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: var(--font-2xl);
  color: var(--secondary);
  transition: var(--transition-base);
}

.industry-card:hover .industry-icon {
  background: var(--secondary);
  color: var(--text-light);
}

.industry-card h4 {
  color: var(--text-light);
  font-size: var(--font-lg);
  margin-bottom: 10px;
}

.industry-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--font-sm);
  line-height: 1.6;
}

/* Value Cards */
.value-card {
  background: var(--text-light);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  height: 100%;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.value-card i {
  font-size: var(--font-4xl);
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.value-card h4 {
  font-size: var(--font-lg);
  font-weight: 600;
  margin-bottom: 10px;
}

.value-card p {
  font-size: var(--font-sm);
  color: var(--text-muted);
  line-height: 1.7;
}

/* Team Cards */
.team-card {
  background: var(--text-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.team-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

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

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

.team-social {
  position: absolute;
  bottom: -60px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  background: linear-gradient(transparent, rgba(10, 14, 39, 0.9));
  transition: var(--transition-base);
}

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

.team-social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: var(--transition-base);
}

.team-social a:hover {
  background: var(--secondary);
  color: var(--text-light);
  transform: translateY(-3px);
}

.team-info {
  padding: 20px;
  text-align: center;
}

.team-info h4 {
  font-size: var(--font-lg);
  font-weight: 600;
  margin-bottom: 4px;
}

.team-info span {
  display: block;
  font-size: var(--font-sm);
  color: var(--secondary);
  font-weight: 500;
  margin-bottom: 8px;
}

.team-info p {
  font-size: var(--font-sm);
  color: var(--text-muted);
}
/* ==============================
   15. Project Cards
   ============================== */
.project-card {
  background: var(--text-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  height: 100%;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.project-image {
  position: relative;
  height: 260px;
  overflow: hidden;
}

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

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

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 14, 39, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-base);
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-info {
  padding: 20px;
}

.project-title {
  font-size: var(--font-lg);
  font-weight: 600;
  margin-bottom: 8px;
}

.project-client,
.project-location {
  font-size: var(--font-sm);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}

.project-client i,
.project-location i {
  color: var(--secondary);
}

/* ==============================
   16. Counter Section
   ============================== */
.counter-section {
  position: relative;
  overflow: hidden;
}

.counter-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/pattern-dots.png") repeat;
  opacity: 0.05;
}

.counter-item {
  text-align: center;
  padding: 30px;
  position: relative;
}

.counter-icon {
  font-size: var(--font-4xl);
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 16px;
  transition: var(--transition-base);
}

.counter-item:hover .counter-icon {
  color: var(--secondary);
  transform: scale(1.2);
}

.counter-number {
  font-family: var(--font-heading);
  font-size: var(--font-5xl);
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 8px;
}

.counter-label {
  font-size: var(--font-base);
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* Stat Box */
.stat-box {
  text-align: center;
  padding: 20px;
  background: var(--light-bg-2);
  border-radius: var(--radius-md);
  transition: var(--transition-base);
}

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

.stat-box h3 {
  font-size: var(--font-3xl);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.stat-box p {
  font-size: var(--font-sm);
  color: var(--text-muted);
  margin: 0;
}

/* ==============================
   17. Process Steps / Timeline
   ============================== */
.process-timeline {
  position: relative;
  padding: 40px 0;
}

.process-line {
  position: absolute;
  top: 50%;
  left: 15%;
  right: 15%;
  height: 2px;
  background: var(--gradient-2);
  transform: translateY(-50%);
  z-index: 0;
}

.process-step {
  text-align: center;
  padding: 30px 20px;
  position: relative;
  z-index: 1;
  background: var(--text-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  height: 100%;
}

.process-step:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.step-number {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  background: var(--gradient-2);
  color: var(--text-light);
  font-size: var(--font-sm);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
}

.step-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: var(--font-2xl);
  color: var(--text-light);
}

.process-step h4 {
  font-size: var(--font-lg);
  font-weight: 600;
  margin-bottom: 8px;
}

.process-step p {
  font-size: var(--font-sm);
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

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

/* Timeline Section (About Page) */
.timeline {
  position: relative;
  padding: 40px 0;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: var(--gradient-2);
}

.timeline-item {
  position: relative;
  padding: 20px 0;
  display: flex;
  align-items: flex-start;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  border-radius: var(--radius-full);
  background: var(--secondary);
  border: 4px solid var(--light-bg);
  z-index: 2;
  top: 40px;
}

.timeline-date {
  width: 50%;
  text-align: right;
  padding-right: 40px;
  font-family: var(--font-heading);
  font-size: var(--font-3xl);
  font-weight: 700;
  color: var(--primary);
  padding-top: 24px;
}

.timeline-item:nth-child(even) .timeline-date {
  text-align: left;
  padding-right: 0;
  padding-left: 40px;
}

.timeline-content {
  width: 50%;
  padding: 24px;
  margin-left: 40px;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: 0;
  margin-right: 40px;
}

.timeline-content h4 {
  font-size: var(--font-lg);
  font-weight: 600;
  margin-bottom: 8px;
}

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

@media (max-width: 767px) {
  .timeline::before {
    left: 20px;
  }

  .timeline-item,
  .timeline-item:nth-child(even) {
    flex-direction: row;
    padding-left: 50px;
  }

  .timeline-dot {
    left: 20px;
  }

  .timeline-date,
  .timeline-item:nth-child(even) .timeline-date {
    width: 100%;
    text-align: left;
    padding: 0 0 8px;
  }

  .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    width: 100%;
    margin: 0;
  }
}
/* ==============================
   18. Forms
   ============================== */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  font-size: var(--font-sm);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
  display: block;
}

.form-control {
  border: 2px solid #e5e7eb;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: var(--font-base);
  font-family: var(--font-body);
  color: var(--text-dark);
  transition: var(--transition-base);
  background: var(--text-light);
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(26, 35, 126, 0.1);
  outline: none;
}

.form-control::placeholder {
  color: var(--text-gray);
}

.form-control-lg {
  padding: 16px 20px;
  font-size: var(--font-lg);
}

.form-control-sm {
  padding: 8px 12px;
  font-size: var(--font-sm);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

select.form-control,
.form-select {
  border: 2px solid #e5e7eb;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: var(--font-base);
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--text-light);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px 12px;
  appearance: none;
  -webkit-appearance: none;
  transition: var(--transition-base);
}

.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(26, 35, 126, 0.1);
  outline: none;
}

.form-check {
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-check-input {
  width: 18px;
  height: 18px;
  border: 2px solid #d1d5db;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-base);
}

.form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

.form-check-input:focus {
  box-shadow: 0 0 0 4px rgba(26, 35, 126, 0.1);
  border-color: var(--primary);
}

.form-check-label {
  font-size: var(--font-sm);
  cursor: pointer;
}

.form-switch .form-check-input {
  width: 40px;
  height: 22px;
  border-radius: 11px;
}

.form-switch .form-check-input:checked {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.invalid-feedback {
  font-size: var(--font-xs);
  color: #dc3545;
  margin-top: 4px;
}

.form-control.is-invalid {
  border-color: #dc3545;
}

/* ==============================
   19. Footer
   ============================== */
.site-footer {
  position: relative;
  overflow: hidden;
}

.footer-main {
  background: var(--dark-bg);
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-widget {
  margin-bottom: 30px;
}

.footer-logo {
  height: 50px;
  width: auto;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--font-sm);
  line-height: 1.8;
}

.widget-title {
  font-size: var(--font-lg);
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.widget-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gradient-2);
}

.footer-social {
  margin-top: 20px;
}

.social-title {
  font-size: var(--font-sm);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
  font-weight: 500;
}

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

.footer-social .social-links a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--font-base);
  transition: var(--transition-base);
}

.footer-social .social-links a:hover {
  background: var(--secondary);
  color: var(--text-light);
  transform: translateY(-3px);
}

.footer-links {
  padding: 0;
  margin: 0;
}

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

.footer-links li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--font-sm);
  transition: var(--transition-base);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links li a::before {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 8px;
  color: var(--secondary);
  transition: var(--transition-base);
}

.footer-links li a:hover {
  color: var(--secondary);
  padding-left: 6px;
}

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

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--font-sm);
}

.contact-item i {
  color: var(--secondary);
  font-size: var(--font-base);
  margin-top: 3px;
  min-width: 16px;
}

.contact-item a {
  color: rgba(255, 255, 255, 0.6);
}

.contact-item a:hover {
  color: var(--secondary);
}

.footer-newsletter {
  margin-top: 20px;
}

.newsletter-form .input-group {
  display: flex;
  gap: 0;
}

.newsletter-form .form-control {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  border-radius: var(--radius-sm) 0 0 var(--radius-sm) !important;
}

.newsletter-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-form .form-control:focus {
  border-color: var(--secondary);
  box-shadow: none;
}

.newsletter-form .btn {
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0 !important;
  padding: 12px 20px;
}

.newsletter-msg {
  font-size: var(--font-sm);
}

.text-success {
  color: #10b981 !important;
}

.text-danger {
  color: #ef4444 !important;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--font-sm);
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--font-sm);
}

.footer-bottom-links a:hover {
  color: var(--secondary);
}

.payment-icons {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.3);
  font-size: var(--font-xl);
}

.ssl-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.4);
  font-size: var(--font-xs);
  padding: 4px 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

@media (max-width: 767px) {
  .footer-bottom-links {
    justify-content: center;
    margin-top: 10px;
  }

  .copyright {
    text-align: center;
  }
}

/* ==============================
   20. Back to Top
   ============================== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--gradient-1);
  color: var(--text-light);
  display: none;
  align-items: center;
  justify-content: center;
  font-size: var(--font-lg);
  z-index: 999;
  box-shadow: 0 4px 20px rgba(26, 35, 126, 0.3);
  border: none;
  cursor: pointer;
  transition: var(--transition-base);
  padding: 0;
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(26, 35, 126, 0.4);
  background: var(--gradient-1);
  color: var(--text-light);
}

/* ==============================
   21. Modals
   ============================== */
.modal-content {
  background: rgba(10, 14, 39, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 24px;
}

.modal-title {
  color: var(--text-light);
  font-family: var(--font-heading);
  font-size: var(--font-xl);
}

.modal-header .btn-close {
  filter: brightness(0) invert(1);
  opacity: 0.6;
  transition: var(--transition-base);
}

.modal-header .btn-close:hover {
  opacity: 1;
}

.modal-body {
  padding: 24px;
}

.modal-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 24px;
}

.modal-backdrop {
  background: rgba(10, 14, 39, 0.8);
}
/* ==============================
   22. Pagination
   ============================== */
.pagination {
  gap: 6px;
}

.page-item .page-link {
  border: none;
  padding: 10px 18px;
  font-size: var(--font-sm);
  font-weight: 600;
  color: var(--text-dark);
  background: var(--text-light);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
}

.page-item.active .page-link {
  background: var(--gradient-1);
  color: var(--text-light);
  box-shadow: 0 4px 15px rgba(26, 35, 126, 0.3);
}

.page-item .page-link:hover {
  background: var(--primary);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(26, 35, 126, 0.3);
}

.page-item.disabled .page-link {
  color: var(--text-gray);
  background: var(--light-bg-2);
  pointer-events: none;
}

/* ==============================
   23. Sidebar
   ============================== */
.sidebar-widget {
  margin-bottom: 30px;
  padding: 24px;
  background: var(--text-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.sidebar-widget .widget-title {
  font-size: var(--font-lg);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--light-bg-2);
}

.sidebar-search .input-group {
  display: flex;
}

.sidebar-search .form-control {
  border-radius: var(--radius-sm) 0 0 var(--radius-sm) !important;
}

.sidebar-search .btn {
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0 !important;
  padding: 10px 16px;
}

.category-filter,
.brand-filter {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-filter li,
.brand-filter li {
  border-bottom: 1px solid var(--light-bg-2);
}

.category-filter li:last-child,
.brand-filter li:last-child {
  border-bottom: none;
}

.category-filter li a,
.brand-filter li a {
  display: block;
  padding: 10px 0;
  color: var(--text-muted);
  font-size: var(--font-sm);
  transition: var(--transition-base);
}

.category-filter li a:hover,
.category-filter li a.active,
.brand-filter li a:hover,
.brand-filter li a.active {
  color: var(--primary);
  padding-left: 8px;
}

.category-filter li a.active,
.brand-filter li a.active {
  font-weight: 600;
  color: var(--primary);
}

.price-filter .form-control {
  padding: 8px 12px;
  font-size: var(--font-sm);
}

/* Blog Sidebar */
.blog-sidebar .sidebar-widget {
  padding: 24px;
}

.recent-posts-widget {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.recent-post-item {
  display: flex;
  gap: 12px;
}

.recent-post-item img {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.recent-post-info {
  flex: 1;
}

.recent-post-info a {
  display: block;
  font-size: var(--font-sm);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 4px;
}

.recent-post-info a:hover {
  color: var(--primary);
}

.recent-post-info span {
  font-size: var(--font-xs);
  color: var(--text-muted);
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-item {
  display: inline-block;
  padding: 4px 12px;
  background: var(--light-bg-2);
  color: var(--text-muted);
  font-size: var(--font-xs) !important;
  border-radius: 4px;
  transition: var(--transition-base);
}

.tag-item:hover {
  background: var(--primary);
  color: var(--text-light);
}

.sidebar-cta {
  text-align: center;
  background: var(--gradient-1) !important;
}

.sidebar-cta h4 {
  color: var(--text-light);
  font-size: var(--font-lg);
}

.sidebar-cta p {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--font-sm);
}

.sidebar-cta .form-control {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text-light);
}

.sidebar-cta .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.sidebar-cta .btn {
  background: var(--secondary);
  color: var(--text-light);
}

/* ==============================
   24. Products Toolbar
   ============================== */
.products-toolbar {
  padding: 16px 20px;
  background: var(--text-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}

.products-count {
  font-size: var(--font-sm);
  color: var(--text-muted);
  margin: 0;
}

.sort-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sort-wrapper label {
  font-size: var(--font-sm);
  color: var(--text-muted);
  white-space: nowrap;
}

.sort-wrapper .form-select-sm {
  width: auto;
  padding: 6px 30px 6px 12px;
  font-size: var(--font-sm);
  border-radius: var(--radius-sm);
}

/* ==============================
   25. Client Logo Grid / Marquee
   ============================== */
.clients-marquee {
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

.marquee-track {
  display: flex;
  animation: marqueeScroll 30s linear infinite;
  gap: 40px;
  width: max-content;
}

.marquee-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  padding: 0 20px;
  opacity: 0.5;
  transition: var(--transition-base);
}

.marquee-item:hover {
  opacity: 1;
}

.marquee-item img {
  max-height: 60px;
  width: auto;
  filter: grayscale(100%);
  transition: var(--transition-base);
}

.marquee-item:hover img {
  filter: grayscale(0%);
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ==============================
   26. Certificate / Logo
   ============================== */
.cert-logo {
  padding: 20px;
  background: var(--text-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition-base);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cert-logo:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.cert-logo img {
  max-height: 80px;
  width: auto;
  opacity: 0.7;
  transition: var(--transition-base);
}

.cert-logo:hover img {
  opacity: 1;
}
/* ==============================
   27. Newsletter
   ============================== */
.newsletter-section {
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/pattern-dots.png") repeat;
  opacity: 0.05;
}

.newsletter-title {
  font-size: var(--font-3xl);
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 12px;
}

.newsletter-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--font-lg);
  margin-bottom: 24px;
}

.newsletter-form-large .input-group {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-form-large .form-control {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-light);
  height: 56px;
}

.newsletter-form-large .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form-large .form-control:focus {
  border-color: var(--secondary);
  box-shadow: none;
}

.newsletter-form-large .btn {
  padding: 0 32px;
  font-weight: 600;
}

/* ==============================
   28. Contact Info Cards
   ============================== */
.contact-info-card {
  text-align: center;
  padding: 36px 24px;
  height: 100%;
}

.contact-info-card .contact-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: var(--font-2xl);
  color: var(--text-light);
  transition: var(--transition-base);
}

.contact-info-card:hover .contact-icon {
  transform: scale(1.1);
  background: var(--gradient-2);
}

.contact-info-card h4 {
  font-size: var(--font-lg);
  font-weight: 600;
  margin-bottom: 8px;
}

.contact-info-card p {
  font-size: var(--font-sm);
  color: var(--text-muted);
  margin: 0;
}

.contact-info-card a {
  color: var(--primary);
}

.contact-info-card a:hover {
  color: var(--secondary);
}

/* Contact Info List (Home Page) */
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--light-bg-2);
  border-radius: var(--radius-md);
  transition: var(--transition-base);
}

.contact-card:hover {
  transform: translateX(6px);
  background: var(--light-bg);
}

.contact-card i {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: var(--font-lg);
  flex-shrink: 0;
}

.contact-card h5 {
  font-size: var(--font-base);
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-card p {
  font-size: var(--font-sm);
  color: var(--text-muted);
  margin: 0;
}

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

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

/* Contact Form */
.contact-form-wrapper {
  padding: 32px;
  background: var(--text-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.contact-map-wrapper {
  padding: 32px;
  background: var(--text-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
}

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

.social-links-wrapper h4 {
  font-size: var(--font-base);
  font-weight: 600;
  margin-bottom: 12px;
}

.social-links-wrapper .social-links {
  display: flex;
  gap: 10px;
}

.social-links-wrapper .social-link {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--light-bg-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  transition: var(--transition-base);
}

.social-links-wrapper .social-link:hover {
  background: var(--gradient-1);
  color: var(--text-light);
  transform: translateY(-3px);
}

/* Button Loader States */
.btn-text {
  display: inline;
}

.btn-loader {
  display: none;
}

/* ==============================
   29. Map Section
   ============================== */
.map-section iframe {
  display: block;
  width: 100%;
  height: 400px;
}

/* ==============================
   30. WhatsApp / Call Floating Buttons
   ============================== */
.whatsapp-float,
.call-now-float {
  position: fixed;
  right: 30px;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-2xl);
  color: var(--text-light);
  z-index: 999;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: var(--transition-base);
  text-decoration: none;
}

.whatsapp-float {
  bottom: 100px;
  background: #25d366;
}

.call-now-float {
  bottom: 170px;
  background: var(--gradient-2);
}

.whatsapp-float:hover,
.call-now-float:hover {
  transform: scale(1.1);
  color: var(--text-light);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.whatsapp-float:hover {
  background: #20bd5a;
}

.call-now-float:hover {
  background: var(--secondary-dark);
}

.whatsapp-float::before,
.call-now-float::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-full);
  animation: pulseRing 2s infinite;
  background: inherit;
  opacity: 0.4;
  z-index: -1;
}

@keyframes pulseRing {
  0% {
    transform: scale(1);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.3);
    opacity: 0;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

@media (max-width: 767px) {
  .whatsapp-float,
  .call-now-float {
    right: 16px;
    width: 48px;
    height: 48px;
    font-size: var(--font-xl);
  }

  .whatsapp-float {
    bottom: 90px;
  }

  .call-now-float {
    bottom: 150px;
  }
}
/* ==============================
   31. Preloader / Loading Screen
   ============================== */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hide {
  opacity: 0;
  visibility: hidden;
}

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

.preloader-logo {
  height: 60px;
  width: auto;
  margin-bottom: 24px;
  animation: pulse 2s ease-in-out infinite;
}

.preloader-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--secondary);
  border-radius: var(--radius-full);
  animation: spin 0.8s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ==============================
   32. Search Overlay / Modal Search
   ============================== */
#searchModal .modal-dialog {
  max-width: 600px;
}

#searchModal .modal-content {
  background: rgba(10, 14, 39, 0.98);
}

.search-form .input-group {
  display: flex;
}

.search-form .input-group .form-control {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  font-size: var(--font-lg);
  padding: 16px 20px;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm) !important;
}

.search-form .input-group .form-control:focus {
  border-color: var(--secondary);
  box-shadow: none;
}

.search-form .input-group .form-control::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.search-form .input-group .btn {
  padding: 0 24px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0 !important;
}

.search-results {
  max-height: 400px;
  overflow-y: auto;
}

/* ==============================
   33. Badges
   ============================== */
.badge {
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: var(--font-xs);
}

.badge.bg-success {
  background: #10b981 !important;
}

.badge.bg-warning {
  background: #f59e0b !important;
  color: var(--text-dark);
}

.badge.bg-danger {
  background: #ef4444 !important;
}

.badge.bg-info {
  background: var(--accent) !important;
}

.badge.bg-secondary {
  background: #6b7280 !important;
}

/* ==============================
   34. Accordion / FAQ
   ============================== */
.accordion-item {
  background: var(--text-light);
  border: none;
  border-radius: var(--radius-md) !important;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.accordion-header {
  margin: 0;
}

.accordion-button {
  font-family: var(--font-body);
  font-size: var(--font-base);
  font-weight: 600;
  color: var(--text-dark);
  padding: 18px 24px;
  background: var(--text-light);
  border: none;
  box-shadow: none;
  transition: var(--transition-base);
}

.accordion-button:not(.collapsed) {
  color: var(--primary);
  background: var(--text-light);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231a237e'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transition: var(--transition-base);
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231a237e'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(-180deg);
}

.accordion-body {
  padding: 0 24px 20px;
  font-size: var(--font-sm);
  color: var(--text-muted);
  line-height: 1.8;
}

/* FAQ Search */
.faq-search {
  margin-bottom: 2rem;
}

.faq-search .input-group {
  max-width: 600px;
  margin: 0 auto;
}

.faq-category-section {
  margin-bottom: 2rem;
}

.faq-category-title {
  font-size: var(--font-xl);
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
}

/* ==============================
   35. Tables
   ============================== */
.table {
  width: 100%;
  margin-bottom: 0;
  color: var(--text-dark);
}

.table thead th {
  background: var(--light-bg-2);
  font-size: var(--font-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 16px;
  border-bottom: none;
  color: var(--text-muted);
}

.table tbody td {
  padding: 12px 16px;
  vertical-align: middle;
  border-bottom: 1px solid var(--light-bg-2);
  font-size: var(--font-sm);
}

.table-hover tbody tr:hover {
  background: rgba(26, 35, 126, 0.02);
}

.table-actions {
  display: flex;
  gap: 6px;
}

.table-actions .btn-sm {
  padding: 4px 10px;
  font-size: var(--font-xs);
}

/* ==============================
   36. Spec Table
   ============================== */
.spec-table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table tr {
  border-bottom: 1px solid var(--light-bg-2);
}

.spec-table td {
  padding: 12px 16px;
  font-size: var(--font-sm);
}

.spec-table td:first-child {
  font-weight: 600;
  color: var(--text-dark);
  width: 40%;
}

.spec-table td:last-child {
  color: var(--text-muted);
}

.spec-table tr:nth-child(even) {
  background: var(--light-bg);
}

/* ==============================
   37. Image Hover Effects
   ============================== */
.img-zoom {
  overflow: hidden;
}

.img-zoom img {
  transition: var(--transition-slow);
}

.img-zoom:hover img {
  transform: scale(1.15);
}

.img-overlay {
  position: relative;
  overflow: hidden;
}

.img-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 14, 39, 0.5);
  opacity: 0;
  transition: var(--transition-base);
  z-index: 1;
}

.img-overlay:hover::before {
  opacity: 1;
}

.img-overlay .overlay-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  z-index: 2;
  opacity: 0;
  transition: var(--transition-base);
}

.img-overlay:hover .overlay-content {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
/* ==============================
   38. Animations
   ============================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

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

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-fade-in-left {
  animation: fadeInLeft 0.6s ease forwards;
}

.animate-fade-in-right {
  animation: fadeInRight 0.6s ease forwards;
}

.animate-zoom-in {
  animation: zoomIn 0.6s ease forwards;
}

.animate-slide-in-up {
  animation: slideInUp 0.8s ease forwards;
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.shimmer {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  background-size: 1000px 100%;
  animation: shimmer 2s infinite;
}

.typing-text {
  overflow: hidden;
  white-space: nowrap;
  border-right: 3px solid var(--secondary);
  animation: typing 2s steps(40) forwards, blink 0.75s step-end infinite;
  width: 0;
}

/* ==============================
   39. Gradient Backgrounds
   ============================== */
.bg-primary-gradient {
  background: var(--gradient-1);
}

.bg-secondary-gradient {
  background: var(--gradient-2);
}

.bg-accent-gradient {
  background: var(--gradient-accent);
}

.bg-dark-gradient {
  background: var(--gradient-dark);
}

.bg-premium-gradient {
  background: var(--gradient-3);
}

.bg-light {
  background: var(--light-bg) !important;
}

.bg-dark {
  background: var(--dark-bg) !important;
}

/* ==============================
   40. Intro Section / Stats
   ============================== */
.intro-image-wrapper {
  position: relative;
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border-radius: var(--radius-full);
  background: var(--gradient-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  box-shadow: 0 8px 30px rgba(255, 111, 0, 0.3);
  animation: float 3s ease-in-out infinite;
}

.experience-badge .years {
  font-family: var(--font-heading);
  font-size: var(--font-2xl);
  font-weight: 700;
  line-height: 1;
}

.experience-badge .text {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
  line-height: 1.2;
  margin-top: 2px;
}

.intro-text {
  font-size: var(--font-base);
  color: var(--text-muted);
  line-height: 1.8;
}

/* Manufacturing Section */
.fact-box {
  text-align: center;
  padding: 16px;
  background: var(--light-bg-2);
  border-radius: var(--radius-md);
  transition: var(--transition-base);
}

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

.fact-box h3 {
  font-size: var(--font-2xl);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.fact-box p {
  font-size: var(--font-sm);
  color: var(--text-muted);
  margin: 0;
}

.manufacturing-grid {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 14, 39, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-base);
}

.manufacturing-grid:hover .grid-overlay {
  opacity: 1;
}

/* ==============================
   41. Mission / Vision Cards
   ============================== */
.mv-card {
  padding: 40px 32px;
  height: 100%;
}

.mv-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: var(--font-2xl);
  color: var(--text-light);
}

.mission-card .mv-icon {
  background: var(--gradient-1);
}

.vision-card .mv-icon {
  background: var(--gradient-2);
}

.mv-card h3 {
  font-size: var(--font-2xl);
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.mv-card p {
  font-size: var(--font-base);
  color: var(--text-muted);
  line-height: 1.8;
}

/* Story Section */
.story-image {
  position: relative;
}

.story-badge {
  position: absolute;
  bottom: -15px;
  left: -15px;
  padding: 16px 24px;
  background: var(--gradient-1);
  color: var(--text-light);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: var(--font-base);
  box-shadow: 0 8px 30px rgba(26, 35, 126, 0.3);
}

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

.stat-item h3 {
  font-size: var(--font-4xl);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.stat-item p {
  font-size: var(--font-sm);
  color: var(--text-muted);
  margin: 0;
}

/* CEO Message */
.ceo-message {
  position: relative;
  overflow: hidden;
}

.ceo-message::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/pattern-dots.png") repeat;
  opacity: 0.05;
}

.ceo-quote {
  font-size: var(--font-lg);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  padding: 20px 0;
  position: relative;
  font-style: italic;
}

.ceo-quote i {
  color: var(--secondary);
  font-size: var(--font-2xl);
  margin-right: 12px;
  opacity: 0.5;
}

/* CTA Section */
.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/pattern-dots.png") repeat;
  opacity: 0.05;
}

.cta-content h2 {
  font-size: var(--font-4xl);
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: var(--font-lg);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-download {
  background: var(--light-bg-2);
}
/* ==============================
   42. Social Share Buttons
   ============================== */
.share-buttons {
  display: flex;
  gap: 8px;
}

.share-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: var(--font-base);
  transition: var(--transition-base);
}

.share-btn:hover {
  transform: translateY(-3px);
  color: var(--text-light);
}

.share-btn.facebook {
  background: #1877f2;
}

.share-btn.twitter {
  background: #000;
}

.share-btn.linkedin {
  background: #0077b5;
}

.share-btn.whatsapp {
  background: #25d366;
}

.share-btn.email {
  background: #6b7280;
}

/* ==============================
   43. Gallery
   ============================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 14, 39, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-base);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item .gallery-overlay i {
  color: var(--text-light);
  font-size: var(--font-3xl);
}

/* ==============================
   44. Product Details
   ============================== */
.product-gallery {
  position: relative;
}

.product-main-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 16px;
}

.product-main-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: var(--transition-base);
}

.product-thumbnails {
  display: flex;
  gap: 12px;
}

.product-thumbnails img {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  cursor: pointer;
  opacity: 0.6;
  transition: var(--transition-base);
  border: 2px solid transparent;
}

.product-thumbnails img:hover,
.product-thumbnails img.active {
  opacity: 1;
  border-color: var(--primary);
}

.product-details-info .product-title {
  font-size: var(--font-3xl);
  margin-bottom: 16px;
}

.product-details-info .product-price {
  font-size: var(--font-3xl);
  font-weight: 700;
  color: var(--primary);
}

.product-details-info .product-price.original {
  font-size: var(--font-xl);
  color: var(--text-muted);
  text-decoration: line-through;
}

.product-detail.section-padding {
  padding: 40px 0 20px;
}

.product-tabs.section-padding {
  padding: 20px 0 40px;
}

.related-products.section-padding {
  padding: 40px 0 60px;
}

.product-tabs .nav-tabs {
  border-bottom: 2px solid var(--light-bg-2);
  gap: 0;
}

.product-tabs .nav-tabs .nav-link {
  border: none;
  color: #1f2937 !important;
  font-weight: 600;
  padding: 12px 24px;
  position: relative;
  background: transparent;
}

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

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

.product-tabs .nav-tabs .nav-link.active {
  color: var(--primary);
}

/* ==============================
   44. Location Page
   ============================== */
.location-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px 20px;
  background: #fff;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: var(--transition-base);
  border: 1px solid var(--light-bg-2);
  height: 100%;
}

.location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
}

.location-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  transition: var(--transition-base);
}

.location-icon i {
  font-size: 24px;
  color: #fff;
}

.location-card:hover .location-icon {
  transform: scale(1.1);
}

.location-name {
  font-size: var(--font-lg);
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--heading-color);
}

.location-count {
  font-size: var(--font-sm);
  color: var(--primary);
  font-weight: 500;
}

.city-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px 20px;
  background: #fff;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: var(--transition-base);
  border: 1px solid var(--light-bg-2);
  height: 100%;
}

.city-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
}

.city-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  transition: var(--transition-base);
}

.city-icon i {
  font-size: 20px;
  color: #fff;
}

.city-card:hover .city-icon {
  transform: scale(1.1);
}

.city-name {
  font-size: var(--font-base);
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--heading-color);
}

.city-info {
  font-size: var(--font-sm);
  color: var(--text-muted);
  margin: 0;
}

.section-desc {
  font-size: var(--font-lg);
  color: var(--text-muted);
  max-width: 600px;
  margin: 10px auto 0;
}

/* ==============================
   45. 404 Page
   ============================== */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 0;
  background: var(--dark-bg);
}

.error-page .error-code {
  font-size: 10rem;
  font-weight: 800;
  font-family: var(--font-heading);
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
}

.error-page h2 {
  font-size: var(--font-3xl);
  color: var(--text-light);
  margin-bottom: 16px;
}

.error-page p {
  font-size: var(--font-lg);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ==============================
   46. Tooltips
   ============================== */
.tooltip {
  font-family: var(--font-body);
  font-size: var(--font-xs);
}

.tooltip-inner {
  background: var(--dark-bg);
  color: var(--text-light);
  padding: 6px 12px;
  border-radius: 4px;
  box-shadow: var(--shadow-md);
}

.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before,
.bs-tooltip-top .tooltip-arrow::before {
  border-top-color: var(--dark-bg);
}

/* ==============================
   47. Alerts / Notifications
   ============================== */
.alert {
  border: none;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-size: var(--font-sm);
  display: flex;
  align-items: center;
  gap: 10px;
}

.alert-dismissible .btn-close {
  padding: 18px;
}

.alert-primary {
  background: rgba(26, 35, 126, 0.1);
  color: var(--primary);
}

.alert-secondary {
  background: rgba(255, 111, 0, 0.1);
  color: var(--secondary-dark);
}

.alert-success {
  background: rgba(16, 185, 129, 0.1);
  color: #065f46;
}

.alert-danger {
  background: rgba(239, 68, 68, 0.1);
  color: #991b1b;
}

.alert-warning {
  background: rgba(245, 158, 11, 0.1);
  color: #92400e;
}

.alert-info {
  background: rgba(0, 188, 212, 0.1);
  color: #0e7490;
}

/* ==============================
   48. Swiper Custom Styles
   ============================== */
.swiper-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.featured-prev,
.featured-next {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--text-light);
  border: 2px solid var(--light-bg-2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-base);
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
}

.featured-prev:hover,
.featured-next:hover {
  background: var(--gradient-1);
  color: var(--text-light);
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(26, 35, 126, 0.3);
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--secondary);
}

.testimonials-pagination {
  text-align: center;
  margin-top: 24px;
}
/* ==============================
   49. Responsive Design
   ============================== */
@media (max-width: 1199px) {
  .container {
    max-width: 960px;
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .section-title {
    font-size: var(--font-3xl);
  }
}

@media (max-width: 991px) {
  .container {
    max-width: 720px;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .section-title {
    font-size: var(--font-2xl);
  }

  .counter-number {
    font-size: var(--font-4xl);
  }

  .footer-main {
    padding: 60px 0 20px;
  }

  .hero-navigation {
    display: none;
  }

  .process-line {
    display: none;
  }

  .top-bar {
    display: none;
  }

  .stat-item h3 {
    font-size: var(--font-3xl);
  }
}

@media (max-width: 767px) {
  .container {
    max-width: 100%;
    padding: 0 20px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-desc {
    font-size: var(--font-base);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-actions .ms-3 {
    margin-left: 0 !important;
  }

  .section-title {
    font-size: var(--font-2xl);
  }

  .section-desc {
    font-size: var(--font-base);
  }

  .counter-number {
    font-size: var(--font-3xl);
  }

  .page-hero {
    padding: 120px 0 60px;
  }

  .page-hero h1 {
    font-size: var(--font-2xl);
  }

  .experience-badge {
    width: 90px;
    height: 90px;
    bottom: -10px;
    right: -10px;
  }

  .experience-badge .years {
    font-size: var(--font-lg);
  }

  .footer-main {
    padding: 40px 0 10px;
  }

  .breadcrumb {
    justify-content: center;
  }

  .pagination .page-link {
    padding: 8px 14px;
    font-size: var(--font-xs);
  }

  .product-sidebar {
    margin-bottom: 30px;
  }

  .products-toolbar .row > div {
    margin-bottom: 10px;
  }

  .sort-wrapper {
    justify-content: flex-start;
  }

  .error-page .error-code {
    font-size: 6rem;
  }

  .error-page h2 {
    font-size: var(--font-2xl);
  }

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

  .product-main-image img {
    height: 300px;
  }

  .whatsapp-float,
  .call-now-float {
    right: 16px;
    width: 48px;
    height: 48px;
    font-size: var(--font-xl);
  }

  .whatsapp-float {
    bottom: 90px;
  }

  .call-now-float {
    bottom: 150px;
  }

  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 42px;
    height: 42px;
    font-size: var(--font-base);
  }

  .cta-content h2 {
    font-size: var(--font-2xl);
  }

  .contact-form-wrapper,
  .contact-map-wrapper {
    padding: 20px;
  }

  .map-container iframe {
    height: 250px;
  }

  .product-tabs .nav-tabs .nav-link {
    padding: 10px 16px;
    font-size: var(--font-sm);
  }
}

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

  .stat-item h3 {
    font-size: var(--font-2xl);
  }

  .hero-subtitle {
    font-size: var(--font-xs);
  }

  .site-logo {
    height: 40px;
  }

  .footer-logo {
    height: 40px;
  }

  .marquee-item {
    height: 60px;
  }

  .marquee-item img {
    max-height: 40px;
  }

  .newsletter-title {
    font-size: var(--font-2xl);
  }

  .section-header .section-subtitle {
    font-size: var(--font-xs);
  }
}

/* ==============================
   50. Dark Section Styles
   ============================== */
.bg-dark {
  background: var(--dark-bg) !important;
}

.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark h4,
.bg-dark h5,
.bg-dark h6 {
  color: var(--text-light);
}

.bg-dark p {
  color: rgba(255, 255, 255, 0.7);
}

.bg-dark .section-subtitle {
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent-light);
}

.bg-dark .section-title::after {
  background: var(--gradient-accent);
}

/* ==============================
   51. Light Section Styles
   ============================== */
.bg-light {
  background: var(--light-bg) !important;
}

.bg-light h1,
.bg-light h2,
.bg-light h3,
.bg-light h4,
.bg-light h5,
.bg-light h6 {
  color: var(--text-dark);
}

/* ==============================
   52. Pricing Display
   ============================== */
.price-display {
  font-size: var(--font-3xl);
  font-weight: 700;
  color: var(--primary);
}

.price-display .currency {
  font-size: var(--font-xl);
  vertical-align: super;
}

.price-display .original {
  font-size: var(--font-lg);
  color: var(--text-muted);
  text-decoration: line-through;
  margin-left: 10px;
  font-weight: 400;
}

.price-display .discount-badge {
  display: inline-block;
  background: var(--secondary);
  color: var(--text-light);
  font-size: var(--font-xs);
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 10px;
  font-weight: 600;
}

/* ==============================
   53. Star Ratings
   ============================== */
.stars {
  display: flex;
  gap: 2px;
}

.stars i {
  color: #ffc107;
  font-size: var(--font-sm);
}

.stars i.empty {
  color: #d1d5db;
}

/* ==============================
   54. Gradient Text Utilities
   ============================== */
.gradient-text-1 {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-2 {
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-3 {
  background: var(--gradient-3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ==============================
   55. Blog Detail Page
   ============================== */
.blog-detail-header {
  margin-bottom: 30px;
}

.blog-detail-header .blog-title {
  font-size: var(--font-3xl);
  font-weight: 700;
  margin-bottom: 16px;
}

.blog-detail-header .blog-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.blog-detail-header .blog-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--font-sm);
  color: var(--text-muted);
}

.blog-detail-header .blog-meta span i {
  color: var(--secondary);
}

.blog-detail-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 30px;
}

.blog-detail-image img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
}

.blog-detail-content {
  font-size: var(--font-base);
  line-height: 1.9;
  color: var(--text-dark);
}

.blog-detail-content p {
  margin-bottom: 1.5rem;
}

.blog-detail-content h2,
.blog-detail-content h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.blog-detail-content ul,
.blog-detail-content ol {
  margin-bottom: 1.5rem;
  padding-left: 24px;
}

.blog-detail-content ul li,
.blog-detail-content ol li {
  margin-bottom: 8px;
  color: var(--text-muted);
}

.blog-detail-content ul li::marker {
  color: var(--primary);
}

.blog-detail-content blockquote {
  padding: 20px 24px;
  border-left: 4px solid var(--secondary);
  background: var(--light-bg);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 24px 0;
  font-style: italic;
  color: var(--text-dark);
  font-size: var(--font-lg);
}

.blog-detail-content img {
  border-radius: var(--radius-md);
  margin: 24px 0;
}

.blog-tags {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--light-bg-2);
}

.blog-tags span {
  font-weight: 600;
  font-size: var(--font-sm);
  color: var(--text-dark);
}

.blog-tags a {
  padding: 4px 14px;
  background: var(--light-bg-2);
  border-radius: 4px;
  font-size: var(--font-sm);
  color: var(--text-muted);
  transition: var(--transition-base);
}

.blog-tags a:hover {
  background: var(--primary);
  color: var(--text-light);
}

.blog-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--light-bg-2);
}

.blog-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--text-dark);
}

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

.blog-nav .next {
  text-align: right;
}

/* Comments Section */
.comments-section {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--light-bg-2);
}

.comments-section h3 {
  font-size: var(--font-2xl);
  margin-bottom: 24px;
}

.comment-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--light-bg-2);
}

.comment-avatar {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  object-fit: cover;
}

.comment-body h5 {
  font-size: var(--font-base);
  font-weight: 600;
  margin-bottom: 2px;
}

.comment-body .comment-date {
  font-size: var(--font-xs);
  color: var(--text-muted);
  margin-bottom: 8px;
  display: block;
}

.comment-body p {
  font-size: var(--font-sm);
  color: var(--text-muted);
  line-height: 1.7;
}
/* ==============================
   56. Service Details
   ============================== */
.service-detail-section .service-icon-large {
  width: 96px;
  height: 96px;
  border-radius: var(--radius-full);
  background: var(--gradient-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-4xl);
  color: var(--text-light);
  margin-bottom: 24px;
}

.service-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.service-features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--font-sm);
  color: var(--text-muted);
}

.service-features-list li i {
  color: var(--accent);
}

/* ==============================
   57. Project Details
   ============================== */
.project-detail-hero {
  position: relative;
  height: 500px;
  background-size: cover;
  background-position: center;
}

.project-info-sidebar {
  position: sticky;
  top: 100px;
}

.project-info-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--light-bg-2);
}

.project-info-item span:first-child {
  font-weight: 600;
  color: var(--text-dark);
}

.project-info-item span:last-child {
  color: var(--text-muted);
  font-size: var(--font-sm);
}

/* ==============================
   58. Career / Job Cards
   ============================== */
.job-card {
  padding: 24px;
  background: var(--text-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  margin-bottom: 16px;
}

.job-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-lg);
}

.job-card h4 {
  font-size: var(--font-lg);
  font-weight: 600;
  margin-bottom: 8px;
}

.job-card .job-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.job-card .job-meta span {
  font-size: var(--font-sm);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.job-card .job-meta span i {
  color: var(--secondary);
}

.job-card p {
  font-size: var(--font-sm);
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* ==============================
   59. File Upload Styles
   ============================== */
.file-upload-wrapper {
  position: relative;
}

.file-upload-wrapper input[type="file"] {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 2;
}

.file-upload-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 24px;
  border: 2px dashed #d1d5db;
  border-radius: var(--radius-md);
  background: var(--light-bg);
  color: var(--text-muted);
  font-size: var(--font-sm);
  transition: var(--transition-base);
  cursor: pointer;
}

.file-upload-label:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(26, 35, 126, 0.03);
}

.file-upload-label i {
  font-size: var(--font-2xl);
}

/* ==============================
   60. Dropdown Mega Menu Enhancement
   ============================== */
.dropdown:hover > .dropdown-menu {
  display: block;
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.dropdown-menu {
  display: block;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

@media (max-width: 991px) {
  .dropdown:hover > .dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: none;
    display: none;
  }

  .dropdown.show > .dropdown-menu {
    display: block;
  }
}

/* ==============================
   61. Box Shadow Utilities
   ============================== */
.shadow-hover {
  transition: var(--transition-base);
}

.shadow-hover:hover {
  box-shadow: var(--shadow-lg);
}

.rounded-4 {
  border-radius: var(--radius-lg) !important;
}

.shadow {
  box-shadow: var(--shadow-md) !important;
}

.shadow-lg {
  box-shadow: var(--shadow-lg) !important;
}

.shadow-xl {
  box-shadow: var(--shadow-xl) !important;
}

.text-gradient {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-secondary {
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  margin: 40px 0;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: var(--gradient-2);
  border-radius: 2px;
  margin: 0 auto 24px;
}

/* Progress Bars */
.progress {
  height: 8px;
  border-radius: 4px;
  background: var(--light-bg-2);
}

.progress-bar {
  background: var(--gradient-1);
  border-radius: 4px;
  position: relative;
  overflow: visible;
}

.progress-bar::after {
  content: attr(data-label);
  position: absolute;
  right: 0;
  top: -24px;
  font-size: var(--font-xs);
  font-weight: 600;
  color: var(--primary);
}

/* ==============================
   62. Registration Form
   ============================== */
.registration-form {
  padding: 40px;
  background: var(--text-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.registration-form h3 {
  font-size: var(--font-2xl);
  margin-bottom: 24px;
}

/* ==============================
   63. Page Header Actions
   ============================== */
.page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 20px 0;
  gap: 16px;
}

.page-header h3 {
  font-size: var(--font-2xl);
  margin: 0;
}

/* ==============================
   64. Search Info
   ============================== */
.search-info {
  padding: 16px 20px;
  background: var(--light-bg-2);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
}

.search-info h4 {
  font-size: var(--font-base);
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
}

.search-info .btn-outline-secondary {
  border-color: #d1d5db;
  color: var(--text-muted);
  padding: 4px 12px;
  font-size: var(--font-xs);
}

.search-info .btn-outline-secondary:hover {
  background: var(--text-muted);
  color: var(--text-light);
  border-color: var(--text-muted);
}

/* ==============================
   65. Additional Utilities
   ============================== */
.position-relative {
  position: relative;
}

.overflow-hidden {
  overflow: hidden;
}

.counter {
  display: inline-block;
}

.bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.bg-overlay + * {
  position: relative;
  z-index: 1;
}

.wishlist-btn {
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition-base);
}

.wishlist-btn:hover {
  color: #ef4444;
  transform: scale(1.1);
}

.wishlist-btn.active {
  color: #ef4444;
}

/* Product Gallery */
.main-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: #f8f9fa;
}

.main-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.main-image:hover img {
  transform: scale(1.02);
}

.gallery-trigger {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 45px;
  height: 45px;
  background: rgba(255,255,255,0.95);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
  z-index: 10;
  color: #1f2937;
  font-size: 16px;
}

.gallery-trigger:hover {
  background: #2563eb;
  color: #fff;
  transform: scale(1.1);
}

.thumbnails-row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 5px;
}

.thumb-item {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.thumb-item:hover {
  opacity: 0.85;
}

.thumb-item.active {
  border-color: #2563eb;
  opacity: 1;
}

.thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* QR Section */
.qr-section {
  border: 1px solid #e5e7eb;
}

.qr-section p {
  font-size: 14px;
  color: #374151;
}

#productQRCode img {
  margin: 0 auto;
  display: block;
}

#productQRCode canvas {
  margin: 0 auto;
  display: block;
}

/* Share Section */
.share-section {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.share-label {
  font-weight: 600;
  color: #374151;
  font-size: 14px;
}

.share-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
}

.share-icon:hover {
  transform: translateY(-2px);
  color: #fff;
  text-decoration: none;
}

.share-icon.facebook { background: #1877f2; }
.share-icon.twitter { background: #1da1f2; }
.share-icon.linkedin { background: #0a66c2; }
.share-icon.whatsapp { background: #25d366; }
.share-icon.email { background: #6b7280; }
