/* COLOR PALETTE - Updated with new green shade */
:root {
  --primary-black: #000000;
  --secondary-black: #0a0a0a;
  --card-black: #111111;
  --card-gray: #1a1a1a;
  --border-gray: #333333;
  --border-light: #444444;
  --text-white: #ffffff;
  --text-light-gray: #e5e5e5;
  --text-medium-gray: #cccccc;
  --text-dark-gray: #999999;
  --accent-green: #B392FF; /* Change to purple */
  --accent-green-hover: #6A0DAD; /* Darker purple for hover */
  --accent-green-light: rgba(75, 0, 130, 0.1);
  --smoke-color: #e5e5e5;
  --products-bg: #F0EBE8;
}

/* GLOBALS */
html {

  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  font-family: "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--primary-black);
  color: var(--text-white);
  min-height: 100vh;
  line-height: 1.6;
  padding-top: 5.5rem;
  margin: 0;
  padding-left: 0;
  padding-right: 0;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

::-webkit-scrollbar {
  width: 0.5em;
  background: var(--secondary-black);
}

::-webkit-scrollbar-thumb {
  background: var(--border-gray);
  border-radius: 0.25em;
}

/* TYPOGRAPHY - Updated for DATALACE single line */
.brand-logo {
  font-family: "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 500;
  font-size: clamp(2.5rem, 8vw, 6rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.25em;
  display: block;
  text-align: left;
  white-space: nowrap;
  line-height: 1;
}

.brand-bold {
  font-weight: 500;
  color: var(--text-white);
  letter-spacing: -0.02em;
}

.brand-gradient {
  font-weight: 500;
  color: var(--text-white);
  margin-left: 0.1em;
}

/* SECTION HEADINGS - With proper spacing from navbar */
section h2 {
  text-align: center;
  font-family: "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--text-white);
  margin-bottom: 0.5rem;
  margin-top: 0;
  line-height: 1.13;
  hyphens: auto;
  word-wrap: break-word;
}

.left-align {
  text-align: left !important;
  margin-bottom: 3rem;
}

.head-accent {
  font-weight: 400;
  color: var(--accent-green);
}

/* SECTION SUBTITLE */
.section-subtitle {
  text-align: center;
  color: var(--text-medium-gray);
  margin-bottom: 1rem;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  padding: 0 1rem;
  line-height: 1.5;
  font-weight: 400;
}

/* NAVIGATION */
nav {
  width: 100%;
  left: 0;
  right: 0;
  top: 0.75rem;
  padding: 0;
  position: fixed;
  z-index: 110;
  background: transparent;
  height: 4.75rem;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 81rem;
  margin: 0 auto;
  padding: 0 1.1rem;
  width: 100%;
  height: 4.75rem;
}

#nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--text-white);
  cursor: pointer;
  outline: none;
  margin-left: 0.6rem;
  margin-right: 0.3rem;
  z-index: 120;
}

#nav-menu {
  display: flex;
  background: rgba(17, 17, 17, 0.95);
  border: 1px solid var(--border-gray);
  border-radius: 2.65rem;
  padding: 0.65rem 2.7rem;
  gap: 2.25rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), 0 4px 16px rgba(0, 0, 0, 0.4);
  align-items: center;
  max-width: calc(100vw - 2rem);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

nav a {
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  font-weight: 500;
  padding: 0.6rem 1.2rem;
  border-radius: 1.25rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  position: relative;
  transform: translateY(0);
  color: var(--text-light-gray);
}

nav a.active,
nav a:hover {
  background: var(--accent-green);
  color: var(--primary-black);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(153, 252, 214, 0.3);
}


header#home {
  position: relative;
  min-height: 100vh;
  width: 100%;
  background: #000 url("images/new_background.jpeg") left bottom / 55vw no-repeat;
  background-attachment: fixed;
  margin: 0 auto;
  z-index: 1;
  margin-bottom: 0;
  padding: 0 1rem;
  display: flex;
  align-items: flex-start;;
  justify-content: flex-end;
}


/* Add opacity overlay */
header#home::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7); /* Black overlay to reduce image opacity */
  pointer-events: none;
  z-index: 2;
}

header#home::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    repeating-conic-gradient(from 0deg at 50% 50%, 
      rgba(255,255,255,0.02) 0deg, 
      transparent 1deg, 
      rgba(255,255,255,0.01) 2deg),
    repeating-radial-gradient(circle at 0% 50%, 
      transparent 0px, 
      rgba(255,255,255,0.03) 1px, 
      transparent 2px);
  background-size: 2px 2px, 3px 3px;
  filter: blur(0.2px);
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
}

