/* ======================================= 
    general 
======================================= */
:root {
  /* Font Families */
  --font-heading: "Montserrat", sans-serif;
  --font-body: "Inter", sans-serif;

  /* Font Weights */
  --thin: 200;
  --light: 300;
  --regular: 400;
  --medium: 500;
  --semibold: 600;
  --bold: 700;

  /* Color Palette */
  --primary: #2ecc71;
  --primary-light: #4cda85;
  --secondary: #7f8c8d;
  --dark: #2c3e50;
  --black: #000000;
  --bg: #f5f5f5;
  --white: #ffffff;
  --primary-dark: #27ae60;
  --dark-opacity: rgba(0, 0, 0, 0.6);
  --light-opacity: rgba(255, 255, 255, 0.1);
  --glass-effectR: rgba(43, 255, 0, 0.08);
  --glass-effect: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.1);
  --ps-blue: #0070d2; /* PlayStation-inspired blue for badges */

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-xxl: 3rem;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
  --shadow-inner: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* *,
*::before,
*::after {
    box-sizing: border-box;
    outline: 2px solid lime;
}   */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  overflow-x: hidden;
}
.logged-in-only {
  display: none;
}
.highlight {
  color: var(--primary);
}

/* Button styles */

.premium-button {
  position: fixed;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border: none;
  outline: none;
  z-index: 900;
}

/* Back to Top button */
#nav-btn-back-to-top {
  bottom: 100px;
  background-color: var(--primary);
  color: var(--dark);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
}

#nav-btn-back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

#nav-btn-back-to-top:hover {
  background-color: var(--primary-light);
  transform: scale(1.1);
  color: var(--white);
}

/* Back to Home button */
#nav-btn-back-to-home {
  bottom: 20px;
  background-color: var(--primary);
  color: var(--dark);
}

#nav-btn-back-to-home:hover {
  background-color: var(--primary-light);
  transform: scale(1.1);
  color: var(--white);
}

/* Icon styles */
.premium-button i {
  font-size: 20px;
}

/* ======================================= 
Pop up sign in/ chatbot
======================================= */
/* Popup Styling */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark-opacity);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease-in-out;
}

.popup-content {
  background: var(--white);
  padding: var(--space-lg);
  border-radius: 12px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transform: translateY(-20px);
  animation: slideIn 0.3s var(--dropdown-transition);
}

.popup-title {
  font-family: var(--font-heading);
  font-weight: var(--semibold);
  color: var(--dark);
  margin-bottom: var(--space-md);
}

.popup-message {
  font-family: var(--font-body);
  font-weight: var(--regular);
  color: var(--secondary);
  margin-bottom: var(--space-lg);
}

.popup-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
}

.popup-signin-btn {
  background: var(--primary);
  color: var(--white);
  padding: var(--space-sm) var(--space-lg);
  border-radius: 8px;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: var(--medium);
  transition: background 0.3s ease, transform 0.2s ease;
}

.popup-signin-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.popup-cancel-btn {
  background: var(--light-opacity);
  color: var(--dark);
  padding: var(--space-sm) var(--space-lg);
  border: 1px solid var(--secondary);
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: var(--medium);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.popup-cancel-btn:hover {
  background: var(--bg);
  transform: translateY(-2px);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
/*=============== chatbot*/

/* ======================================= 
HEADER STYLES 
======================================= */
/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-xl);
  background: transparent;
  /* box-shadow: var(--shadow-md); */
  transition: all var(--transition-normal);
  /* backdrop-filter: blur(10px); */
  -webkit-backdrop-filter: blur(10px);
  /* border-bottom: 1px solid var(--glass-border); */
}

header.scrolled {
  padding: var(--space-sm) var(--space-xl);
  background: rgba(44, 62, 80, 0.6);
}

/* Logo Styles */
.logo {
  display: flex;
  align-items: center;
  z-index: 1001;
}

.logo a {
  display: flex;
  align-items: center;
}

.default-logo {
  height: 50px;
  transition: height var(--transition-normal);
}

.mobile-logo {
  display: none;
  height: 62px;
}

/* Desktop Navigation */
.desktop-nav {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: var(--space-lg);
  margin-right: var(--space-lg);
}

.nav-links li {
  position: relative;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: var(--medium);
  font-size: 0.95rem;
  padding: var(--space-sm) var(--space-md);
  border-radius: 6px;
  transition: all var(--transition-fast);
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.nav-links a:not(.active):hover {
  color: var(--primary-light);
  background: var(--light-opacity);
}

.nav-links a.active {
  color: var(--primary);
  background: var(--light-opacity);
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 220px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: var(--space-md) 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-normal);
  z-index: 1000;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu a {
  color: var(--dark);
  padding: var(--space-sm) var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
  border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
  background: rgba(46, 204, 113, 0.08);
  color: var(--primary-dark);
  border-left-color: var(--primary);
}

.dropdown-menu i {
  width: 18px;
  text-align: center;
  color: var(--primary);
}

/* Explore Button */
.explore-container {
  position: relative;
}

.explore-btn {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: var(--space-sm) var(--space-md);
  font-weight: var(--medium);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.explore-btn:hover {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.social-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 280px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: var(--space-md);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-normal);
  z-index: 1000;
}

.explore-container:hover .social-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-section {
  margin-bottom: var(--space-md);
}

.dropdown-section:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding-bottom: var(--space-md);
}

.section-title-explore {
  display: block;
  font-size: 0.8rem;
  font-weight: var(--semibold);
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: var(--space-sm);
}

.social-dropdown ul {
  list-style: none;
}

.social-dropdown li {
  margin-bottom: var(--space-xs);
}

.social-dropdown a {
  color: var(--dark);
  text-decoration: none;
  padding: var(--space-sm) var(--space-md);
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: var(--space-md);
  transition: all var(--transition-fast);
  font-size: 0.95rem;
}

.social-dropdown a:hover {
  background: rgba(46, 204, 113, 0.08);
  color: var(--primary-dark);
}

.social-dropdown i {
  width: 18px;
  text-align: center;
  color: var(--primary);
}

/* Download Modal */
.download-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.download-modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--white);
  border-radius: 16px;
  padding: var(--space-xl);
  width: 90%;
  max-width: 450px;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: scale(0.9);
  transition: transform var(--transition-normal);
}

.download-modal.active .modal-content {
  transform: scale(1);
}

.close-modal {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--secondary);
  transition: color var(--transition-fast);
}

.close-modal:hover {
  color: var(--dark);
}

.modal-title {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
  color: var(--dark);
}

.highlight {
  color: var(--primary);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  margin-bottom: var(--space-xs);
  font-size: 0.9rem;
  color: var(--dark);
  font-weight: var(--medium);
}

.form-group input {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.2);
}

.download-submit {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: var(--space-sm) var(--space-lg);
  font-weight: var(--medium);
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition-normal);
  width: 100%;
  margin-top: var(--space-md);
}

.download-submit:hover {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: var(--space-sm);
  z-index: 1001;
  position: relative;
  width: 40px;
  height: 40px;
}

.menu-icon,
.close-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity var(--transition-fast);
}

.close-icon {
  opacity: 0;
}

.mobile-menu-btn.active .menu-icon {
  opacity: 0;
}

.mobile-menu-btn.active .close-icon {
  opacity: 1;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 400px;
  height: 100vh;
  background: var(--dark);
  z-index: 1000;
  padding: var(--space-xxl) var(--space-xl) var(--space-xl);
  overflow-y: auto;
  transition: right var(--transition-slow);
  display: flex;
  flex-direction: column;
}

.mobile-menu.active {
  right: 0;
}

