/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

/* light edge “tracks” so wide monitors don’t feel empty */
body::before,
body::after{
  content:"";
  position:fixed;
  top:0; bottom:0;
  width:12vw;               /* tweak 8–14vw */
  background:#f1f1f1;
  z-index:-1;
}
body::before{ left:0; }
body::after { right:0; }

body::before,
body::after { display: none !important; }

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 999;
  box-shadow: 0 2px 12px rgb(99, 99, 99);

}

.navbar-container {
  max-width: 1200px;
  margin: auto;
  padding: 0px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo-placeholder {
  font-size: 1.5em;
  font-weight: bold;
  color: #ff6600;
}

.logo {
  height: 100px !important;
  width: auto !important;
  max-height: 100px;
  display: block;
}


.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  transition: color 0.3s ease, transform 0.2s ease;
  padding-bottom: 4px;
  position: relative;
}

.nav-links li a:hover,
.nav-links li a.active {
  background-image: linear-gradient(to right, rgb(255, 255, 255), #ff0000);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: translateY(-2px);
}


.nav-links li a::after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background: linear-gradient(to right, black, #ff0000);
  transition: width 0.3s;
  position: absolute;
  left: 0;
  bottom: -2px;
}
.nav-links li a:hover::after,
.nav-links li a.active::after {
  width: 100%;
}

/* Optional mobile menu handling can go here later */


/* Hero */
.hero {
  background: linear-gradient(to right, #1e1e1e, #3a3a3a);
  color: white;
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  
}
.hero-content h1 {
  font-size: 3em;
  margin-bottom: 20px;
}
.hero-content p {
  font-size: 1.2em;
  margin-bottom: 30px;
}
.btn {
  display: inline-block;
  background: linear-gradient(to right, black, #ff0000);
  color: linear-gradient(to right, black, #ff0000);
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn.small {
  padding: 8px 18px;
  font-size: 0.9em;
}

/* Main sections */
main section {
  padding: 80px 20px;
  max-width: 1000px;
  margin: auto;
  
  padding: 60px 20px;
}
h2 {
  font-size: 2em;
  color: #222;
  margin-bottom: 20px;
}
.why-print ul {
  padding-left: 20px;
  list-style: disc;
}
.why-print li {
  margin-bottom: 12px;
}

.why-print p {
  font-size: 0.9em;
  margin: 0 0 0 0;
  color: #444;
}

.about-preview {
  position: relative;
  background: linear-gradient(to right, #fefefe, #f4f4f4);
  padding: 80px 20px;
  margin: 50px auto;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  z-index: 1;
  text-align: center;
}

/* Animated background inside box */
.about-preview::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
    45deg,
    rgba(255, 102, 0, 0.04),
    rgba(255, 102, 0, 0.04) 1px,
    transparent 2px,
    transparent 8px
  );
  animation: moveLines 10s linear infinite;
  z-index: 0;
}
.about-preview > * {
  position: relative;
  z-index: 1;
}

@keyframes moveLines {
  from { transform: translate(0, 0); }
  to { transform: translate(30px, 30px); }
}


/* Footer */
footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 20px;
}


footer p:hover {
  background: linear-gradient(to right, black, #ff0000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  /* Optional for better support */
  background-clip: text;
  color: transparent;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2em;
  }
  .nav-links {
    flex-direction: column;
    gap: 10px;
  }
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* New: Benefit Cards */
.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 30px;
}
.benefit-card{
  background:#fff;
  border-radius:16px;
  padding:55px 30px;
  box-shadow:0 8px 22px rgba(0,0,0,.06);
  transition:transform .25s,box-shadow .25s;
}
.benefit-card h3{
  color:#ff6600;
  margin-top:25px;
}
.benefit-card:hover{
  transform:translateY(-8px);
  box-shadow:0 18px 35px rgba(215, 43, 0, 0.58);   /* orange glow */
}
.emoji {
  font-size: 2em;
}

/* Fade-in Animation */
.animated-section .benefit-card.show {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.btn {
  display: inline-block;
  background: linear-gradient(to right, black, #ff0000);
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn:hover {
  background: linear-gradient(to right, black, #ff0000);
  transform: scale(1.05);
}

h1, h2, h3, p {
  transition: color 0.3s ease, transform 0.2s ease;
  cursor: default;
}

h1:hover, h2:hover, h3:hover {
  background: linear-gradient(to right, black, #ff0000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  /* Optional for better support */
  background-clip: text;
  color: transparent;
  transform: translateY(-3px);
}

p {
  font-size: 1.1em;
  margin: 0px 69px 20px;
}

.project-card p {
  font-size: 1.1em;
  margin: 0px;
}

p:hover {
  color: #ff6f00;
  transform: translateY(-1px);
} 

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  transition: color 0.3s ease, transform 0.2s ease;
}

.nav-links li a:hover {
  color: #ff6600;
  transform: scale(1.05);
}



/* Industries */
.industries {
  width: 100%;
  max-width: 100%; /* override any earlier limit */
  margin: 0 auto;  /* center if there's still a max-width */
  padding: 80px 60px; /* increase left & right padding */
  text-align: center;
  background: #fff;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  margin-top: 30px;
}
.industry-card {
  background: #f9f9f9;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}
.industry-card:hover {
  transform: translateY(-5px);
}
.industry-card span {
  font-size: 2em;
  display: block;
  margin-bottom: 10px;
  color: #ff6600;
}

.industries p {
  font-size: 0.9em;
  color: #666;
  margin: 0;
}
/* How it Works */
.how-it-works {
  
  padding: 80px 20px;
  text-align: center;
}
.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 30px;
  margin-top: 30px;
}
.step {
  flex: 1 1 200px;
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.step span {
  font-size: 1.5em;
  background: #ff6600;
  color: white;
  border-radius: 50%;
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  margin-bottom: 10px;
}

.how-it-works p {
  font-size: 0.9em;
  margin: 10px 0;
}

.steps.new-style {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

.step-box {
  max-width: 180px;
  background: #dedede;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  flex: 1 1 150px;
  transition: transform 0.3s ease;
}

.step-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.step-box img {
  width: 50px;
  height: 50px;
  margin-bottom: 12px;
}

.step-box h4 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.step-box h4 span {
  font-weight: 600;
  font-size: 1.1rem;
  color: #222;
}

.step-box p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

.arrow {
  font-size: 2rem;
  line-height: 120px;
  color: #888;
}

/* ===== DESKTOP: keep the 5-step flow on one row ===== */
@media (min-width: 1100px) {          /* adjust if your page is narrower */
  .steps.new-style {
    flex-wrap: nowrap;               /* 🔑 don’t allow wrapping */
    justify-content: center;         /* keeps it centred under the heading */
  }

  /* fix widths so the calc fits in ~1000 px */
  .steps.new-style .step-box   { flex: 0 0 180px; }   /* each card 180 px */
  .steps.new-style .arrow      { flex: 0 0 40px;  }   /* arrow column 40 px */
}

/* ===== TABLET & BELOW: allow wrapping / smooth scroll ===== */
@media (max-width: 1099px) {
  .steps.new-style {
    flex-wrap: nowrap;              /* still one row… */
    overflow-x: auto;               /* …but let the row scroll sideways */
    scrollbar-width: thin;          /* Firefox */
  }
  .steps.new-style::-webkit-scrollbar {
    height: 6px;                    /* Chrome / Edge */
  }
  .steps.new-style::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
  }
}

/* Projects Preview */
.projects-preview {
  background: #fff;
  padding: 80px 20px;
  text-align: center;
}
.project-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 30px;
}
.project-card {
  max-width: 300px;
  background: #f3f3f3;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}
.project-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.project-card h3 {
  padding: 15px;
}
.projects-btn {
  margin-top: 40px;
}

/* CTA Banner */
.cta-banner {
  background: #ff6600;
  color: white;
  padding: 80px 20px;
  text-align: center;
}
.cta-banner h2 {
  font-size: 2em;
  margin-bottom: 20px;
}
.cta-banner .btn {
  background: white;
  color: #ff6600;
}
.cta-banner .btn:hover {
  background: #ffe2d2;
}

.swiper img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

/* ---------- HERO FULL-BLEED FIX ---------- */

.hero {
  position: relative;
  height: 90vh;            /* full-screen minus a bit for the navbar */
  overflow: hidden;        /* hide anything that sticks out */
}

/* make the swiper and every internal wrapper stretch 100% */
.hero .swiper,
.hero .swiper-wrapper,
.hero .swiper-slide {
  width: 100%;
  height: 100%;
}

/* force each slide image to cover the entire area */
.hero .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;       /* key line – crops to fill while preserving ratio */
}

/* optional: dark overlay for text contrast */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);   /* 45 % black */
  z-index: 1;
}

/* --- bottom fade so the image blends into #f9f9f9 --- */
.hero::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:10vh;                       /* tweak: 8–15vh works */
  background:linear-gradient(
              to bottom,
              rgba(0,0,0,0) 0%,
              #f9f9f9 100%);         /* match your page bg */
  z-index:2;                          /* sits above image, below text */
  pointer-events:none;
}


.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;               /* on top of the overlay */
  text-align: center;
  color: #fff;
}

/* ----------------------------------------------------------------- */

/* zebra-strip long pages */
section:nth-of-type(even) {
  background: #f9f9f9;        /* soft grey – stays bright */
}
section:nth-of-type(odd) {
  background: #f9f9f9;
}


/* ─── DIAGONAL DIVIDER ─────────────────────────────── */
.diag-divider{
  position: relative;
  height: 80px;                 /* overall thickness of the divider  */
  margin: -40px 0 40px 0;       /* pulls it up so it overlaps both sections */
  overflow: hidden;             /* hides anything that spills out    */
  pointer-events: none;         /* divider shouldn’t trap clicks     */
}

/* the actual stripe */
.diag-divider::before{
  content:"";
  position:absolute;
  inset:0;
  background: var(--divider-col, #f9f9f9);   /* default colour, easy to override */
  transform-origin: top left;
  transform: skewY(-4deg);       /* ↙︎ adjust the angle here */
  box-shadow: 0 2px 8px rgba(0,0,0,.04);     /* subtle depth */
}



.floater{
  position:absolute;
  right:4%;
  top:18%;
  width:56px;
  opacity:.12;
  animation:floater 12s ease-in-out infinite;
}
@keyframes floater{
  0%,100%{ transform:translateY(-8px) rotate(0deg); }
  50%   { transform:translateY(12px) rotate(4deg); }
}


.bg-grid{
  position:relative;
}
.bg-grid::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:url("data:image/svg+xml,%3Csvg fill='none' xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 4 4'%3E%3Ccircle cx='1' cy='1' r='0.7' fill='%23e6e6e6'/%3E%3C/svg%3E");
  opacity:0.25;                 /* change to 0.15 for subtler */
  pointer-events:none;
}
.bg-grid > *{ position:relative; } /* keep content clickable */


.section-pill{
  display:inline-block;
  background:#ff6600;
  color:#fff;
  font:bold .7rem/1.8 'Segoe UI',sans-serif;
  padding:0 .9rem;
  border-radius:9999px;
  letter-spacing:.05em;
  margin-bottom:.6rem;
  box-shadow:0 4px 12px rgba(255,102,0,.25);
}


.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 🔑 FIXED */
  gap: 40px;
  max-width: 1600px;
  margin: 80px auto;
  padding: 0 24px;
  background: #f1f1f1;
  height: 1300px;
  width: 100%; /* 🔑 Make sure it fills the column */
}


.feature-card{
  background:#fff;
  border:1px solid #ececec;
  border-radius:12px;
  box-shadow:0 8px 25px rgba(0,0,0,.05);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  transition:transform .25s,box-shadow .25s;
  justify-content: space-between;
  height: 200px;
  width: 100%; /* 🔑 Make sure it fills the column */

}

.feature-card:hover{
  transform:translateY(-6px);
  box-shadow:0 15px 35px rgba(0,0,0,.08);
}

/* --- text area --- */
.feature-card header{
  padding:40px 30px 10px;
}
.feature-tag{
  display:inline-block;
  font-size:.78rem;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.05em;
  color:#666;
  margin-bottom:8px;
}
.feature-card h3{
  font-size:1.55rem;
  margin:0 0 18px;
  line-height:1.3;
  color:#2d2d2d;
}
.feature-links{
  font-size:.9rem;
  font-weight:600;
  display:flex;
  justify-content:center;
  gap:20px;
}
.feature-links a{
  color:#16c24e;                     /* green like “Store” btn */
  text-decoration:none;
  position:relative;
}
.feature-links a:hover{
  color:#0fa442;
}
.feature-links a:hover::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:-2px;
  height:2px;
  background:currentColor;
}

/* --- hero image --- */
.feature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;          /* fills the box, may crop */
  object-position:bottom;  /* bottom center the crop */
  flex: 1;
}

/* Stack in one column on small screens */
@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

/* --- mobile tweak --- */
@media(max-width:600px){
  .feature-card img{ height:210px; }
}



/* --- END PRODUCT GRID --- */

/* === Collaborations Page === */

.collab-intro {
  text-align: center;
  max-width: 800px;
  margin: 100px auto 60px auto;
  padding: 0 20px;
}

.collab-intro h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.collab-intro p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.6;
}