/*
.hero-content {
  margin: 0;
  max-width: clamp(18rem, 35vw, 36rem);
  padding-top: clamp(2.5rem, 7vw, 5.5rem);
  padding-bottom: clamp(2.5rem, 7vw, 5.5rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  margin-right: clamp(2rem, 18vw, 15rem);
  margin-left: auto;
  padding-left: clamp(4rem, 12vw, 10rem);
  position: relative;
  z-index: 2;
}
*/

.hero-content {
  position: relative;
  z-index: 3;
  text-align: left;
  max-width: 600px;
  padding-top: clamp(1rem, 20vh, 50rem);
  margin-right: 5rem; /* Simple fixed right margin */
  margin-left: auto;
  transform: translateX(5rem); /* Negative value pushes MORE to the right */
}



.hero-content p {
  color: var(--text-light-gray);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* BUTTONS */
.primary-btn,
.secondary-btn,
button.primary-btn {
  background: var(--accent-green);
  color: var(--primary-black);
  outline: none;
  border: none;
  font-family: inherit;
  font-size: clamp(0.9rem, 2.5vw, 1.08rem);
  padding: 0.75em 2em;
  border-radius: 0.6em;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  margin: 1.1em 0 0 0;
  display: inline-block;
  min-width: 120px;
  text-align: center;
  position: relative;
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(153, 252, 214, 0.2);
}

.secondary-btn {
  background: transparent;
  color: var(--accent-green);
  border: 2px solid var(--accent-green);
  box-shadow: 0 2px 8px rgba(153, 252, 214, 0.1);
}

.secondary-btn:hover,
.primary-btn:hover {
  background: var(--accent-green-hover);
  color: var(--primary-black);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(153, 252, 214, 0.3);
}

.primary-btn:active,
.secondary-btn:active {
  transform: translateY(-1px);
  transition: all 0.1s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

/* SECTION SPACING - Full viewport height for all sections */
section {
  width: 100%;
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(6rem, 10vw, 8rem) 0 clamp(4rem, 8vw, 6rem) 0;
}

/* ABOUT SECTION - Full height with proper spacing */
section#about {
  background: var(--primary-black);
  padding: clamp(6rem, 10vw, 8rem) clamp(1rem, 5vw, 3rem) clamp(4rem, 8vw, 6rem) clamp(1rem, 5vw, 3rem);
}

/* SERVICES SECTION - Full height */
section#services {
  background: #B392FF;
  color: var(--primary-black); /* Change from white to black */
  padding: clamp(4rem, 6vw, 5rem) clamp(1rem, 5vw, 3rem) clamp(4rem, 8vw, 6rem) clamp(1rem, 5vw, 3rem);
}

section#services h2,
section#services .section-subtitle {
color: var(--primary-black); /* Change to black */
}

section#services .section-subtitle {
  color: rgba(0, 0, 0, 0.8);
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-weight: 400;
}

section#services .head-accent {
  color: var(--primary-black);
}

/* PRODUCTS SECTION - Full height */
section#products {
  background: var(--products-bg);
  padding: clamp(4rem, 6vw, 5rem) clamp(1rem, 5vw, 3rem) clamp(4rem, 8vw, 6rem) clamp(1rem, 5vw, 3rem); /* Same as other sections */
  min-height: 100vh; /* Normal height like other sections */
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Keep headings separate and visible */
.products-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 10;
}

section#products h2 {
  color: var(--primary-black);
}

section#products .section-subtitle {
  color: #555555;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-weight: 400;
}

/* Updated products headings to be only black */
section#products h3 {
  color: var(--primary-black) !important;
}

section#products .head-accent {
  color: var(--primary-black) !important;
}

/* CONTACT SECTION - Full height */
section#contact {
  background: var(--primary-black);
  padding: clamp(6rem, 10vw, 8rem) clamp(1rem, 5vw, 3rem) clamp(4rem, 8vw, 6rem) clamp(1rem, 5vw, 3rem);
}

.pad-wrap,
.about-container,
.services-grid,
.contact-content {
  max-width: 71.8rem;
  margin: 0 auto;
  padding: 0 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ABOUT GRID */
.about-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2.1rem;
  flex-direction: row;
}