.mobile-nav-links {
  list-style: none;
  margin-bottom: var(--space-xl);
}

.mobile-nav-links li {
  margin-bottom: var(--space-sm);
}

.mobile-nav-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: var(--medium);
  font-size: 1.1rem;
  padding: var(--space-sm) 0;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: color var(--transition-fast);
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  color: var(--primary);
}

.mobile-explore {
  margin-top: -1rem;
}

.mobile-explore-btn {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: var(--space-md) var(--space-lg);
  font-weight: var(--medium);
  font-size: 1rem;
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  margin-bottom: var(--space-md);
}

.mobile-social-dropdown {
  list-style: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
}

.mobile-social-dropdown.active {
  max-height: 500px;
}

.mobile-social-dropdown li {
  margin-bottom: var(--space-xs);
}

.mobile-social-dropdown a {
  color: var(--white);
  text-decoration: none;
  padding: var(--space-sm) var(--space-md);
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: var(--space-md);
  transition: all var(--transition-fast);
  font-size: 0.95rem;
}

.mobile-social-dropdown a:hover {
  background: var(--light-opacity);
  color: var(--primary-light);
}

.mobile-social-dropdown i {
  width: 18px;
  text-align: center;
  color: var(--primary);
}

.mobile-download-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.mobile-download-modal.active {
  opacity: 1;
  visibility: visible;
}

.mobile-modal-content {
  background: var(--white);
  border-radius: 16px;
  padding: var(--space-xl);
  width: 90%;
  max-width: 450px;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: scale(0.9);
  transition: transform var(--transition-normal);
  top: 20rem;
}

.mobile-download-modal.active .mobile-modal-content {
  transform: scale(1);
}

.mobile-close-modal {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--secondary);
  transition: color var(--transition-fast);
}

.mobile-close-modal:hover {
  color: var(--dark);
}

.mobile-download-submit {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: var(--space-sm) var(--space-lg);
  font-weight: var(--medium);
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition-normal);
  width: 100%;
  margin-top: var(--space-md);
}

.mobile-download-submit:hover {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  header {
    padding: var(--space-md) var(--space-lg);
    background: var(--dark);
    height: 80px;
  }

  .nav-links {
    gap: var(--space-md);
    margin-right: var(--space-md);
  }

  .nav-links a {
    font-size: 0.9rem;
    padding: var(--space-xs) var(--space-sm);
  }
}

@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .explore-container {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .default-logo {
    display: none;
  }

  .mobile-logo {
    display: block;
  }

  header {
    padding: var(--space-sm) var(--space-md);
    background: var(--dark);
  }

  header.scrolled {
    padding: var(--space-xs) var(--space-md);
  }

  .content {
    padding: 100px var(--space-md) var(--space-md);
  }

  .content h1 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .header {
    background: var(--dark);
  }
  .mobile-menu {
    width: 100%;
    max-width: none;
  }

  .logo {
    flex: 1;
  }

  .content h1 {
    font-size: 1.75rem;
  }
}

/* Utility Classes */
.logged-in-only {
  display: none;
}

.logged-out-only {
  display: block;
}

body.logged-in .logged-in-only {
  display: block;
}

body.logged-in .logged-out-only {
  display: none;
}

.mobile-menu-open {
  overflow: hidden;
}

/* ========== Hero ========== */

/* ========== Hero ========== */
.hero {
  top: 5rem;
  position: relative;
  height: 75vh;
  max-height: 600px;
  min-height: 400px;
  margin-top: -100px;
  overflow: hidden;
  z-index: 1;
}

.slideshow {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  background-color: var(--dark);
  overflow: hidden;
}

.slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

/* Video Background */
.video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: 100%;
  z-index: -1;
  object-fit: cover;
  margin-top: -10%;
  overflow: visible;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 3;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
  color: var(--white);
  transform: translateY(0);
  transition: transform 1s ease, opacity 1s ease;
}

.slide:not(.active) .hero-content {
  transform: translateY(20px);
  opacity: 0;
}

/* Product Showcases */
.laptop-showcase,
.printer-showcase,
.monitor-showcase,
.storage-showcase {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  gap: 3rem;
}

.product-display,
.printer-display,
.monitor-display,
.storage-display {
  flex: 1;
  text-align: center;
}

.content-column,
.printer-content,
.monitor-content,
.storage-content {
  flex: 1;
}

.product-image {
  max-height: 400px;
  width: auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease;
}

.product-image:hover {
  transform: scale(1.03);
}

/* Brand Logos */

/* Base logo style - acts as default */
.brand-logo {
  height: auto;
  width: auto;
  max-height: 100px; /* Default max height */
  max-width: 100px;
  object-fit: contain;
  opacity: 0.8;
  transition: all 0.3s ease;
  filter: grayscale(20%);
}

.brand-logos {
  display: flex;
  gap: 2rem;
  margin: 1.2rem 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}

.brand-logos img {
  height: auto;
  width: 80px;
  max-width: 100px;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.brand-logos img:hover {
  opacity: 1;
}
.brand-logo.hp {
  width: 40px;
}
.brand-logo.mecer {
  width: 100px;
}
.brand-logo.pantum {
  width: 100px;
}
.brand-logo.asus {
  width: 100px;
}
.brand-logos.two {
  margin-top: -2.5rem;
  margin-bottom: -0.8rem;
}
/* Company Logo */
.company-logo {
  max-height: 50px;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.company-logo:hover {
  transform: scale(1.05);
}

/* Logo Wrapper */
.logo-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  gap: 12px;
  margin-top: 10%;
}

.welcome-text {
  color: white;
  font-size: 1rem;
  font-weight: var(--medium);
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
  position: relative;
  padding-right: 12px;
}

.welcome-text::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 60%;
  width: 2px;
  background: rgba(255, 255, 255, 0.3);
}

/* Headings and Text */
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: var(--semibold);
  line-height: 1.2;
  margin-bottom: 0.8rem;
  max-width: 600px;
}

.hero h1 span {
  color: var(--primary);
}

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.1rem);
  margin-bottom: 2rem;
  max-width: 600px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  font-weight: var(--medium);
}

