@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@1,300;1,900&family=Barlow:wght@400;500;600;700&family=Barlow+Condensed:wght@700;800&display=swap');

:root {
  /* Minimalist Accents */
  --c-cyan: #7f7f7f;
  --c-magenta: #404040;
  --c-yellow: #bfbfbf;

  /* Primary & Backgrounds */
  --bg-main: #ffffff;
  --bg-secondary: #bfbfbf;
  --bg-glass: rgba(255, 255, 255, 0.95);
  --bg-card: #ffffff;

  /* Text */
  --text-main: #000000;
  --text-muted: #404040;
  --text-on-dark: #ffffff;

  /* Layout */
  --max-width: 1400px;
  --nav-height: 80px;
  --topbar-height: 40px;

  /* Glassmorphism Navbar */
  --glass-bg: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.15);
  --glass-shadow: rgba(0, 0, 0, 0.4);
  --text-white: #f0f0f0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

/* Base Utilities */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.brand-gradient {
  background: linear-gradient(135deg, #000, #333);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.btn-primary {
  background: #000000;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #404040;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-glass {
  background: rgba(0, 0, 0, 0.04);
  color: var(--text-main);
  border: 1px solid rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(4px);
  font-size: 0.75rem;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  display: inline-block;
  text-align: center;
}

.btn-glass:hover {
  background: rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.8s ease forwards;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

.float-anim {
  animation: float 4s ease-in-out infinite;
}

/* --- THEMATIC INDUSTRY ANIMATIONS --- */

/* 1. Rubber Stamp Effect (For Taglines or Badges) */
@keyframes stamp {
  0% {
    opacity: 0;
    transform: scale(3) rotate(-15deg);
  }

  50% {
    opacity: 1;
    transform: scale(0.9) rotate(-15deg);
  }

  100% {
    opacity: 1;
    transform: scale(1) rotate(-15deg);
  }
}

.anim-stamp {
  animation: stamp 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  opacity: 0;
  display: inline-block;
  transform-origin: center;
}


/* 3. Paper Feed (Hover effect for product cards) */
.printer-feed-card {
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.printer-feed-card:hover {
  transform: translateY(-8px);
}

.printer-feed-card .product-img {
  transition: transform 0.5s ease-out;
}

.printer-feed-card:hover .product-img {
  transform: translateY(-5px) scale(1.03);
}

/* Floating CMYK Ink Drops (Background decorations) */
.ink-drop {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.15;
  z-index: 0;
  animation: float 8s ease-in-out infinite;
}

.ink-cyan {
  background: var(--c-cyan);
  width: 300px;
  height: 300px;
  top: -100px;
  left: -100px;
}

.ink-magenta {
  background: var(--c-magenta);
  width: 250px;
  height: 250px;
  bottom: 10%;
  right: -50px;
  animation-delay: -2s;
}

.ink-yellow {
  background: var(--c-yellow);
  width: 200px;
  height: 200px;
  top: 40%;
  left: 10%;
  animation-delay: -4s;
  filter: blur(30px);
  opacity: 0.1;
}

/* Top Bar */
.top-bar {
  background-color: #000000;
  color: #bfbfbf;
  font-size: 0.8rem;
  height: var(--topbar-height);
  display: flex;
  align-items: center;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.top-bar-promo {
  letter-spacing: 0.5px;
}

.top-bar-promo span {
  color: var(--c-yellow);
  font-weight: 600;
}

.top-bar-links a {
  margin-left: 1.5rem;
  color: #cbd5e1;
}

.top-bar-links a:hover {
  color: var(--c-cyan);
}

/* Header */
header {
  height: var(--nav-height);
  background: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

header.scrolled {
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo span {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: normal;
  color: #ffffff;
}

.logo-img {
  transition: all 0.3s ease;
  filter: brightness(0) invert(1);
}

.logo-dot {
  color: #ffffff;
}

.search-bar {
  flex: 1;
  max-width: 250px;
  margin: 0 2rem;
  position: relative;
}

.search-bar i {
  position: absolute; 
  right: 20px; 
  top: 50%; 
  transform: translateY(-50%); 
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-bar i:hover {
  color: #cbd5e1;
  transform: translateY(-50%) scale(1.1);
}

/* Search Results Dropdown */
.search-results-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 15px;
  margin-top: 10px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.5);
  z-index: 1001;
  max-height: 400px;
  overflow-y: auto;
  display: none;
  overflow: hidden;
}

.search-results-dropdown.active {
  display: block;
  animation: dropdownFade 0.3s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes dropdownFade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.search-result-item {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.search-result-item:last-child {
  border-bottom: none;
}

.search-result-item:hover {
  background: rgba(0, 0, 0, 0.05);
  padding-left: 1.8rem;
}

.result-title {
  font-weight: 600;
  color: var(--text-main);
  font-size: 0.95rem;
}

.result-category {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}

.no-results {
  padding: 1.5rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.search-bar input {
  width: 100%;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  transition: all 0.3s ease;
}

.search-bar input:focus {
  outline: none;
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}


  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.action-icon {
  font-size: 1.2rem;
  color: #ffffff;
  position: relative;
}

.action-icon:hover {
  color: var(--c-magenta);
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--c-magenta);
  color: #fff;
  font-size: 0.65rem;
  font-weight: bold;
  height: 18px;
  width: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Secondary Nav & Mega Menu */

.d-none-mobile {
  display: none !important;
}

@media (min-width: 769px) {
  .d-none-mobile {
    display: block !important;
  }
}

.secondary-nav {
  background: var(--bg-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  overflow: visible; /* Critical: allows dropdowns to show outside the nav */
  position: relative;
}

.drawer-ul {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.drawer-ul > li {
  position: relative;
}

.secondary-nav a {
  display: flex;
  align-items: center;
  padding: 1rem 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.dropdown-icon {
  margin-left: 0.5rem;
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.secondary-nav a:hover,
.secondary-nav a.active {
  color: #cbd5e1;
}

.has-dropdown:hover .dropdown-icon {
  transform: rotate(180deg);
}

/* Mega Menu Styles */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  width: max-content;
  min-width: 850px;
  background: var(--bg-secondary);
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 0 0 12px 12px;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1001;
  pointer-events: none;
}

.has-dropdown:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.mega-menu-column h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
  border-bottom: 2px solid #ffffff;
  padding-bottom: 0.5rem;
  display: inline-block;
  text-transform: uppercase;
}

.mega-menu-column ul {
  list-style: none;
  padding: 0;
  display: flex !important;
  flex-direction: column;
  gap: 0;
}

.secondary-nav .mega-menu-column ul li a {
    padding: 0.5rem 0 !important;
    color: #ffffff !important;
    font-size: 0.9rem;
    font-weight: 300 !important;
    text-transform: none;
    letter-spacing: normal;
  }

.secondary-nav .mega-menu-column ul li a:hover {
  color: #cbd5e1;
  padding-left: 5px !important;
}

/* Hide icons on desktop main links */
@media (min-width: 769px) {
  .secondary-nav > .container > .drawer-ul > li > a > i:not(.dropdown-icon) {
    display: none;
  }
}

/* Hero Section */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-height) - var(--topbar-height) - 45px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-bg.active {
  opacity: 1;
}

/* Slider Controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #3b82f6;
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.slider-arrow:hover {
  background: #2563eb;
  transform: translateY(-50%) scale(1.1);
}

.prev-arrow { left: 2rem; }
.next-arrow { right: 2rem; }

@media (max-width: 768px) {
  .slider-arrow { width: 40px; height: 40px; font-size: 1rem; }
  .prev-arrow { left: 1rem; }
  .next-arrow { right: 1rem; }
}

/* Hero text box */
.hero-box {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 20px;
  padding: 3rem 4rem;
  text-align: center;
  max-width: 800px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .hero-box {
    padding: 2rem;
    margin: 0 1rem;
  }
}

.btn-orange {
  background: #f97316;
  color: white;
  border: none;
}
.btn-orange:hover {
  background: #ea580c;
  color: white;
  transform: translateY(-2px);
}
.btn-black {
  background: #171717;
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-black:hover {
  background: #0a0a0a;
  color: white;
  transform: translateY(-2px);
}


.hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 600px;
}

.tagline {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #000;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 4.5rem; /* Slightly larger for impact */
  margin-bottom: 1.5rem;
  color: #ffffff; /* Critical: White text for visibility */
  letter-spacing: -1px;
  line-height: 1.05;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); /* Subtle shadow for depth */
}

.hero p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9); /* Critical: Light text for visibility */
  margin-bottom: 2.5rem;
  max-width: 700px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

/* Categories Grid */
.categories-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-muted);
}

.grid-layout {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.category-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--bg-card);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.category-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  background: linear-gradient(to top, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.8) 60%, transparent);
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.category-card:hover .category-img {
  transform: scale(1.08);
}

.category-card:hover .category-overlay {
  transform: translateY(0);
}

.category-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.category-link {
  color: var(--c-magenta);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.category-card:hover .category-link {
  opacity: 1;
}

/* Product Grid (E-commerce Style) */
.products-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.products-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.product-card {
  position: relative;
  height: 420px;
  background: var(--bg-card);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-color: var(--c-cyan);
}

.product-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.product-card:hover .product-img {
  transform: scale(1.1);
}

.product-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, 
    rgba(0, 0, 0, 0.9) 0%, 
    rgba(0, 0, 0, 0.4) 50%, 
    transparent 100%);
  z-index: 1;
}

.product-info {
  position: relative;
  z-index: 2;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.product-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
  color: #fff;
  font-weight: 700;
}

.product-meta {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 1.2rem;
}

.product-action {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: auto;
}

.product-action .btn {
  padding: 0.6rem 1.2rem;
  font-size: 0.8rem;
}

.product-price {
  font-weight: bold;
  color: var(--c-cyan);
  font-size: 1.1rem;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

.btn-whatsapp:hover {
  background: #128c7e;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
  color: #fff;
}


/* Brands Section */
.brands-section { padding: 2rem 0;
  background: var(--bg-secondary);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.brands-slider { margin-top: 1.5rem; display: flex; gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0.4;
}

.brands-slider i {
  color: var(--text-main);
  transition: all 0.3s ease;
}

.brands-slider i:hover {
  color: var(--c-cyan);
  transform: scale(1.1);
}

/* Footer Section */
footer {
  background: var(--bg-secondary);
  padding: 5rem 0 2rem;
  border-top: 4px solid var(--c-magenta);
  color: var(--text-main);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-about p {
  color: var(--text-muted);
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent;
  color: #000 !important;
  border: 1px solid #000 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--c-magenta);
  color: #fff;
  transform: translateY(-3px);
}

.footer-heading {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #000 !important;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-about p {
  color: #000 !important;
}

.footer-links a {
  color: #000 !important;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--c-magenta);
  padding-left: 5px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  color: #000 !important;
  font-size: 0.95rem;
}

.contact-item i {
  color: #000 !important;
  font-size: 1.2rem;
  margin-top: 3px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  color: #000 !important;
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 3rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .secondary-nav ul {
    justify-content: flex-start;
    padding: 0 1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .search-bar {
    display: none;
  }
}

@keyframes bobbleFloat {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  left: 30px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  animation: bobbleFloat 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: translateY(-5px);
  color: #fff;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}


/* === MOBILE RESPONSIVENESS === */
@media (max-width: 768px) {

  /* General Typography */
  h1 {
    font-size: 2.2rem !important;
    line-height: 1.4 !important;
    margin-bottom: 1.2rem !important;
  }

  h2 {
    font-size: 1.8rem !important;
    line-height: 1.3 !important;
  }

  .hero p {
    font-size: 1.05rem !important;
    line-height: 1.6 !important;
    padding: 0 10px;
  }

  .tagline {
    margin-bottom: 1.5rem !important;
  }

  /* Header Nav */
  .secondary-nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .secondary-nav ul li a {
    padding: 0.5rem;
    font-size: 0.85rem;
  }

  /* Catalog / Sidebar Layout */
  .catalog-section .container {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .sidebar {
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 2rem;
  }

  /* Hero Section */
  .hero {
    padding: 4rem 0 !important;
    text-align: center;
  }

  .hero .container {
    flex-direction: column !important;
    text-align: center !important;
    gap: 2rem;
  }

  /* Footer */
  .footer .container {
    grid-template-columns: 1fr !important;
    text-align: center;
    gap: 2rem;
  }

  .footer-col h4::after {
    left: 50% !important;
    transform: translateX(-50%);
  }

  .social-links {
    justify-content: center;
  }

  .contact-grid {
    grid-template-columns: 1fr !important;
  }

  /* Core Solutions Category 2 in a row */
  .grid-layout {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px;
  }

  .category-card {
    aspect-ratio: 4/5 !important; min-height: unset;
  }

  .category-title {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
  }

  .category-overlay {
    padding: 1rem;
  }

  .category-link {
    font-size: 0.75rem;
  }

  /* Products Category 2 in a row */
  .products-container {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px;
  }

  .product-card {
    height: 280px;
  }

  .product-info {
    padding: 1.2rem;
    gap: 0.3rem;
  }

  .product-title {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
  }

  .product-meta {
    font-size: 0.72rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .product-action .btn {
    padding: 0.5rem 1rem;
    font-size: 0.7rem;
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .brands-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .product-img {
    height: 150px;
  }
}


/* === DRAWER MENU & FLOATING UI (MOBILE ONLY) === */
.desktop-nav { display: flex; }
.mobile-nav { display: none; }

.drawer-header {
  display: none;
}

.mobile-close-btn {
  display: none;
}

.d-mobile-only {
  display: none;
}

.menu-overlay {
  display: none;
}

.drawer-footer {
  display: none;
}

/* Sidebar Categories Toggle */
.desktop-category-list {
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  list-style: none;
  padding: 0;
}

.mobile-category-dropdown {
  display: none;
  width: 100%;
  padding: 12px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  background-color: #fff;
  cursor: pointer;
  outline: none;
  margin-bottom: 10px;
}

.promo-badge {
  position: fixed;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  background: #c3f0cb;
  color: #000;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: none;
  /* hidden on desktop generally, but could show */
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 0.85rem;
  line-height: 1.1;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.whatsapp-fab {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: transform 0.3s;
  animation: bobbleFloat 3s ease-in-out infinite;
}

.whatsapp-fab:hover {
  transform: scale(1.1);
  color: white;
}

@media (max-width: 768px) {
  .d-mobile-only {
    display: inline-block;
    background: transparent;
    border: none;
    font-size: 1.5rem;

  }

  .promo-badge {
    display: flex;
  }

  /* Show dropdown format for Sidebar on mobile */
  .mobile-category-dropdown {
    display: block !important;
  }

  .desktop-category-list {
    display: none !important;
  }

  /* Overlay */
  .menu-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
  }

  .menu-overlay.open {
    opacity: 1;
    visibility: visible;
  }

  /* Drawer structure */
  #sideDrawer {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85vw;
    max-width: 400px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  #sideDrawer.open {
    left: 0;
  }

  .drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    color: #fff;
    padding: 1.5rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .drawer-title {
    font-weight: bold;
  }

  .mobile-close-btn {
    display: block;
    background: transparent;
    color: #fff;
    border: none;
    font-weight: bold;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.8;
  }

  .mobile-scroll-container {
    padding: 0 !important;
    overflow-y: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .drawer-ul {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-direction: column !important;
    gap: 0 !important;
  }

  .drawer-ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .drawer-ul li a {
    display: block;
    padding: 1.2rem 1.5rem !important;
    font-size: 1.1rem !important;
    font-weight: 500;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    transition: background 0.3s;
  }

  .drawer-ul li a:hover {
    background: rgba(255, 255, 255, 0.05);
  }

  .drawer-ul li a i {
    width: 25px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
  }
  
  .desktop-nav { display: none !important; }
  .mobile-nav { display: flex !important; }
  
  .mobile-submenu {
    list-style: none;
    padding-left: 2rem !important;
    margin: 0;
    width: 100%;
    display: none;
  }
  .mobile-submenu.open {
    display: block;
  }
  .mobile-submenu li {
    border-bottom: 1px solid #eee;
  }
  .mobile-submenu li:last-child {
    border-bottom: none;
  }
  .mobile-submenu li a {
    padding: 0.8rem 1rem !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    color: #333 !important;
  }
  .mobile-submenu li a i {
    display: none !important;
  }

  /* About Page Mobile Grid */
  #aboutGridMobile {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .drawer-footer {
    display: flex;
    flex-wrap: wrap;
    padding: 1.2rem;
    gap: 0.8rem;
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
  }

  .drawer-utility {
    padding: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    flex: 1;
    text-align: center;
    font-weight: 600;
    font-size: 0.85rem;
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    transition: all 0.3s;
  }

  .drawer-utility:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
  }

  /* Compact 2-column mobile grid for Category cards */
  .grid-layout {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    /* Smaller gap on mobile */
  }

  .category-overlay {
    padding: 1rem;
    /* Less padding so text fits */
    transform: translateY(10px);
    /* Adjust hover displacement */
  }

  .category-title {
    font-size: 1rem;
    /* Smaller titles */
    margin-bottom: 0.2rem;
  }

  .category-link {
    font-size: 0.75rem;
    /* Smaller link text */
  }

  /* Reduce Marquee height on mobile to an ultra-thin stripe */
  .scrolling-marquee-wrapper {
    padding: 0.5rem 0 !important;
  }

  .scrolling-marquee-content {
    font-size: 1rem !important;
    /* Tiny font for mobile stripe */
  }
}

/* Scrolling Text Marquee */
.scrolling-marquee-wrapper {
  background: #000000;
  /* Black to match brand theme */
  color: #ffffff;
  padding: 1rem 0;
  /* Reduced desktop padding */
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 15px rgba(30, 41, 59, 0.4);
  /* Matched shadow */
}

.scrolling-marquee-content {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  /* Reduced desktop font size */
  letter-spacing: 2px;
  animation: marquee-scroll 25s linear infinite;
}

/* Create a seamless loop by doubling the content in HTML */
@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.scrolling-marquee-content span {
  padding: 0 2rem;
}

/* =========================================================================
   PREMIUM AESTHETIC OVERRIDES (3D depth, mesh glow, texture)
   ========================================================================= */

/* 1. Global Noise Grain (extremely subtle Apple-style finish) */
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* 2. Enhanced Buttons (Fluid sliding gradients with deeper glow) */
.btn {
  position: relative;
  overflow: hidden;
  border-radius: 50px !important;
  /* Premium pill shape */
  font-weight: 700;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--c-cyan), var(--c-magenta), var(--c-yellow), var(--c-cyan));
  background-size: 300% 300%;
  animation: gradientFlow 6s ease infinite;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25), inset 0 2px 5px rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 35px rgba(127, 127, 127, 0.4), inset 0 2px 5px rgba(255, 255, 255, 0.4);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* 3. High-End 3D Card Interactions (Categories & Products) */
.category-card,
.product-card,
.glass-panel {
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform, box-shadow;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.category-card:hover,
.product-card:hover,
.glass-panel:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 40px rgba(127, 127, 127, 0.12), 0 0 0 1px rgba(127, 127, 127, 0.2);
}

/* 4. Glassmorphism Upgrade for Nav elements */


.brand-gradient {
  background: linear-gradient(135deg, #000000 0%, #404040 50%, #000000 100%);
  background-size: 200% auto;
  animation: textShine 4s linear infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-gradient-light {
  background: linear-gradient(135deg, #ffffff 0%, #bfbfbf 50%, #ffffff 100%);
  background-size: 200% auto;
  animation: textShine 4s linear infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes textShine {
  to {
    background-position: 200% center;
  }
}

/* =========================================================================
   DARK FOOTER OVERRIDE (Matching InkSpot Dark Theme Image)
   ========================================================================= */
.dark-footer {
  background: #404040 !important;
  /* Deep dark gray */
  border-top: 2px solid rgba(127, 127, 127, 0.3) !important;
  box-shadow: 0 -10px 40px rgba(127, 127, 127, 0.05) !important;
  color: #bfbfbf !important;
  /* Muted gray text like image */
  padding: 4rem 0 2rem !important;
}

.dark-footer .footer-heading {
  color: #ffffff !important;
  font-size: 1.05rem !important;
  letter-spacing: 0px !important;
  margin-bottom: 1.5rem !important;
  font-weight: 600 !important;
}

.dark-footer .logo-text {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -1px;
  background: linear-gradient(135deg, var(--c-cyan), var(--c-magenta), var(--c-yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  line-height: 1;
}

.dark-footer .logo-sub {
  color: #ffffff;
  font-size: 0.6rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  font-weight: 800;
  display: block;
}

.dark-footer p {
  color: #bfbfbf !important;
  font-size: 0.85rem !important;
  line-height: 1.6;
}

.dark-footer .footer-links ul li {
  margin-bottom: 0.8rem !important;
}

.dark-footer .footer-links ul li a {
  color: #bfbfbf !important;
  font-size: 0.85rem !important;
  font-weight: 400 !important;
}

.dark-footer .footer-links ul li a:hover {
  color: #000000 !important;
}

.dark-footer .contact-item {
  color: #bfbfbf !important;
  font-size: 0.85rem !important;
  align-items: flex-start !important;
  margin-bottom: 1rem !important;
}

.dark-footer .contact-item i {
  color: #1a62d6 !important;
  /* Distinct blue icon matching the image */
  margin-right: 15px !important;
  margin-top: 3px !important;
  font-size: 0.95rem !important;
}

.dark-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
  padding-top: 1.5rem !important;
  color: #bfbfbf !important;
}

/* =========================================================================
   LIGHT THEME SERVICE PORTFOLIO (As requested from image but light mode)
   ========================================================================= */

.portfolio-section {
  padding: 4rem 0;
  background-color: var(--bg-main);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .portfolio-grid {
    gap: 2rem;
  }
}

.portfolio-card {
  position: relative;
  height: 450px;
  background: var(--bg-card);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
}

.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(127, 127, 127, 0.12), 0 0 0 1px rgba(127, 127, 127, 0.05);
}

.portfolio-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.portfolio-card:hover .portfolio-image {
  transform: scale(1.1);
}

/* Gradient Overlay for Text Readability */
.portfolio-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, 
    rgba(0, 0, 0, 0.9) 0%, 
    rgba(0, 0, 0, 0.4) 50%, 
    transparent 100%);
  z-index: 1;
}

.portfolio-body {
  position: relative;
  z-index: 2;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.portfolio-icon-wrapper {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 0.5rem;
}

.portfolio-content h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 0.6rem;
  font-weight: 700;
}

.portfolio-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1.2rem;
}

.portfolio-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
}

.portfolio-bullets li {
  color: inherit;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.portfolio-bullets li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: currentColor;
  margin-right: 10px;
  opacity: 0.8;
}

.portfolio-card .portfolio-bullets li {
  color: rgba(255, 255, 255, 0.8);
}

.portfolio-card .portfolio-bullets li::before {
  background-color: #fff;
}

/* Services Portfolio Auto-Scaling for Mobile 2-Column */
@media (max-width: 768px) {
  .portfolio-grid {
    gap: 0.8rem;
  }

  .portfolio-card {
    height: 280px;
  }

  .portfolio-image {
    height: 100%;
  }

  .portfolio-body {
    padding: 1.2rem;
    gap: 0.5rem;
    flex-direction: column;
  }

  .portfolio-icon-wrapper {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    font-size: 0.8rem;
    margin-bottom: 0px;
  }

  .portfolio-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
  }

  .portfolio-content p {
    font-size: 0.72rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .portfolio-card .portfolio-bullets {
    display: none !important;
  }
}

/* Fix for footer grid 4-columns on desktop */
@media (min-width: 900px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 2fr !important;
    gap: 3rem;
  }
}

/* Secondary NavBar Custom Color override for Desktop */
@media (min-width: 900px) {
  .secondary-nav {
    display: none !important;
  }
}
/* Mobile Footer Size Reduction */
@media (max-width: 768px) {
  footer {
    padding: 2rem 0 1rem !important;
  }
  .dark-footer {
    padding: 2rem 0 1rem !important;
  }
  .footer-grid, .footer .container {
    gap: 1.5rem !important;
    margin-bottom: 1rem !important;
  }
  .footer-heading {
    margin-bottom: 0.5rem !important;
  }
}

/* Why Choose Us Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.feature-item {
    text-align: center;
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
}

.feature-icon.bg-cyan { background: rgba(127, 127, 127, 0.1); color: var(--c-cyan); }
.feature-icon.bg-magenta { background: rgba(0, 0, 0, 0.1); color: var(--c-magenta); }
.feature-icon.bg-gray { background: rgba(0, 0, 0, 0.1); color: var(--c-magenta); }

.feature-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.feature-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Mobile feature grid responsiveness */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 0.8rem;
        font-size: 1.1rem;
    }
    
    .feature-title {
        font-size: 0.95rem;
        margin-bottom: 0.3rem;
        line-height: 1.2;
    }
    
    .feature-desc {
        font-size: 0.8rem;
        line-height: 1.3;
    }
}

/* Support for Image Logo */
.logo {
  display: flex !important;
  align-items: center;
}
.logo-img {
  height: 40px;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}
.logo:hover .logo-img {
  transform: scale(1.05);
}
.logo-footer .logo-img {
  height: 60px; /* Footer logo can be slightly larger */
  margin-bottom: 1rem;
  filter: brightness(0); /* Make logo black */
}
@media (max-width: 768px) {
  .logo-img {
    height: 32px; /* Smaller logo on mobile */
  }
  .logo-footer .logo-img {
    height: 48px;
    margin: 0 auto 1rem auto;
  }
}


/* Contact Page Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem !important;
    }
}

/* --- RESPONSIVE GRID SYSTEM --- */
.grid-1-2-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  align-items: center;
}

.grid-1-3-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-1-4-col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

@media (max-width: 1024px) {
  .grid-1-4-col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .grid-1-2-col, .grid-1-3-col, .grid-1-4-col {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* --- OUR PROCESS SECTION --- */
.process-section {
  padding: 6rem 0;
  background: var(--bg-main);
  position: relative;
  overflow: hidden;
}

.process-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  margin-top: 4rem;
}

.process-line {
  position: absolute;
  top: 45px;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(0, 0, 0, 0.05);
  z-index: 1;
}

.process-step {
  position: relative;
  z-index: 2;
  flex: 1;
  text-align: center;
  padding: 0 1rem;
}

.step-icon-wrapper {
  width: 90px;
  height: 90px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  color: #000;
  box-shadow: 0 10px 25px rgba(0,0,0,0.03);
  transition: all 0.4s ease;
  position: relative;
}

.step-number {
  position: absolute;
  bottom: -10px;
  right: -5px;
  width: 30px;
  height: 30px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.process-step:hover .step-icon-wrapper {
  transform: translateY(-5px);
  color: #fff !important;
  background: #000;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  border-color: transparent;
}

.process-step:hover .step-icon-wrapper i {
  color: #fff !important;
  animation: float 2s ease-in-out infinite;
}

.step-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--text-main);
  font-weight: 700;
}

.step-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 200px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .process-grid {
    flex-direction: column;
    gap: 2rem;
    padding: 0 1rem;
  }
  
  .process-line {
    display: none;
  }
  
  .process-step {
    flex: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 0;
    width: 100%;
    position: relative;
    transition: transform 0.3s ease;
  }

  .process-step::after {
    content: '';
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 2rem;
    background: linear-gradient(to bottom, #000, transparent);
    opacity: 0.1;
  }

  .process-step:last-child::after {
    display: none;
  }
  
  .step-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 0 1.5rem 0;
    font-size: 1.6rem;
    flex-shrink: 0;
    background: var(--bg-secondary);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }
  
  .step-number {
    width: 20px;
    height: 20px;
    font-size: 0.65rem;
    bottom: -3px;
    right: -3px;
  }

  .step-title {
    font-size: 1.05rem;
    margin-bottom: 0.2rem;
  }
  
  .step-desc {
    margin: 0;
    max-width: none;
    font-size: 0.8rem;
    line-height: 1.5;
  }
}

/* --- HERO SLIDER --- */
.hero-slider { position: relative; height: 80vh; min-height: 600px; overflow: hidden; background: #000; }
.slider-container { position: relative; height: 100%; width: 100%; }
.slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 1.2s ease-in-out; z-index: 1; display: flex; align-items: center; }
.slide.active { opacity: 1; z-index: 2; }
.slide-bg { position: absolute; top: 0; left: 0; width: 120%; height: 100%; background-size: cover; background-position: center; transition: transform 10s linear; transform: scale(1); }
.slide.active .slide-bg { transform: scale(1.1) translateX(-5%); }
.slide-overlay { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: radial-gradient(circle, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.9) 100%); /* Enhanced vignette for max text clarity */
    z-index: 1; 
}
.hero-slider .container { position: relative; z-index: 10; padding: 0 4rem; }
.hero-content { text-align: center; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
.hero-slider h1 { 
    font-size: clamp(2.5rem, 6vw, 5rem); 
    color: #fff; 
    max-width: 1200px; 
    width: 100%;
    text-align: center;
    margin-bottom: 2rem; 
    transform: translateY(30px); 
    opacity: 0; 
    transition: all 0.8s ease 0.5s; 
    font-weight: 800; /* Much bolder for visibility */
    line-height: 1.05; 
    letter-spacing: -0.02em;
    text-transform: uppercase;
    text-shadow: 0 10px 40px rgba(0,0,0,0.6); /* Deeper shadow */
}

.hero-slider h1 span {
    display: inline-block;
    white-space: nowrap;
}
.hero-slider p { 
    font-size: 1.1rem; 
    color: #ffffff; /* pure white */
    max-width: 800px; 
    margin-bottom: 4rem; 
    transform: translateY(30px); 
    opacity: 0; 
    transition: all 0.8s ease 0.7s; 
    line-height: 1.8; 
    font-weight: 500; /* Medium weight */
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-shadow: 0 4px 15px rgba(0,0,0,0.4);
}
.hero-slider .hero-buttons { 
    transform: translateY(30px); 
    opacity: 0; 
    transition: all 0.8s ease 0.9s; 
    display: flex; 
    gap: 1.5rem; 
    justify-content: center;
}

/* Weight Contrast Helpers */
.weight-light { font-weight: 300 !important; }
.weight-black { font-weight: 900 !important; letter-spacing: -0.02em; }
.weight-serif { font-family: 'Playfair Display', serif; font-style: italic; text-transform: none; letter-spacing: 0; font-weight: 300; color: rgba(255,255,255,0.9); }

/* Custom Capsule Buttons */
.btn-hero-primary {
    background: #000;
    color: #fff;
    padding: 1.2rem 3rem;
    border-radius: 100px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: -10px 0 20px rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-hero-primary:hover {
    background: #0a0a0a;
    box-shadow: -15px 0 30px rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    color: #fff;
}

.btn-hero-secondary {
    background: #fff;
    color: #000;
    padding: 1.2rem 3rem;
    border-radius: 100px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid #fff;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    color: #000;
}

.btn-hero-secondary i {
    font-size: 1.2rem;
}

.slide.active h1, .slide.active p, .slide.active .hero-buttons { transform: translateY(0); opacity: 1; }
.slider-controls { position: absolute; top: 50%; width: 100%; transform: translateY(-50%); display: flex; justify-content: space-between; padding: 0 2rem; z-index: 100; }
.slider-prev, .slider-next { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: #fff; width: 50px; height: 50px; border-radius: 50%; cursor: pointer; transition: all 0.3s ease; backdrop-filter: blur(5px); }
.slider-prev:hover, .slider-next:hover { background: var(--c-cyan); border-color: var(--c-cyan); transform: scale(1.1); }
.slider-dots { position: absolute; bottom: 30px; width: 100%; display: flex; justify-content: center; gap: 1rem; z-index: 100; }
.dot { width: 12px; height: 12px; border: 2px solid rgba(255,255,255,0.5); border-radius: 50%; cursor: pointer; transition: all 0.3s ease; }
.dot.active { background: var(--c-cyan); border-color: var(--c-cyan); width: 30px; border-radius: 10px; }
@media (max-width: 768px) {
  .hero-slider { height: 90vh; }
  .hero-slider .container { padding: 0 1.5rem; text-align: center; }
  .hero-slider h1 { font-size: clamp(1.5rem, 8vw, 2.2rem); margin-bottom: 1.5rem; line-height: 1.2; font-weight: 300; text-align: center; max-width: 100%; white-space: normal; }
  .hero-slider p { font-size: 0.75rem; margin-bottom: 3rem; line-height: 1.8; text-align: center; max-width: 100%; letter-spacing: 0.12em; text-transform: uppercase; }
  .hero-slider .hero-buttons { flex-direction: column; gap: 1rem; width: 100%; align-items: center; }
  .btn-hero-primary, .btn-hero-secondary { width: 100%; max-width: 300px; padding: 1.2rem 2rem; font-size: 0.9rem; }
  .slider-controls { display: none; }
}

/* --- STANDARD FEATURE GRID (Contact Page Style) --- */
.feature-grid-standard {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
}
.feature-grid-standard .feature-item-std {
  text-align: center;
}
.feature-grid-standard .feature-icon-std {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: rgba(0, 0, 0, 0.08);
  color: var(--c-magenta);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  transition: transform 0.3s ease;
}
.feature-grid-standard .feature-item-std h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--text-main);
  font-weight: 700;
}
.feature-grid-standard .feature-item-std p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .feature-grid-standard {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
    .slide-overlay {
        background: radial-gradient(circle, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.7) 100%) !important;
    }
}

.desktop-nav { display: flex; list-style: none; gap: 2rem; margin: 0 4rem 0 auto; padding: 0; align-items: center; justify-content: center; }
.desktop-nav li a { color: #000000 !important; font-weight: 500; text-decoration: none; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 1px; display: flex; align-items: center; gap: 0.5rem; }
.desktop-nav li a:hover { color: var(--text-muted) !important; }

.header-actions .action-icon, .mobile-menu-toggle { color: #000000 !important; }
#searchIcon { color: #000000 !important; }

/* ── GLASS NAVBAR ── */
.glass-navbar {
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: calc(100% - 60px);
  max-width: 1200px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.08); /* Higher transparency */
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 60px;
  padding: 8px 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: 'Barlow', sans-serif;
}

.mobile-toggle { display: none; }

/* Optional: Make it even more transparent/compact when scrolling */
.glass-navbar.scrolled {
  top: 10px;
  background: rgba(10, 20, 35, 0.6);
  padding: 8px 30px;
  backdrop-filter: blur(25px) saturate(1.6);
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
  color: var(--text-white);
  font-family: 'Barlow', sans-serif;
  font-weight: 700; font-size: 1.22rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.nav-links {
  display: flex; align-items: center;  gap: 28px;
  list-style: none;
  margin: 0 auto;
  padding: 0 20px;
}

.nav-links a {
  color: var(--text-white);
  text-decoration: none;
  font-size: 0.97rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  opacity: 0.9;
  transition: opacity 0.2s;
}

.nav-links a:hover { opacity: 1; }
.nav-links .has-arrow { display: flex; align-items: center; gap: 6px; cursor: pointer; }
.nav-links .has-arrow svg { width: 14px; height: 14px; opacity: 0.7; }

.nav-right { display: flex; align-items: center; gap: 14px; }

.btn-get-started {
  display: inline-block;
  text-decoration: none;
  background: #fff;
  color: #111;
  border: none;
  border-radius: 60px;
  padding: 8px 22px;
  font-size: 0.96rem; font-weight: 600;
  font-family: 'Barlow', sans-serif;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.btn-get-started:hover { background: #f0f0f0; transform: scale(1.04); }

.nav-whatsapp {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.nav-whatsapp:hover { background: rgba(255,255,255,0.18); }
.nav-whatsapp svg { width: 20px; height: 20px; fill: #fff; }


@media (max-width: 768px) {
  .glass-navbar {
    top: 10px;
    left: 0; right: 0;
    margin: 0 auto;
    width: calc(100% - 20px);
    padding: 10px 15px;
  }
  .nav-links, .nav-right .btn-get-started {
    display: none !important;
  }
  .nav-right {
    display: flex !important;
  }
  .mobile-toggle {
    display: block !important;
    color: var(--text-white);
    font-size: 1.4rem;
    cursor: pointer;
  }
}

.navbar-wrapper {
  background: #000000 !important;
  width: 100% !important;
  height: 100px; /* Provide space for the fixed navbar */
  display: block;
  position: relative;
  z-index: 999;
}

.navbar-wrapper .glass-navbar {
  /* Inherits fixed position from base class */
}

/* ── MOBILE FOOTER CENTERING ── */
@media (max-width: 768px) {
  .footer-contact {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-contact .contact-item {
    flex-direction: column;
    align-items: center !important;
    text-align: center;
    margin-bottom: 1.5rem !important;
  }
  .footer-contact .contact-item i {
    margin-right: 0 !important;
    margin-bottom: 8px;
  }
  .footer-about, .footer-links {
    text-align: center;
    margin-bottom: 2rem;
  }
  .footer-links ul {
    padding: 0;
    list-style: none;
  }
  .logo-footer {
    display: flex;
    justify-content: center;
  }
}

/* ── HORIZONTAL OVERFLOW FIXES ── */
html, body {
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
}

.grid-1-2-col, .grid-1-3-col, .grid-1-4-col {
  max-width: 100%;
}

/* Responsive Bullet Lists (Fixes Service Pages) */
.portfolio-bullets {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  list-style: none;
  padding: 0;
}

@media (max-width: 768px) {
  .portfolio-card .portfolio-bullets {
    display: none !important;
  }
}

/* Responsive Metrics/Stats (Fixes About Page) */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (max-width: 480px) {
  .metrics-grid {
    grid-template-columns: 1fr;
  }
}

/* Mega Menu Hover for Glass Navbar */
.nav-links li { position: relative; }
.nav-links li:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