.about-left {
  flex: 1;
  width: 100%;
}

.about-left p {
  color: var(--text-medium-gray);
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
/*
.about-right {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.3rem;
  background: var(--card-gray);
  border-radius: 1.1rem;
  padding: 2.1rem 1.7rem 1.3rem 1.7rem;
  width: 100%;
  min-width: unset;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--border-gray);
}
*/

.about-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1.3rem;
  background: var(--card-gray);
  border-radius: 1.1rem;
  padding: 2.1rem 1.7rem 1.3rem 1.7rem;
  width: 100%;
  max-width: 400px;
  min-width: unset;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--border-gray);
  margin-top: 2rem; /* Add this to push the box down */
}

.about-feature {
  background: var(--secondary-black);
  border-radius: 1em;
  text-align: center;
  padding: 1.5em 0.5em 0.6em 0.5em;
  min-height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-gray);
  transform: translateY(0);
  position: relative;
  overflow: hidden;
}

.about-feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-green);
}

.about-feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), 0 2px 8px rgba(153, 252, 214, 0.1);
  border: 1px solid var(--border-light);
}

.about-feature .icon {
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--accent-green);
  margin-bottom: 0.5em;
}

.about-feature .icon svg {
  stroke: var(--accent-green);
}

.about-feature div:last-child {
  font-size: clamp(0.8rem, 2.5vw, 1rem);
  line-height: 1.2;
  color: var(--text-light-gray);
}

/* SERVICES - Updated Aware-style layout with icons and dividers */
.services-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  justify-content: center;
  margin: 0 auto;
  align-items: stretch;
}

.service-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(0);
  text-align: center;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: none;
  background: transparent;
}

.service-icon {
  margin-bottom: 0.25rem;
  color: var(--primary-black);
}

.service-icon svg {
  stroke: var(--primary-black);
  fill: none;
}

.service-divider {
  width: 2px;
  height: 300px;
  background: rgba(0, 0, 0, 0.2);
  margin: 2rem 0;
  align-self: center;
}

.service-card h3 {
  font-family: "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 600;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  margin: 0 0 0.5em 0;
  color: var(--primary-black);
  letter-spacing: -0.01em;
}

.service-card p {
  color: var(--primary-black); /* Change to black */
  margin-bottom: 0.8em;
  font-size: clamp(0.95rem, 2.2vw, 1.05rem);
  line-height: 1.5;
  flex-grow: 1;
}

.service-card ul {
  padding-left: 0;
  margin-bottom: 1rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Change from center to flex-start */
}

.service-card ul li {
 color: var(--primary-black); /* Change to black */
  font-size: clamp(0.9rem, 2.2vw, 1rem);
  text-align: center;
  list-style: none;
  margin-bottom: 0.5em;
  padding-left: 1rem;
  font-weight: 500;
  position: relative;
  width: 100%;
}

.service-card ul li:before {
  content: "";
  color: var(--primary-black); /* Change bullet to black */
  font-weight: bold;
  position: absolute;
  left: 0px;
}

.service-card .secondary-btn {
  margin-top: auto;
  align-self: center;
  background: transparent;
   color: var(--primary-black); 
  border: 2px solid var(--primary-black);
  margin: 0.5em 0 0 0;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card .secondary-btn:hover {
  background: var(--primary-black);
  color: #B392FF;
}

/* Products container with horizontal scroll */
.products-container {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 4rem;
  width: max-content;
  padding: 0 2rem;
  transition: transform 0.5s ease-out;
  transform: translateX(0);
}

.product-card {
  flex: 0 0 60vw; /* Each card takes 60% of viewport width */
  min-height: 400px; /* Ensure consistent height */
  margin: 0;
  background: rgba(255, 255, 255, 0.9);
  padding: 3rem;
  border-radius: 1rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}


.product-divider {
  display: none; /* Hide dividers for horizontal layout */
}

.product-card::before {
  display: none;
}

.product-card:hover {
  transform: none;
  box-shadow: none;
  border: none;
}

.product-card h3 {
  margin-top: -0.5rem;
  font-family: "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: var(--primary-black);
  margin-bottom: 0.5em;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.product-card p {
  color: #666666;
  margin-bottom: 0.8em;
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  line-height: 1.7;
}

/* PRODUCTS - Horizontal bullet lists */
.product-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem 2rem;
  color: #333333;
  padding-left: 0;
  list-style: none;
  margin-bottom: 1.5rem;
}

.product-features li {
  display: flex;
  align-items: center;
  margin-bottom: 0.8em;
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  position: relative;
  padding-left: 1.2em;
}

.product-features li:before {
  content: "•";
  color: #333333;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* CONTACT */
.contact-content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2.1rem;
}

.contact-right {
  flex: 1;
  max-width: 35rem;
  background: var(--card-black);
  border: 1px solid var(--border-gray);
  border-radius: 1.2rem;
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  width: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transform: translateY(0);
  position: relative;
  overflow: hidden;
}

.contact-right::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-green);
  border-radius: 1.2rem 1.2rem 0 0;
}