/* Buttons */
.hero-btn {
  background-color: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 6px;
  padding: 0.8rem 2rem;
  font-family: var(--font-body);
  font-weight: var(--medium);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slide .slide-2 {
  margin-top: 30rem;
}
.slide-2 h1 {
  font-size: 3rem;
}
.slide-2 .content-column {
  margin-bottom: -5%;
}

.slide-3 .printer-content {
  margin-bottom: -7%;
}
.slide-3 h1 {
  font-size: 3rem;
}
.slide-3 p {
  margin: 0%;
}
.slide-3 .product-image {
  width: 90%;
}

.slide-5 .product-image {
  margin-top: 1rem;
  width: 120%;
  margin-left: -3rem;
}

.monitor-content .product-image {
  margin-top: 6%;
  height: 90%;
}

.storage-content h1 {
  font-size: 3rem;
}
.storage-content p {
  margin-bottom: 0%;
}
.storage-content {
  margin-bottom: -4%;
}

.btn-1 {
  background-color: var(--primary);
  margin-bottom: 2rem;
}
.btn-2 {
  background-color: var(--primary);
}
.btn-3 {
  background-color: var(--primary);
}
.btn-4 {
  background-color: var(--primary);
}
.btn-5 {
  background-color: var(--primary);
}

.btn-1:hover {
  background-color: transparent;
  color: var(--primary);
}
.btn-2:hover {
  background-color: transparent;
  color: var(--primary);
}
.btn-3:hover {
  background-color: transparent;
  color: var(--primary);
}
.btn-4:hover {
  background-color: transparent;
  color: var(--primary);
}
.btn-5:hover {
  background-color: transparent;
  color: var(--primary);
}

.hero-btn:hover {
  background: tr;
  transform: translateY(-2px);
}

/* Slide Indicators */
.slide-indicators {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.slide-indicator {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  border: none;
  padding: 0;
  position: relative;
  overflow: hidden;
  outline: none;
}

.slide-indicator::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--primary);
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.slide-indicator.active::before,
.slide-indicator:hover::before {
  transform: translate(-50%, -50%) scale(1);
}

.slide-indicator.active {
  transform: scale(1);
  box-shadow: 0 0 0 2px var(--white), 0 0 0 4px var(--primary);
}

.slide-indicator:hover {
  transform: scale(1.1);
}

.slide-indicator.active {
  animation: pulse 2s infinite;
}

.slide-2 .product-image {
  width: 110%; /* Slightly wider */
  max-height: none; /* Remove height restriction */
  margin-left: -8%;
}

/* Responsive Adjustments */

@media (max-width: 1200px) {
  /*hero*/
  .video-bg {
    top: 20rem;
  }
  .product-image {
    height: 300px;
  }
  /* .hero h1 {
    font-size: 90%;
  } */
}

@media (max-width: 1024px) {
  .hero {
    height: 65vh;
  }

  .laptop-showcase,
  .printer-showcase,
  .monitor-showcase,
  .storage-showcase {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 500px;
    margin-top: -2rem;
  }

  .laptop-showcase,
  .printer-showcase,
  .monitor-showcase,
  .storage-showcase {
    flex-direction: column;
    text-align: left;
  }
  /*  */

  /*  */
  .product-display,
  .printer-display,
  .monitor-display,
  .storage-display {
    margin-bottom: 2rem;
    padding-right: 0;
  }

  .brand-logos {
    justify-content: left;
  }

  .logo-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .welcome-text {
    padding-right: 0;
    padding-bottom: 8px;
  }

  .welcome-text::after {
    height: 2px;
    width: 40px;
    top: 100%;
    left: 0;
    transform: none;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 60vh;
    min-height: 450px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .slide-3 h1 {
    margin-top: 3rem;
  }
  .welcome-text.mobile {
    margin-top: 4rem;
  }
  .video-bg {
    top: 17rem;
    height: 110%;
  }
  .hero-content {
    padding: 0 1rem;
  }

  .brand-logo {
    height: 30px;
    width: auto;
  }

  .hero-btn {
    padding: 0.6rem 1.5rem;
  }
  .video-bg {
    margin-top: 0%;
  }
  .product-image {
    display: none;
  }
  .content-column,
  .printer-content,
  .monitor-content,
  .storage-content {
    justify-content: left;
    text-align: left;
  }
  .brand-logos.two {
    margin-top: 0.8rem;
    margin-bottom: -0.8rem;
  }
  .laptop-showcase {
    margin-top: -10rem;
  }
  .laptop-showcase p {
    margin-bottom: -2rem;
  }
  .printer-showcase {
    margin-top: 0rem;
  }
  .monitor-showcase {
    margin-top: -8rem;
  }
  .hero-content.content-1 {
    margin-top: -7rem;
  }
  .brand-logo.asus {
    margin-top: -5rem;
  }
  .brand-logo.epson,
  .brand-logo.hp{
    margin-top: -2rem;
  }
}
/* ==================== */

/* ========== Explore Section ========== */
.explore-omni {
  margin-top: 3.5rem;
  padding: 4rem 1rem;
  background: #fff;
  height: 55vh;
}

.onmi-explore-container {
  max-width: 1400px; /* Increased for larger screens */
  margin: 0 auto;
  padding: 0 1rem;
}

.section-title {
  text-align: center;
  font-size: clamp(1.75rem, 3vw, 2.5rem); /* Responsive font size */
  color: #2c3e50;
  margin-bottom: 3rem;
  font-weight: 600;
  line-height: 1.3;
  margin-top: -1rem;
}

/* Grid Layout */
.omni-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  justify-items: center; /* Center items in their grid cells */
}

/* Circle Items */
.omni-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
  width: 100%;
  max-width: 180px; /* Limit maximum size */
}

.omni-circle {
  width: clamp(80px, 10vw, 120px); /* Responsive circle size */
  height: clamp(80px, 10vw, 120px); /* Maintains aspect ratio */
  border-radius: 50%;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.omni-circle i {
  font-size: clamp(1.5rem, 3vw, 2.5rem); /* Responsive icon size */
  color: #2c3e50;
  transition: all 0.3s ease;
}

.omni-item h3 {
  color: #2c3e50;
  font-size: clamp(0.9rem, 1.5vw, 1.1rem); /* Responsive text */
  font-weight: 500;
  margin: 0;
  text-align: center;
  line-height: 1.4;
}

/* Hover Effects */
.omni-item:hover {
  transform: translateY(-5px);
}

.omni-item:hover .omni-circle {
  background: #2ecc71;
  border-color: #2ecc71;
}

.omni-item:hover .omni-circle i {
  color: white;
}

.omni-item:hover h3 {
  color: #2ecc71;
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
  .omni-grid {
    gap: 1.5rem;
  }
}

@media (max-width: 992px) {
  .omni-grid {
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  }
}

@media (max-width: 768px) {
  .explore-omni {
    padding: 3rem 1rem;
    background: linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
  }

  .omni-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .omni-circle {
    width: 90px;
    height: 90px;
  }
}

@media (max-width: 576px) {
  .explore-omni {
    height: 75vh;
    margin-top: 5rem;
    margin-bottom: -5rem;
  }

  .omni-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .omni-circle {
    width: 80px;
    height: 80px;
  }

  .omni-item h3 {
    font-size: 0.9rem;
  }
}

@media (max-width: 400px) {
  .omni-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .omni-circle {
    width: 70px;
    height: 70px;
  }
}
/* @media (max-width: 370px) {
  .ps-content{
    position: relative;
    top: 4rem !important;
  }
} */

/* ===================================
Brands 
===================================== */
.premium-slider {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  font-family: var(--font-body);
  z-index: 100;
}

.ps-slides {
  position: relative;
  width: 100%;
  height: 500px;
  transition: var(--transition-slow);
}

.ps-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-slow);
}

.ps-slide.ps-active {
  opacity: 1;
  visibility: visible;
}

.ps-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  overflow: hidden;
}

.ps-video {
  width: 100vw;
  height: 100%;
  object-fit: cover;
}

.ps-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(46, 204, 113, 0.3),
    rgba(0, 0, 0, 0.6)
  ); /* Incorporated primary color tint */
}

.ps-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: var(--space-xl);
  max-width: 1200px;
  margin: 0 auto;
}

.ps-text {
  flex: 1;
  color: var(--white);
  max-width: 50%;
}

.ps-logo {
  max-width: 150px;
  margin-bottom: var(--space-lg);
}

.ps-category {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--space-sm);
  display: block;
  font-weight: var(--medium);
  color: #00ff6e;
}

.ps-title {
  font-size: 2.5rem;
  font-weight: var(--bold);
  margin-bottom: var(--space-lg);
  font-family: var(--font-heading);
}

.ps-highlight {
  color: #00ff6e;
}

.ps-divider {
  display: flex;
  align-items: center;
  margin: var(--space-lg) 0;
}

.ps-line {
  width: 50px;
  height: 2px;
  background: var(--white);
  margin-right: var(--space-sm);
}

.ps-dot {
  width: 8px;
  height: 8px;
  background: var(--white);
  border-radius: 50%;
}

.ps-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: var(--space-lg);
  font-weight: var(--regular);
}