/* Collaboration Cards Grid */
.collab-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.collab-card {
  background: #f9f9f9;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  text-align: center;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collab-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.partner-logo {
  max-width: 100px;
  height: auto;
  margin-bottom: 20px;
}

.collab-card h3 {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.collab-card p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 15px;
}

.project-preview {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 10px;
}

/* CTA Section */
.collab-cta {
  text-align: center;
  background: #111;
  color: white;
  padding: 80px 20px;
  margin-top: 60px;
}

.collab-cta h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.collab-cta p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: black;
}

.collab-cta p:hover {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: #ff6600;
  transition: color 0.3s ease;
}

.collab-cta .btn {
  padding: 12px 24px;
  background: #ff6600;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.collab-cta .btn:hover {
  background: #e65500;
}


/* FOOTER */
.footer {
  background: #111;
  color: #eee;
  padding: 60px 20px 30px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  margin-left: 50px;
  margin-right: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-logo img {
  width: 60px;
  margin-bottom: 10px;
}

.footer-logo p {
  font-size: 0.95rem;
  color: #bbb;
  max-width: 250px;
}

.footer-links h4,
.footer-extra h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ff6600;
}

.footer-extra p {
  color: #bbb;
  font-size: 0.95rem;
}

.footer-extra a {
  color: #ff6600;
  text-decoration: none;
}