.contact-right:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 4px 16px rgba(153, 252, 214, 0.1);
  border: 1px solid var(--border-light);
}

.contact-right p {
  color: var(--text-medium-gray);
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.contact-info {
  margin-bottom: 1.4em;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8em;
  margin-bottom: 1em;
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  color: var(--text-light-gray);
}

.info-item .icon {
  color: var(--accent-green);
}

.info-item .icon svg {
  stroke: var(--accent-green);
}

.info-item .muted {
  color: var(--text-medium-gray);
  font-size: clamp(0.9rem, 2vw, 1rem);
}

/* AWARE-STYLE FOOTER WITH FANCY HOVER ROLL EFFECT */
footer {
  margin-top: 0;
  padding: 0;
  background: transparent;
}

.footer-main {
  display: flex;
  min-height: 200px;
}

.footer-left {
 background: #B392FF; /* Purple footer */
  flex: 1;
  padding: clamp(2rem, 4vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
color: var(--text-white);
}

.footer-logo {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--primary-black);
  overflow: hidden;
  position: relative;
}

.footer-logo:hover {
color: rgba(0, 0, 0, 0.7); /* Simple fade effect instead of animation */
  transition: color 0.3s ease;
}


.footer-contact-title {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--primary-black);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.footer-contact-title:hover {
  color: rgba(0, 0, 0, 0.7);
  transition: color 0.3s ease;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-contact-info a {
  color: var(--text-white);
  text-decoration: none;
  font-size: clamp(0.9rem, 2vw, 1rem);
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
  display: inline-block;
}

.footer-contact-info a:hover {
  color: rgba(0, 0, 0, 0.7);
  transition: color 0.3s ease;
}

.footer-right {
  background: #d1d5db;
  flex: 1;
  padding: clamp(2rem, 4vw, 4rem);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  color: var(--primary-black);
}

.footer-nav-section h4 {
  font-size: clamp(1rem, 2vw, 1.1rem);
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-black);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.footer-nav-section h4:hover {
color: rgba(0, 0, 0, 0.7);
  transition: color 0.3s ease;
}

.footer-nav-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav-section ul li {
  margin-bottom: 0.5rem;
}

.footer-nav-section ul li a {
  color: #4b5563;
  text-decoration: none;
  font-size: clamp(0.85rem, 1.8vw, 0.95rem);
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
  display: inline-block;
}

.footer-nav-section ul li a:hover {
  color: var(--primary-black);
 transition: color 0.3s ease;
}

.footer-bottom {
  background: var(--primary-black);
  padding: 1.5rem clamp(1rem, 4vw, 4rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-white);
}

.footer-bottom-left {
  font-size: clamp(0.8rem, 1.5vw, 0.9rem);
  color: var(--text-medium-gray);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  color: var(--text-white);
  font-size: 1.2rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-social a:hover {
  color: var(--accent-green);
  transform: scale(1.2) rotate(15deg);
}

/* FANCY CURSOR & SMOKE */
body,
html {
  cursor: auto;
}

#fancy-cursor {
display: none !important; /* Hide the fancy cursor completely */
}

#smoke-canvas {
  display: none !important; /* Also hide smoke canvas if you don't want it */
}

/* Hide fancy effects on coarse pointer (touch) */
@media (pointer: coarse) {
  #fancy-cursor {
    display: none !important;
  }
  
  html,
  body {
    cursor: auto !important;
  }
  
  #smoke-canvas {
    display: none !important;
  }
}

/* RESPONSIVE BREAKPOINTS */

@media (min-width: 1400px) {
  .hero-content {
    margin-right: 18rem;
    padding-left: 12rem;
  }
}