.ps-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.ps-feature {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  font-weight: var(--regular);
}

.ps-feature-icon {
  font-size: 1.2rem;
  margin-right: var(--space-sm);
  color: var(--primary);
}

.ps-cta {
  display: inline-flex;
  align-items: center;
  padding: var(--space-sm) var(--space-lg);
  background: var(--primary);
  color: var(--white);
  text-decoration: none;
  border-radius: 5px;
  font-weight: var(--semibold);
  transition: var(--transition-normal);
}

.ps-cta:hover {
  background: var(--primary-dark);
  box-shadow: var(--shadow-sm);
}

.ps-cta-arrow {
  margin-left: var(--space-sm);
}

.ps-media {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.ps-product-image {
  max-width: 100%;
  max-height: 400px;
  object-fit: contain;
}

.ps-performance-badge,
.ps-compatibility-badge {
  position: absolute;
  bottom: var(--space-md);
  right: var(--space-md);
  background: var(--glass-effectR);
  color: var(--white);
  padding: var(--space-sm);
  border-radius: 8px; /* Softer corners */
  text-align: center;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px); /* Enhanced blur */
  box-shadow: var(--shadow-sm); /* Added subtle shadow */
  transition: var(--transition-fast);
}

.ps-performance-badge:hover,
.ps-compatibility-badge:hover {
  transform: scale(1.05); /* Subtle hover effect */
}

.ps-performance-badge.mobile {
  bottom: 6rem;
}

.ps-badge-value {
  font-size: 1.5rem;
  font-weight: var(--bold);
}

.ps-badge-unit {
  font-size: 1rem;
  font-weight: var(--regular);
}

.ps-badge-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: var(--medium);
}

.ps-compatibility-badge {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(0, 112, 210, 0.2); /* PS-inspired blue tint */
  border-color: rgba(0, 112, 210, 0.3);
}

.ps-compatibility-badge .ps-badge-icon {
  color: var(--ps-blue);
}

.ps-compatibility-badge .ps-badge-text {
  color: var(--white);
}

.ps-product-range {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.ps-product-chip {
  background: var(--glass-effect);
  color: var(--white);
  padding: var(--space-xs) var(--space-sm);
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: var(--medium);
  border: 1px solid var(--glass-border);
}

.ps-navigation {
  position: absolute;
  top: var(--space-md); /* Moved to top */
  right: 2%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--space-sm);
}

.ps-prev-btn,
.ps-next-btn {
  background: var(--glass-effect);
  color: var(--white);
  border: 1px solid var(--glass-border);
  padding: var(--space-sm);
  cursor: pointer;
  border-radius: 50%;
  transition: var(--transition-normal);
  font-size: 1rem;
  height: 60px;
  width: 60px;
}

.ps-prev-btn:hover,
.ps-next-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
}
/* logo */
.ps-slide[data-slide="1"] .ps-logo {
  max-width: 120px;
}
.ps-slide[data-slide="2"] .ps-logo {
  max-width: 100px;
}
.ps-slide[data-slide="3"] .ps-logo {
  max-width: 120px;
}
.ps-slide[data-slide="4"] .ps-logo {
  max-width: 140px;
}
.ps-slide[data-slide="5"] .ps-logo {
  max-width: 120px;
  margin-bottom: -0.3rem;
}
.ps-slide[data-slide="6"] .ps-logo {
  max-width: 120px;
}
.ps-slide[data-slide="7"] .ps-logo {
  max-width: 50px;
}
.ps-slide[data-slide="8"] .ps-logo {
  max-width: 120px;
  margin-bottom: -2px;
}
.ps-slide[data-slide="9"] .ps-logo {
  max-width: 100px;
  margin-bottom: -6px;
}
/* product photo */
.ps-slide[data-slide="5"] .ps-product-image {
  max-height: 450px;
}
.ps-slide[data-slide="7"] .ps-product-image {
  max-height: 300px;
}
.ps-slide[data-slide="9"] .ps-product-image {
  max-height: 450px;
}

/* badges */
.ps-slide[data-slide="1"] .ps-performance-badge.mobile {
  bottom: 12rem;
  right: 2.8rem;
}
.ps-slide[data-slide="1"] .ps-compatibility-badge {
  bottom: 8rem;
  right: -1.8rem;
}
.ps-slide[data-slide="2"] .ps-performance-badge.mobile {
  margin-bottom: -1rem;
}
.ps-slide[data-slide="3"] .ps-performance-badge.mobile {
  bottom: 12rem;
  right: 0.5rem;
}
.ps-slide[data-slide="3"] .ps-compatibility-badge {
  bottom: 8rem;
  right: -3rem;
}
.ps-slide[data-slide="4"] .ps-performance-badge.mobile {
  margin-bottom: -1rem;
}
.ps-slide[data-slide="5"] .ps-performance-badge.mobile {
  bottom: 13rem;
}
.ps-slide[data-slide="5"] .ps-compatibility-badge {
  bottom: 8.9rem;
  right: -2.5rem;
}
.ps-slide[data-slide="7"] .ps-performance-badge.mobile {
  bottom: 13rem;
}
.ps-slide[data-slide="7"] .ps-compatibility-badge {
  bottom: 8.9rem;
  right: -0.5rem;
}
.ps-slide[data-slide="8"] .ps-performance-badge.mobile {
  bottom: 15rem;
}
.ps-slide[data-slide="8"] .ps-compatibility-badge {
  bottom: 4rem;
  right: -2rem;
}
.ps-slide[data-slide="9"] .ps-performance-badge.mobile {
  bottom: 17rem;
  right: 2rem;
}
.ps-slide[data-slide="9"] .ps-compatibility-badge {
  bottom: 13rem;
  right: 0rem;
}
/* Mobile Styles */
@media (max-width: 768px) {
  .ps-slides {
    height: fit-content;
    min-height: 900px;
  }

  .ps-content {
    flex-direction: column;
    padding: var(--space-md);
    gap: var(--space-lg); /* Added gap for better spacing */
  }

  .ps-text {
    max-width: 100%;
    text-align: center;
    margin-bottom: var(--space-lg);
    padding: var(--space-md); /* Added padding for premium feel */
    background: rgba(255, 255, 255, 0.05); /* Subtle glassmorphism */
    border-radius: 12px; /* Rounded corners */
    backdrop-filter: blur(5px); /* Blur effect */
    border: 1px solid var(--glass-border);
  }

  .ps-logo {
    max-width: 120px;
    margin: 0 auto var(--space-md);
  }

  .ps-title {
    font-size: 1.8rem;
  }

  .ps-description {
    font-size: 1rem;
  }

  .ps-features {
    grid-template-columns: 1fr;
    gap: var(--space-sm); /* Tighter gap for mobile */
  }

  .ps-media {
    width: 100%;
    justify-content: center;
    padding: var(--space-md); /* Added padding */
    background: rgba(255, 255, 255, 0.05); /* Matching glassmorphism */
    border-radius: 12px;
    backdrop-filter: blur(5px);
    border: 1px solid var(--glass-border);
  }

  .ps-product-image {
    max-height: 250px;
  }

  .ps-performance-badge,
  .ps-compatibility-badge {
    bottom: var(--space-sm);
    right: var(--space-sm);
    padding: var(--space-xs);
    border-radius: 8px; /* Consistent with upgraded styling */
    backdrop-filter: blur(10px);
  }

  .ps-prev-btn,
  .ps-next-btn {
    padding: var(--space-xs);
    font-size: 0.8rem;
    height: 50px;
    width: 50px;
    box-shadow: var(--shadow-sm); /* Added shadow for premium feel */
  }

  .ps-navigation {
    top: var(--space-sm); /* Keep at top on mobile too, but adjust if needed */
    right: 50%; /* Center on mobile */
    transform: translateX(50%);
    gap: var(--space-lg); /* Wider gap for touch */
  }
}