.footer-extra .socials a img {
  width: 20px;
  margin-right: 10px;
  filter: grayscale(1);
  transition: filter 0.3s ease;
}

.footer-extra .socials a img:hover {
  filter: grayscale(0);
}

.footer-bottom {
  width: 100%;
  text-align: center;
  margin-top: 40px;
  font-size: 0.9rem;
  color: #777;
}

/* About Us Section */
/* Hero Section */
section.about-hero {

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 450px;
  padding: 100px 20px 60px;
  text-align: center;
  color: white;
  background-position: center bottom;
}


.about-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.about-hero p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: rgb(255, 255, 255);
}

/* Founders Section */
.founders-section {
  padding: 60px 20px;
  text-align: center;
  background-color: #fff;
}

.founders-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.founder-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.founder-card {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 12px;
  max-width: 300px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.founder-card p {
  margin: 0 0 20px;
}

.founder-card img {
  width: 120px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 20px;
}

.founder-card h3 {
  margin-bottom: 10px;
  color: #222;
}

.founder-card p {
  font-size: 0.95rem;
  color: #555;
}

/* Values Section */
.values-section {
  padding: 60px 20px;
  background-color: #f4f4f4;
  text-align: center;
}

.values-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.values-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.value-card p {
  margin: 0 0 20px;
}

.value-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  max-width: 300px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.value-card h3 {
  margin-bottom: 10px;
  color: #ff6600;
}

.value-card p {
  font-size: 0.95rem;
  color: #555;
}

/* Call to Action Section */
.cta-section {
  text-align: center;
  padding: 80px 20px;
  background: #111;
  color: white;
}

.cta-section h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.cta-section .btn {
  padding: 12px 24px;
  background: #ff6600;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.cta-section .btn:hover {
  background: #e65500;
}

/* Footer */
.footer {
  background: #111;
  color: #eee;
  padding: 60px 20px 30px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-logo img {
  width: 60px;
  margin-bottom: 10px;
}

.footer-logo p {
  font-size: 0.95rem;
  color: #bbb;
  max-width: 250px;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ff6600;
}

.footer-contact p {
  color: #bbb;
  font-size: 0.95rem;
}

.footer-contact .socials a img {
  width: 20px;
  margin-right: 10px;
  filter: grayscale(1);
  transition: filter 0.3s ease;
}

.footer-contact .socials a img:hover {
  filter: grayscale(0);
}

.footer-bottom {
  width: 100%;
  text-align: center;
  margin-top: 40px;
  font-size: 0.9rem;
  color: #777;
}

section.contact-hero {
  padding: 100px 20px 60px;
  text-align: center;
  background-color: #fdfdfd;
  background-image: url('../images/contact3.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 450px;
  color: white;
  background-position: center -180px;
}



.contact-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.contact-hero p {
  font-size: 1.1rem;
  color: #ffffff;
  max-width: 700px;
  margin: 0 auto;
  font-size: 20px;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
  padding: 60px 20px;
  background: #fff;
}

.contact-info,
.contact-form {
  max-width: 500px;
  flex: 1;
}

.contact-info h2,
.contact-form h2 {
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 10px;
}

.social-icons a img {
  width: 24px;
  margin-right: 12px;
  filter: grayscale(1);
  transition: filter 0.3s;
}

.social-icons a img:hover {
  filter: grayscale(0);
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  width: 100%;
}

.contact-form button.btn {
  padding: 12px;
  background: #ff6600;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button.btn:hover {
  background: #e65500;
}

.map-section {
  width: 100%;
  max-width: 1200px;
  margin: 60px auto 40px auto;
  border-top: 2px solid #eee;
  padding-top: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
  color: #222;
}



/* ─────────────────────────────────────────
   DARK NAVBAR  (overrides earlier .navbar)
   ───────────────────────────────────────── */
.navbar.virsion-dark{
  background:#000000;
  height:64px;
  backdrop-filter:none;         /* cancel earlier blur */
  box-shadow:0 2px 8px rgba(0,0,0,.4);
}

/* container stays the same, only tweak padding for compact feel */
.navbar.virsion-dark .navbar-container{
  padding:0 40px;
  display: flex;
  justify-content:flex-start;   /* logo hugs the left edge  */       /* center the logo */
  align-items: center;
  position: relative;
}

/* logo */
.navbar-logo img{ 
  height:70px;                   /* increase size but keep under 72px */
  max-height: 90%;
  width:auto;
  position:relative;   /* create a new stacking context */
  z-index:2;           /* sit above .nav-links */
       /* ensures anchor fills the image */
}

.navbar-logo img:hover {
  filter: brightness(0.8);  /* darken on hover */
  transform: scale(1.05);
}

/* links */
.navbar.virsion-dark .nav-links{
  position: absolute;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;  
}

.navbar.virsion-dark .nav-links li a{
  color:#fff;
  font-weight:600;
  position:relative;
  text-decoration:none;
  font-size:15px;
  transition:color .25s;
}



/* subtle under-bar on hover / active */
.navbar.virsion-dark .nav-links li a::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:-14px;
  height:2px;
  background:#ff6a00;
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .25s;
}
.navbar.virsion-dark .nav-links li a:hover::after,
.navbar.virsion-dark .nav-links li a.active::after{
  transform:scaleX(1);
}

.navbar.virsion-dark .nav-links li a:hover{
  color:#00e0ff;                /* bluish hover like BL */
}

/* mobile stacking still works from your previous media queries */

/* ── override the generic “main section” limits ONLY for the product grid ── */
section.feature-grid{
  max-width:none;      /* remove 1000-px clamp            */
  width:100vw;         /* stretch edge-to-edge            */
  margin:0;            /* no auto-centering white stripes */
  padding: 33px;           /* optional: drop side padding     */
}

/* exactly two equal columns */
section.feature-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;            /* keep your spacing */
}

/* collapse to one column on phones */
@media (max-width:900px){
  section.feature-grid{
    grid-template-columns:1fr;
  }
}

/* make each card fill its grid cell */
.feature-card{ width:100%; height:100%; }

.footer-logo,
.footer-links,
.footer-extra {
  flex: 1;
  min-width: 200px; /* ensures responsive stacking */
  max-width: 100%;
}


/* === ABOUT HERO VIDEO === */
.about-hero {
  position: relative;
  min-height: 60vh;           /* adjust to taste */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.about-hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;          /* fills area, crops if needed */
  object-position: center;
  z-index: -2;                /* keeps video behind content */
}

.about-hero::after {          /* dark overlay for text legibility */
  content: "";
  position: absolute;

  background: rgba(0,0,0,.45);
  z-index: -1;
}

.about-hero-overlay {
  text-align: center;
  padding: 0 1rem;
}

.about-hero-overlay h1 {
  font-size: clamp(2rem, 4vw + 1rem, 3rem);
  margin-bottom: .5em;
}

.about-hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.about-hero video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 1;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.about-hero-overlay{
  position:relative;
  z-index:3;        /* 1-video, 2-fade, 3-text  */
  text-align:center;
  color:#fff;
  padding-top:10vh;
}

/* full-cover dark overlay */
.about-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.45);
  z-index:1;
}

/* thin white fade at the very bottom */
.about-hero::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:0;
  height:10vh;                           /* thickness of the fade  */
  background:linear-gradient(to bottom,
              rgba(0,0,0,0) 0%, #f9f9f9 100%);
  z-index:2;
  pointer-events:none;
}




/* Loader styles */
#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000; /* or white */
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

#loader {
  border: 6px solid #f3f3f3;
  border-top: 6px solid #e60023; /* Red accent */
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}