@media (max-width: 1024px) {
  .hero-content {
    margin-right: clamp(3rem, 15vw, 12rem);
    padding-left: clamp(5rem, 10vw, 8rem);
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .service-divider {
    display: none;
  }
  
  .service-card {
    min-height: auto;
  }
  
  .product-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 4.75rem;
  }
  
  nav {
    height: 4rem;
    top: 0.5rem;
  }
  
  .nav-container {
    height: 4rem;
  }


/* FIX MOBILE - ENSURE FULL COVERAGE TOP TO BOTTOM */
/* FIX MOBILE - ENSURE FULL COVERAGE TOP TO BOTTOM */
header#home {
  justify-content: center !important;
  align-items: flex-start !important;
  background: #000 url("images/new_background.jpeg") no-repeat;
  background-size: 250% auto !important; /* Very large zoom */
  background-position: 50% 20% !important; /* Position to show the upper portion */
  padding: 0;
  min-height: 100vh !important;
  overflow: hidden !important; /* Ensure no overflow */
}

  /* MUCH DARKER OVERLAY FOR BETTER TEXT VISIBILITY */
  header#home::after {
    background: rgba(0, 0, 0, 0.8) !important; /* Increased from 0.85 to 0.9 - very dark */
  }
  
  .hero-content {
    text-align: center !important;
    margin: 0 !important;
    margin-top: 6rem !important; /* Adjusted for larger content */
    padding: 0 1.5rem 2rem 1.5rem !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box;
    
    /* Reset desktop positioning */
    transform: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  /* LARGER, THICKER HEADING */
/* EVEN LARGER, THICKER HEADING */
.hero-content .brand-logo {
  background: none;
  padding: 0;
  border-radius: 0;
  backdrop-filter: none;
  margin-bottom: 2.5rem !important;
  display: block;
  text-align: center !important;
  font-size: clamp(4rem, 15vw, 6.5rem) !important; /* Increased from 3rem/12vw/5rem to 4rem/15vw/6.5rem */
  font-weight: 800 !important; /* Increased from 700 to 800 - even thicker */
  letter-spacing: -0.02em !important;
}

  /* LARGER PARAGRAPH TEXT */
  .hero-content p {
    background: none;
    padding: 0 !important;
    border-radius: 0;
    backdrop-filter: none;
    margin: 0 auto 3rem auto !important;
    display: block;
    max-width: 100% !important;
    text-align: center !important;
    word-wrap: break-word;
    line-height: 1.7;
    font-size: clamp(1.1rem, 4vw, 1.4rem) !important; /* Increased font size */
    font-weight: 400 !important;
  }

    .about-container {
    flex-direction: column; /* Stack vertically on mobile */
  }
  
  .about-right {
    max-width: 100%; /* Ensure full width on tablets/mobile */
  }

  /* LARGER BUTTONS */
  .cta-buttons {
    justify-content: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 1.5rem !important; /* More gap between buttons */
    width: 100% !important;
  }

  .primary-btn,
  .secondary-btn {
    background: var(--accent-green); /* Uses your variable */
    backdrop-filter: none;
    border: 2px solid var(--accent-green); /* Uses your variable */
    width: 100% !important;
    max-width: 320px !important; /* Wider buttons */
    text-align: center !important;
    font-size: clamp(1.1rem, 4vw, 1.3rem) !important; /* Larger button text */
    font-weight: 600 !important; /* Bolder button text */
    padding: 1rem 2.5rem !important; /* Larger button padding */
    min-height: 54px !important; /* Taller buttons */
  }

  .secondary-btn {
    background: transparent;
 color: var(--accent-green); /* Uses your variable */
  border: 2px solid var(--accent-green); /* Uses your variable */
  }

  /* OTHER MOBILE STYLES */
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .service-divider {
    display: none;
  }
  
  .service-card {
    min-height: auto;
  }

  .footer-main {
    flex-direction: column;
  }
  
  .footer-right {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .product-features {
    grid-template-columns: 1fr;
  }

  section {
    min-height: auto;
    padding: clamp(4rem, 8vw, 6rem) 0;
  }
  
  section#about {
    padding: clamp(4rem, 8vw, 6rem) clamp(1rem, 3vw, 2rem);
  }
  
  section#services {
    padding: clamp(4rem, 8vw, 6rem) clamp(1rem, 3vw, 2rem);
  }
  
  section#products {
    padding: clamp(4rem, 8vw, 6rem) clamp(1rem, 3vw, 2rem);
  }
  
  section#contact {
    padding: clamp(4rem, 8vw, 6rem) clamp(1rem, 3vw, 2rem);
  }
}