@media (max-width: 480px) {
  .ps-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  .ps-divider {
    margin: var(--space-md) 0;
  }
  .ps-description {
    font-size: 0.9rem;
    text-align: left;
    justify-content: left;
    margin-bottom: 10px;
  }

  .ps-cta {
    padding: var(--space-xs) var(--space-md);
    font-size: 0.9rem;
    width: 100%; /* Full width for premium CTA */
    justify-content: center;
  }

  .ps-product-chip {
    font-size: 0.8rem;
  }
  .ps-navigation {
    gap: 15rem;
  }

  .premium-slider:has(.ps-slide[data-slide="1"].ps-active) .ps-navigation {
    top: 2rem; /* Adjusted for top positioning */
  }
  .premium-slider:has(.ps-slide[data-slide="2"].ps-active) .ps-navigation {
    top: 2rem;
  }
  .premium-slider:has(.ps-slide[data-slide="3"].ps-active) .ps-navigation {
    top: 2rem;
  }
  .premium-slider:has(.ps-slide[data-slide="4"].ps-active) .ps-navigation {
    top: 2rem;
  }
  .premium-slider:has(.ps-slide[data-slide="5"].ps-active) .ps-navigation {
    top: 2rem;
  }
  .premium-slider:has(.ps-slide[data-slide="6"].ps-active) .ps-navigation {
    top: 2rem;
  }
  .premium-slider:has(.ps-slide[data-slide="7"].ps-active) .ps-navigation {
    top: 2rem;
  }
  .premium-slider:has(.ps-slide[data-slide="8"].ps-active) .ps-navigation {
    top: 2rem;
  }
  .premium-slider:has(.ps-slide[data-slide="9"].ps-active) .ps-navigation {
    top: 2rem;
  }
  /* badges */
  .ps-slide[data-slide="1"] .ps-compatibility-badge {
    bottom: 3rem;
    right: 13rem;
  }
  .ps-slide[data-slide="2"] .ps-compatibility-badge {
    bottom: 8rem;
    right: 13rem;
  }
  .ps-slide[data-slide="2"] .ps-performance-badge.mobile {
    bottom: 7rem;
  }
  .ps-slide[data-slide="3"] .ps-compatibility-badge {
    bottom: 1rem;
    right: 13rem;
  }
  .ps-slide[data-slide="3"] .ps-performance-badge.mobile {
    bottom: 7rem;
  }
  .ps-slide[data-slide="4"] .ps-compatibility-badge {
    bottom: 8rem;
    right: 13rem;
  }
  .ps-slide[data-slide="4"] .ps-performance-badge.mobile {
    bottom: 7rem;
  }
  .ps-slide[data-slide="5"] .ps-compatibility-badge {
    bottom: 8rem;
    right: 13rem;
  }
  .ps-slide[data-slide="5"] .ps-performance-badge.mobile {
    bottom: 7rem;
  }
  .ps-slide[data-slide="7"] .ps-compatibility-badge {
    bottom: 4rem;
    right: 17rem;
  }
  .ps-slide[data-slide="7"] .ps-performance-badge.mobile {
    bottom: 13rem;
    color: var(--dark);
  }
  .ps-slide[data-slide="8"] .ps-compatibility-badge {
    bottom: 4rem;
    right: 17rem;
  }
  .ps-slide[data-slide="8"] .ps-performance-badge.mobile {
    bottom: 9rem;
  }
  .ps-slide[data-slide="9"] .ps-compatibility-badge {
    bottom: 3rem;
    right: 17rem;
  }
  .ps-slide[data-slide="9"] .ps-performance-badge.mobile {
    bottom: 12rem;
  }
  /* products */
  .ps-slide[data-slide="1"] .ps-media {
    margin-top: -2rem;
  }
  .ps-slide[data-slide="2"] .ps-media {
    margin-top: -1.5rem;
  }
  .ps-slide[data-slide="3"] .ps-media {
    margin-top: -2rem;
  }
  .ps-slide[data-slide="5"] .ps-media {
    margin-top: -2rem;
  }
  .ps-slide[data-slide="7"] .ps-media {
    margin-top: -2rem;
  }
  .ps-slide[data-slide="8"] .ps-media {
    margin-top: -2rem;
  }
  .ps-slide[data-slide="9"] .ps-media {
    margin-top: -2rem;
  }
  .ps-performance-badge.mobile {
    bottom: 15rem;
  }
  .ps-compatibility-badge.mobile {
    bottom: 10rem;
  }
  .ps-slide[data-slide="1"] .ps-product-image {
    margin-top: -3rem;
    max-height: 400px;
  }
  .ps-slide[data-slide="2"] .ps-product-image {
    max-height: 300px;
    margin-top: -2rem;
  }
  .ps-slide[data-slide="3"] .ps-product-image {
    max-height: 300px;
    margin-top: -2rem;
  }
  .ps-slide[data-slide="4"] .ps-product-image {
    max-height: 300px;
    top: -0.5rem;
    position: relative;
  }
  .ps-slide[data-slide="5"] .ps-product-image {
    max-height: 500px;
    margin-top: -5rem;
  }
  .ps-slide[data-slide="6"] .ps-product-image {
    max-height: 400px;
    margin-top: -2rem;
  }
  .ps-slide[data-slide="7"] .ps-product-image {
    max-height: 400px;
    margin-top: -0.5rem;
  }
  .ps-slide[data-slide="8"] .ps-product-image {
    max-height: 500px;
    margin-top: -1rem;
  }
  .ps-slide[data-slide="9"] .ps-product-image {
    margin-top: -3rem;
    max-height: 800px;
  }
  .ps-slide[data-slide="1"] {
    height: 90%;
  }
  .ps-slide[data-slide="2"] {
    height: 90%;
  }
  .ps-slide[data-slide="3"] {
    height: 75%;
  }
  .ps-slide[data-slide="4"] {
    height: 90%;
  }
  .ps-slide[data-slide="5"] {
    height: 73%;
  }
  .ps-slide[data-slide="6"] {
    height: 100%;
    margin-bottom: 10rem;
    /* z-index: ; must be ontop */
  }
  .ps-slide[data-slide="7"] {
    height: 90%;
  }
  .ps-slide[data-slide="8"] {
    height: 70%;
  }
  .ps-slide[data-slide="9"] {
    height: 85%;
  }
  /* logo */
  .ps-slide[data-slide="9"] .ps-logo {
    margin-top: -2.3rem;
    margin-bottom: -20px;
  }
  .ps-slide[data-slide="5"] .ps-logo {
    margin-top: -1.3rem;
  }
  .ps-slide[data-slide="8"] .ps-logo {
    margin-top: -1.3rem;
  }
}
@media (max-width: 380px) {
  .premium-slider {
    position: relative;
    margin-top: 5rem;
  }
}

/* ========== Sevices section ========== */

.services-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--white) 0%, #f9f9f9 100%);
  position: relative;
  overflow: hidden;
  /* margin-top: -2rem;*/
  z-index: 1;
}

/* .services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/') repeat;
    opacity: 0.03;
    z-index: 0;
} */

.services-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  padding: 0 var(--space-lg);
  position: relative;
  z-index: 1;
}

.services-subtitle {
  font-family: var(--font-heading);
  font-weight: var(--semibold);
  color: var(--primary);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.8rem;
  display: block;
  margin-bottom: 1rem;
}

.services-title {
  font-family: var(--font-heading);
  font-weight: var(--semibold);
  font-size: 2.8rem;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.services-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
}

.services-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

/* Add these new styles to your existing CSS */

.service-card.with-image {
  display: flex;
  padding: 0;
  overflow: visible;
}

.service-content {
  flex: 1;
  padding: 2.5rem;
}

.service-image {
  flex: 0 0 40%;
  position: relative;
  overflow: hidden;
  min-height: 300px;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  overflow: visible;
  margin-left: -1rem;
}
.service-img.accidental {
  object-fit: contain;

  margin-left: -2rem;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 255, 255, 0) 100%
  );
}

.service-card.with-image:hover .service-img {
  transform: scale(1.05);
}

/* Adjustments for responsive behavior */
@media (max-width: 1200px) {
  .service-image {
    flex: 0 0 35%;
  }
}

@media (max-width: 1024px) {
  .service-card.with-image {
    flex-direction: column;
  }

  .service-image {
    flex: 0 0 250px;
    order: -1;
  }
}

@media (max-width: 768px) {
  .service-content {
    padding: 2rem;
  }

  .service-image {
    flex: 0 0 200px;
  }
  /* .services-header {
        margin-bottom: -4rem;
    } */
}
.service-row {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  position: relative;
  overflow: hidden;
  border: none;
}

.main-card {
  flex: 2;
  min-height: 300px;
  background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
  border: 1px solid rgba(0, 0, 0, 0.03);
}
/*  */
.service-card.main-card.repair.with-image {
  margin-left: 2rem;
}
.service-card.accent-card.delivery {
  margin-right: 2rem;
}
.service-card.accent-card.support {
  margin-left: 2rem;
}
.service-card.main-card.accidental.with-image {
  margin-right: 2rem;
}
/*  */
.accent-card {
  flex: 1;
  min-height: 280px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
}