@media (max-width: 640px) {
  #nav-toggle {
    display: block;
  }
  
  .nav-container {
    justify-content: flex-end;
  }
  
  #nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 4.1rem;
    right: 0.5rem;
    left: 0.5rem;
    border-radius: 1.3rem;
    width: auto;
    min-width: unset;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8);
    padding: 0.6em 0;
    background: rgba(17, 17, 17, 0.97);
    z-index: 200;
    gap: 0.5rem;
  }
  
  #nav-menu.active {
    display: flex;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .primary-btn,
  .secondary-btn {
    width: 100%;
    max-width: 250px;
  }
}

@media (max-width: 480px) {
  body {
    padding-top: 4rem;
  }
  
  nav {
    height: 3.5rem;
    top: 0.25rem;
  }
  
  .nav-container {
    height: 3.5rem;
    padding: 0 0.5rem;
  }
  
  #nav-menu {
    top: 3.75rem;
  }

  .about-right {
    grid-template-columns: repeat(2, 1fr); /* Keep 2 columns on mobile */
    grid-template-rows: repeat(2, 1fr); /* Keep 2 rows */
    gap: 0.8rem; /* Smaller gap for mobile */
    padding: 1.5rem 1rem;
    max-width: 100%; /* Full width on mobile */
    margin-top: 1.5rem; /* Less margin on mobile */
  }
  
  .about-feature {
    padding: 1rem 0.3em 0.5em 0.3em;
    min-height: 80px;
    font-size: 0.85rem; /* Slightly smaller text */
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .service-card {
    padding: 1.5rem 1rem;
  }

  .product-card {
    padding: 1.5rem 1rem;
  }

  .contact-right {
    padding: 1.5rem 1rem;
  }

  .footer-right {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .product-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 360px) {
  .brand-logo {
    font-size: clamp(1.4rem, 8vw, 2rem);
  }
  
  section h2 {
    font-size: clamp(1.3rem, 6vw, 2rem);
  }
  
  .about-right {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  
  .about-feature {
    min-height: 70px;
  }
}

/* Landscape orientation optimizations */
@media (orientation: landscape) and (max-height: 500px) {
  header#home {
    min-height: 90vh;
  }
  
  .hero-content {
    padding-top: clamp(1rem, 3vh, 2rem);
    padding-bottom: clamp(1rem, 3vh, 2rem);
  }
  
  nav {
    height: 3rem;
    top: 0.25rem;
  }
  
  .nav-container {
    height: 3rem;
  }
  
  body {
    padding-top: 3.5rem;
  }

  section {
    min-height: 90vh;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --primary-black: #000000;
    --text-white: #ffffff;
    --accent-green: #99FCD6;
    --border-gray: #666666;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  #fancy-cursor {
    display: none !important;
  }
  
  #smoke-canvas {
    display: none !important;
  }
  
  html,
  body {
    cursor: auto !important;
  }
  
  /* Disable fancy roll animations for reduced motion */
  .footer-logo,
  .footer-contact-title,
  .footer-contact-info a,
  .footer-nav-section h4,
  .footer-nav-section ul li a {
    animation: none !important;
  }
  
  .footer-social a:hover {
    transform: none !important;
  }
}

/* Print styles */
@media print {
  * {
    background: white !important;
    color: black !important;
    box-shadow: none !important;
  }
  
  nav,
  #fancy-cursor,
  #smoke-canvas,
  .cta-buttons {
    display: none !important;
  }
  
  body {
    padding-top: 0;
  }
  
  section {
    break-inside: avoid;
    page-break-inside: avoid;
  }
}

/* Focus styles for accessibility */
button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--accent-green);
  outline-offset: 2px;
}

/* Selection styling */
::selection {
  background: var(--accent-green);
  color: var(--primary-black);
}

::-moz-selection {
  background: var(--accent-green);
  color: var(--primary-black);
}

/* Loading animation for dynamic content */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

/* Utility classes */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.hidden {
  display: none;
}

.visible {
  display: block;
}

/* Screen reader only content */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 480px) {
  header#home {
    background: #000 url("images/new_background.jpeg") center center / cover no-repeat;
    background-attachment: scroll; /* Change from fixed to scroll for mobile */
  }
}