.service-icon {
  width: 70px;
  height: 70px;
  background: rgba(46, 204, 113, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  color: var(--primary);
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: var(--primary);
  color: white;
  transform: rotate(5deg) scale(1.1);
}

.service-name {
  font-family: var(--font-heading);
  font-weight: var(--semibold);
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 1rem;
  position: relative;
}

.service-description {
  color: var(--secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.service-highlight {
  display: inline-block;
  background: rgba(46, 204, 113, 0.1);
  color: var(--primary-dark);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: var(--semibold);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.service-features {
  list-style: none;
  margin-top: 1.5rem;
}

.service-features li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.8rem;
  color: var(--dark);
  font-size: 0.95rem;
}

.service-features li i {
  color: var(--primary);
  margin-right: 0.7rem;
  font-size: 0.9rem;
}

.service-cta {
  margin-top: 2rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  color: var(--primary-dark);
  font-weight: var(--semibold);
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-link i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.service-link:hover {
  color: var(--primary);
}

.service-link:hover i {
  transform: translateX(5px);
}

@media (max-width: 1024px) {
  .service-row {
    flex-direction: column;
  }

  .main-card,
  .accent-card {
    flex: 1 1 100%;
  }
}

@media (max-width: 768px) {
  .services-title {
    margin-top: 0rem;
    font-size: 2.2rem;
  }

  .service-card {
    padding: 2rem;
  }
  .services-section {
    margin-top: -5rem;
  }
}

/* ========== best sellers ========== */
/* Modern Best Sellers Section */
.bestsellers {
  height: 85vh;
  padding: 6rem 0;
  background: linear-gradient(to bottom, white 0%, white 50%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
  margin-top: -5rem;
  z-index: 5;
}

.bestsellers-container {
  position: relative;
  bottom: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
  margin-top: -2rem;
}

/* Left Side - Header */
.bestsellers-header {
  position: relative;
  padding-right: 2rem;
}

.bestsellers-logo {
  height: 60px;
  margin-bottom: 2rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  transition: transform 0.4s ease;
}

.bestsellers-logo:hover {
  transform: translateY(-3px);
}

.bestsellers-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.highlight {
  color: var(--primary);
  position: relative;
}

.highlight::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: var(--primary);
  opacity: 0.2;
  z-index: -1;
  border-radius: 4px;
}

.bestsellers-description {
  font-size: 1.1rem;
  color: var(--secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.bestsellers-see-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  background: rgba(46, 204, 113, 0.1);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.bestsellers-see-more:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(46, 204, 113, 0.2);
}

.bestsellers-see-more i {
  transition: transform 0.3s ease;
}

.bestsellers-see-more:hover i {
  transform: translateX(3px);
}

/* Right Side - Products Carousel */
.bestsellers-products-wrapper {
  position: relative;
  overflow: hidden;
  padding: 1rem;
  margin-right: -2rem;
}

.bestsellers-products-container {
  overflow: hidden;
  width: 100%;
}

.bestsellers-products-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
  touch-action: pan-y pinch-zoom;
  -webkit-overflow-scrolling: touch;
}

.bestsellers-product {
  min-width: calc(50% - 1rem);
  flex: 0 0 auto;
  padding: 0.5rem;
}

.bestsellers-product-inner {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.bestsellers-product:hover .bestsellers-product-inner {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px -10px rgba(0, 0, 0, 0.12);
}

.bestsellers-product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--primary);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.bestsellers-product-badge.bestsellers-new {
  background: #3498db;
}

.bestsellers-product-badge.bestsellers-trending {
  background: #e74c3c;
}

.bestsellers-product-img-container {
  position: relative;
  padding: 2rem;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  text-align: center;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bestsellers-product-img {
  max-height: 160px;
  width: auto;
  transition: transform 0.4s ease;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

.bestsellers-product:hover .bestsellers-product-img {
  transform: scale(1.05) translateY(-5px);
}

.bestsellers-product-specs {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-around;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--dark);
}

.bestsellers-product-specs span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.bestsellers-product-specs i {
  color: var(--primary);
  font-size: 0.9rem;
}

.bestsellers-product-info {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.bestsellers-product-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

.bestsellers-brand {
  font-size: 0.9rem;
  color: var(--secondary);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.bestsellers-product-info h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.bestsellers-product-desc {
  font-size: 0.9rem;
  color: var(--secondary);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.bestsellers-product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.bestsellers-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.stars {
  color: #f1c40f;
  font-size: 0.9rem;
  letter-spacing: 0.1rem;
}

.bestsellers-rating span {
  font-size: 0.8rem;
  color: var(--secondary);
  font-weight: 500;
}

.bestsellers-price{
  display: none;
}

/* Carousel Controls */
.bestsellers-controls {
  position: relative;
  top: 1rem;
  left: 20rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.bestsellers-controls button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  border: none;
  color: var(--dark);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.bestsellers-controls button:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(46, 204, 113, 0.3);
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .bestsellers-container {
    grid-template-columns: 1fr 1.8fr;
    gap: 3rem;
  }

  .bestsellers-product {
    min-width: calc(50% - 1rem);
  }
}

@media (max-width: 992px) {
  .bestsellers-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .bestsellers-header {
    text-align: center;
    padding-right: 0;
  }

  .bestsellers-see-more {
    margin: 0 auto;
  }

  .bestsellers-products-wrapper {
    margin-right: 0;
  }
}

@media (max-width: 768px) {
  .bestsellers {
    height: auto;
    padding: 4rem 0;
    margin-top: 0;
  }

  .bestsellers-container {
    padding: 0 1.5rem;
    gap: 2rem;
  }

  .bestsellers-header {
    padding: 0;
  }

  .bestsellers-logo {
    height: 50px;
    margin-bottom: 1.5rem;
  }

  .bestsellers-title {
    font-size: 2rem;
  }

  .bestsellers-description {
    font-size: 1rem;
    line-height: 1.6;
  }

  .bestsellers-see-more {
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
  }

  .bestsellers-products-wrapper {
    padding: 0.5rem 0;
    margin-right: 0;
  }

  .bestsellers-product {
    min-width: 80vw; /* Show ~1 product per view */
    padding: 0.5rem;
  }

  .bestsellers-product-img-container {
    height: 200px;
    padding: 1.5rem;
  }

  .bestsellers-product-img {
    max-height: 140px;
  }

  .bestsellers-product-img.mecer {
    max-height: 180px !important; /* Larger for Mecer, if added */
  }

  .bestsellers-product-specs {
    font-size: 0.7rem;
    padding: 0.6rem;
  }

  .bestsellers-product-info {
    padding: 1rem;
  }

  .bestsellers-product-info h3 {
    font-size: 1.1rem;
  }

  .bestsellers-product-desc {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }

  .bestsellers-product-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .bestsellers-controls {
    top: auto;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    gap: 0.75rem;
  }

  .bestsellers-controls button {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .bestsellers {
    top: -3rem;
    padding: 3rem 0;
  }

  .bestsellers-container {
    padding: 0 1rem;
  }

  .bestsellers-logo {
    margin-top: 2rem;
    height: 40px;
    margin-bottom: 1rem;
  }

  .bestsellers-title {
    font-size: 1.8rem;
  }

  .bestsellers-description {
    font-size: 0.9rem;
  }

  .bestsellers-see-more {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }

  .bestsellers-products-wrapper {
    padding: 0;
  }

  .bestsellers-product {
    min-width: 90vw; /* Full-width product for smallest screens */
  }

  .bestsellers-product-img-container {
    height: 180px;
    padding: 1rem;
  }

  .bestsellers-product-img {
    max-height: 120px;
  }

  .bestsellers-product-img.mecer {
    max-height: 160px !important; /* Larger for Mecer, if added */
  }

  .bestsellers-product-specs {
    font-size: 0.65rem;
    padding: 0.5rem;
  }

  .bestsellers-product-info {
    padding: 0.8rem;
  }

  .bestsellers-product-info h3 {
    font-size: 1rem;
  }

  .bestsellers-product-desc {
    font-size: 0.8rem;
  }

  .bestsellers-controls {
    gap: 0.5rem;
    margin-top: 2rem;
  }

  .bestsellers-controls button {
    width: 45px;
    height: 45px;
    font-size: 0.8rem;
    margin-top: 0rem;
  }
}

/* Loading state */
.bestsellers-loading {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 300px;
  font-size: 1.2rem;
  color: var(--secondary);
}

/* Error state */
.bestsellers-error {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 300px;
  font-size: 1.2rem;
  color: #e74c3c;
  text-align: center;
  padding: 0 2rem;
}

/* ========== Contact us ========== */

/* Premium Contact Preview Styles with Your Color Scheme */
.contact-preview-section {
  padding: var(--space-xl) 2rem;
  position: relative;
  z-index: 6;
  margin-bottom: 1rem;
}

.contact-preview-container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-preview-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-title-cnt {
  font-size: 2.5rem;
  font-weight: var(--semibold);
  color: var(--dark);
  margin-bottom: var(--space-md);
  line-height: 1.2;
  font-family: var(--font-heading);
  margin-top: -5rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--secondary);
  max-width: 600px;
  margin: 0 auto var(--space-lg);
  font-family: var(--font-body);
}

.divider-line {
  width: 80px;
  height: 4px;
  background-color: var(--primary);
  margin: 0 auto;
  border-radius: 2px;
}

.contact-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

.contact-visual-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.office-image-wrapper {
  position: relative;
  left: -2rem;
  overflow: visible;
  height: 305px;
  background-color: transparent;
}

.office-image {
  position: relative;
  top: -1rem;
  left: 9rem;
  height: 350px;
  object-fit: cover;
  overflow-y: visible;
  transition: transform 0.3s ease;
  background: transparent;
}

.office-image-wrapper:hover .office-image {
  transform: scale(1.03);
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  background-color: var(--primary);
  color: var(--white);
  font-weight: var(--medium);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(46, 204, 113, 0.3);
  font-family: var(--font-heading);
}

.cta-button:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(46, 204, 113, 0.3);
}

.cta-button svg {
  transition: transform 0.3s ease;
}

.cta-button:hover svg {
  transform: translateX(3px);
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  background-color: var(--white);
  padding: var(--space-md);
  border-radius: 8px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.method {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-sm);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.method:hover {
  background-color: var(--bg);
}

.method-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(46, 204, 113, 0.1);
  color: var(--primary);
}

.method-details h4 {
  font-size: 0.95rem;
  font-weight: var(--medium);
  color: var(--dark);
  margin-bottom: 0.15rem;
  font-family: var(--font-heading);
}

.method-details a {
  font-size: 0.9rem;
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
  font-family: var(--font-body);
}

.method-details a:hover {
  color: var(--primary-light);
  text-decoration: underline;
}

.social-section {
  text-align: center;
  padding: var(--space-md);
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.social-title {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: var(--space-md);
  font-family: var(--font-heading);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--bg);
  color: var(--primary);
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.info-card {
  background-color: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.card-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-md) 0;
}

.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(46, 204, 113, 0.1);
  color: var(--primary);
}

.card-title {
  font-size: 1.25rem;
  font-weight: var(--medium);
  color: var(--dark);
  font-family: var(--font-heading);
}

.card-body {
  padding: var(--space-sm) var(--space-md) var(--space-md);
}

.card-text {
  color: var(--secondary);
  margin-bottom: var(--space-md);
  line-height: 1.6;
  font-family: var(--font-body);
}

.mini-map {
  height: 120px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: var(--space-md);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.mini-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--primary);
  font-weight: var(--medium);
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: var(--font-body);
}

.card-link:hover {
  color: var(--primary-light);
  gap: 0.5rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .contact-preview-grid {
    grid-template-columns: 1fr;
  }

  .office-image-wrapper {
    height: 250px;
  }
}

@media (max-width: 640px) {
  .section-title {
    font-size: 2rem;
  }

  .contact-preview-header {
    margin-bottom: var(--space-lg);
  }

  .contact-methods {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .method {
    flex: 1 1 200px;
  }
  .info-card {
    width: 365px;
  }
  .social-section {
    width: 365px;
  }
  .contact-methods {
    width: 365px;
  }
  .cta-button {
    width: 365px;
  }
  .office-image {
    position: relative;
    left: 85px;
    margin-top: -1.5rem;
    height: 320px;
  }
  .section-title-cnt {
    position: relative;
    top: 0.8rem;
  }
  .contact-preview-header {
    margin-top: 1rem;
  }
  .service-image {
    margin-left: 5rem;
    overflow: visible;
  }
  .image-overlay {
    width: 120%;
    overflow: visible;
    margin-left: -2rem;
  }
  .contact-preview-section {
    position: relative;
    top: -7rem !important;

    background: transparent;
  }
  .service-content {
    margin-top: -5rem;
  }
  .section-title-cnt {
    margin-top: -5rem;
  }
}
@media (max-width: 395px) {
  .office-image {
    left: 50px;
  }
  .cta-button {
    width: 325px;
    padding-right: 1rem;
  }
  .contact-methods {
    width: 325px;
  }
  .social-section {
    width: 325px;
  }
  .info-card {
    width: 325px;
  }
}
@media (max-width: 380px) {
  .office-image {
    left: 50px;
  }
  .cta-button {
    width: 315px;
    padding-right: 1rem;
  }
  .contact-methods {
    width: 315px;
  }
  .social-section {
    width: 315px;
  }
  .info-card {
    width: 315px;
  }
}

/* ========== Footer ========== */
/* ========== Footer Base Styles ========== */
.omni-footer-v2.home {
  background-color: var(--dark);
  color: white;
  padding: 3rem 0 0;
  font-family: var(--font-body);
  margin-bottom: -2rem;
}

.omni-footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.omni-footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  padding-bottom: 2rem;
}

.highlight {
  color: var(--primary);
}

/* ========== Brand Section ========== */
.omni-footer-brand {
  flex: 1;
  min-width: 200px;
  margin-left: -4rem;
}

.omni-footer-logo {
  height: 70px;
  margin-bottom: 1rem;
}

/* Social Media */
.omni-socials-heading {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: white;
}

.omni-footer-socials {
  display: flex;
  gap: 1rem;
}

.omni-social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.omni-social-icon:hover {
  background: var(--primary);
}

/* ========== Navigation Links ========== */
.omni-footer-nav {
  flex: 2;
  min-width: 600px;
}

.omni-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  margin-bottom: 2rem;
}

.omni-footer-link {
  font-family: var(--font-heading);
  color: white;
  text-decoration: none;
  font-weight: var(--medium);
  position: relative;
}

.omni-footer-link:hover {
  color: var(--primary);
}

.omni-footer-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.omni-footer-link:hover::after {
  width: 100%;
}

/* ========== Enhanced Catalog Dropdown ========== */
.omni-footer-catalog {
  position: relative;
  display: inline-block;
}

.catalog-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  margin-top: -0.5rem;
}

.catalog-toggle i {
  font-size: 0.8rem;
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.omni-catalog-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #161f28; /* Slightly lighter than footer background */
  border: 1px solid rgba(78, 159, 61, 0.3); /* Primary color with opacity */
  border-radius: 6px;
  padding: 0.8rem 0;
  min-width: 220px;
  display: none;
  flex-direction: column;
  gap: 0.3rem;
  z-index: 100;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transform: translateY(5px);
  opacity: 0;
  transition: all 0.3s ease;
  margin-left: -4rem;
}

.omni-footer-catalog:hover .omni-catalog-dropdown {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.omni-catalog-link {
  color: white;
  text-decoration: none;
  font-size: 0.95rem;
  padding: 0.6rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.2s ease;
  position: relative;
}

.omni-catalog-link:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: var(--primary);
  transform: scaleY(0);
  transition: transform 0.2s ease;
}

.omni-catalog-link:hover {
  background: rgba(78, 159, 61, 0.1); /* Primary color with opacity */
  color: var(--primary);
  padding-left: 1.5rem;
}

.omni-catalog-link:hover:before {
  transform: scaleY(1);
}

.omni-catalog-link i {
  width: 20px;
  text-align: center;
  font-size: 1rem;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.omni-catalog-link:hover i {
  transform: scale(1.2);
}

/* Mobile dropdown adjustments */
@media (max-width: 768px) {
  .omni-catalog-dropdown {
    position: static;
    display: none;
    width: 100%;
    border: none;
    box-shadow: none;
    background: transparent;
    padding: 0.5rem 0;
    opacity: 1;
    transform: none;
  }

  .omni-catalog-link {
    padding: 0.5rem 1rem;
    justify-content: center;
  }

  .omni-catalog-link:hover {
    padding-left: 1rem;
  }
}

/* ========== Map & Trading Hours ========== */
.omni-footer-info {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.omni-map-container {
  flex: 2;
  min-width: 250px;
  border-radius: 8px;
  overflow: hidden;
}

.omni-footer-map {
  width: 100%;
  height: 200px;
  border: none;
}

.omni-trading-hours {
  flex: 1;
  min-width: 200px;
  margin-right: -4rem;
  margin-top: -0.5rem;
}

.omni-hours-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.omni-hours-line {
  width: 150px;
  height: 2px;
  background: var(--primary);
  margin: 0.8rem 0;
}

.omni-hours-text {
  margin: 0.5rem 0;
}

/* ========== Contact Details ========== */
.omni-contact-details {
  flex: 1;
  min-width: 200px;
  margin-right: -8rem;
}

.omni-contact-heading {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.omni-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1rem;
}

.omni-contact-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: white;
  text-decoration: none;
}

.omni-contact-item:hover {
  color: var(--primary);
}

.omni-contact-item i {
  width: 20px;
  text-align: center;
}

/* ========== Copyright Section ========== */
.omni-footer-bottom {
  position: relative;
  padding: 2rem 0;
  text-align: center;
}

.omni-copyright-container {
  position: relative;
  display: inline-block;
  padding: 0 2rem;
}

.omni-copyright-container::before,
.omni-copyright-container::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.omni-copyright-container::before {
  left: 100%;
}

.omni-copyright-container::after {
  right: 100%;
}

.omni-copyright-text {
  position: relative;
  font-size: 0.9rem;
  opacity: 0.7;
  background: var(--dark);
  padding: 0 1rem;
  z-index: 1;
}

/* ========== Mobile Responsiveness ========== */
@media (max-width: 768px) {
  .omni-footer-v2.home {
    margin-top: -8rem;
  }
  .omni-footer-top {
    flex-direction: column;
    gap: 2rem;
  }

  .omni-footer-links {
    justify-content: center;
  }

  .omni-footer-info {
    flex-direction: column;
  }

  .omni-map-container {
    min-width: 100%;
  }

  .omni-trading-hours {
    text-align: center;
  }

  .omni-hours-line {
    margin: 1rem auto;
  }

  .omni-copyright-container::before,
  .omni-copyright-container::after {
    display: none;
  }

  .omni-copyright-text {
    padding: 1rem 0;
    display: block;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
  }

  /* Catalog Mobile Styles */
  .omni-footer-catalog {
    width: 100%;
    text-align: left;
  }

  .omni-catalog-dropdown {
    position: static;
    margin-left: 0rem;
    display: none;
    width: 100%;
    border: none;
    padding: 1rem 0;
    background: transparent;
  }

  .catalog-toggle {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  html {
    overflow-x: hidden;
  }
  .omni-footer-logo {
    margin-left: -0.8rem;
    height: 60px;
  }
  .omni-footer-brand {
    position: relative;
    top: -1rem;
    left: 4rem;
  }
  .omni-footer-map,
  .omni-map-container {
    max-width: 400px;
  }

  .omni-contact-item {
    font-size: 0.85rem;
  }
  .omni-footer-links {
    position: relative;
    top: -1rem;
    left: -7rem;
  }
  .omni-map-container {
    width: 365px;
  }
  .omni-footer-map {
    width: 365px;
    border-radius: 10px;
  }
  .omni-trading-hours {
    text-align: left;
    left: -1rem;
  }
  .omni-hours-line.one {
    position: relative;
    left: -18rem;
  }
  .omni-hours-line.trd {
    position: relative;
    left: -16rem;
  }
  .omni-hours-line.two {
    position: relative;
    left: -18rem;
  }
  .omni-hours-title {
    font-size: 1.4rem;
  }
  .omni-hours-text {
    font-size: 0.65rem;
  }

  /* .omni-hours-line {
        margin-left: -rem;
    } */
}
@media (max-width: 395px) {
  .omni-footer-map,
  .omni-map-container {
    max-width: 310px;
  }
  .omni-footer-links {
    top: -1rem;
    left: -9rem;
  }
}
@media (max-width: 380px) {
  .omni-footer-map,
  .omni-map-container {
    max-width: 300px;
  }
  .omni-footer-links {
    top: -1rem;
    left: -9rem;
  }
}
