    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  
    }

    body {
      font-family: "Poppins", sans-serif;
      background-color: #1A1A1A;
      color: #111;
      line-height: 1.6;
      /* overflow-y: hidden; */
    }


/* NAVBAR STYLES - mobile-first */
:root{
  --accent: #03C4A1;
  --bg: #d3d3d3;
  --text: #d6d6d6;
  --muted: #666;
  --header-h: 70px;
}

/* container */
.container{ max-width:1100px; margin:0 auto; padding:0 0px; }

.head{
    background: url('/images/Frame\ 204.png') no-repeat center center/cover;
}

/* header */
.site-header{
  position:sticky;
  top:0;
  z-index:1200;
  background-color: transparent;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0);
  backdrop-filter: blur(4px);
}

/* header inner layout */
.header-inner{
  display:flex;
  align-items:center;
  height:var(--header-h);
  gap:12px;
  padding: 0px 10px;
}

/* nav toggle (hamburger) */
.nav-toggle{
  background:transparent;
  border:0;
  padding:8px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  color:var(--text);
}

/* brand */
.brand{ display:flex; align-items:center; gap:10px; text-decoration:none; color:var(--text); }
.brand-logo{ width:100px; height:100px; object-fit:contain; }
.brand-text{ font-weight:700; letter-spacing:1px; color:var(--accent); }

/* nav (desktop hidden by default on mobile) */
.site-nav{ display:none; }
.nav-list{ list-style:none; padding:0; margin:0; display:flex; gap:18px; }
.nav-link{ color:var(--text); text-decoration:none; font-weight:500; padding:8px 6px; display:inline-block; border-radius:6px; }
.nav-link:hover{ background:rgba(3,196,161,0.06); color:var(--accent); }

/* actions */
.nav-actions{ margin-left:auto; display:flex; align-items:center; gap:10px; }
.icon-btn{ background:transparent; border:0; padding:8px; cursor:pointer; color: #d6d6d6; }
.action-cta{ display:inline-block; padding:8px 12px; border-radius:22px; background:var(--accent); color:#fff; text-decoration:none; font-weight:600; }
.cart-btn{ position:relative; background:transparent; border:0; padding:8px; cursor:pointer; color: #d6d6d6;}
.cart-count{ position:absolute; top:2px; right:2px; background:#ff3b30; color:#fff; font-size:11px; padding:2px 6px; border-radius:12px; }

/* search overlay */
.nav-search{ display:none; padding:12px 0; background:rgba(0, 0, 0, 0); border-top:1px solid rgba(0,0,0,0.04); }
.search-form{ display:flex; gap:8px; align-items:center; }
.search-form input{ flex:1; padding:10px 12px; border-radius:888px; border:1px solid #e6e6e6; font-size:14px; background-color: rgba(255, 255, 255, 0.205); color: white;}
.search-form .btn{ padding:10px 14px; background:var(--accent); color:#fff; border-radius:888px; border:0; cursor:pointer; }
.btn-close{ background:transparent; border:0; font-size:22px; padding:8px; cursor:pointer; color: white; font-weight: bold; }

/* desktop layout */
@media(min-width:880px){
  .nav-toggle{ display:none; } /* hide hamburger */
  .site-nav{ display:block; margin-right:22px; }
  .nav-list{ gap:22px; }
  .brand-logo{ width:100px; height:100px; }
  .action-cta{ display:inline-block; }
  .nav-search{ display:none; }
  .head{
    background: url('/images/Frame\ 204.png') no-repeat center center/cover;
}
}

/* ---------- MOBILE SLIDE-IN MENU ---------- */
@media (max-width: 880px) {
  .site-nav {
    position: fixed;
    top: 0;
    left: -240px;
    width: 240px;
    height: 100vh;
    /* background: linear-gradient(180deg, #0E0E0E 0%, #1A1A1A 100%); */
    overflow: hidden;
    box-shadow: -4px 0 16px rgba(0,0,0,0.1);
    transition: left 0.35s ease;
    padding-top: 90px;
    display: block; /* Always keep it in DOM for sliding effect */
    z-index: 1500;
    backdrop-filter: blur(5px);
  }

  .site-nav.nav-open {
    left: 0;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 0 20px;
    background: linear-gradient(180deg, #0e0e0e 0%, #1A1A1A 100%);
    height: 100%;
    backdrop-filter: blur(10px);
  }

  .nav-link {
    color: #ffffff;
    font-size: 1rem;
    width: 100%;
    padding: 10px 0;
    /* border-bottom: 1px solid #f0f0f0; */
  }

  .nav-link:hover {
    background: none;
    color: #03C4A1;
    transform: translateX(4px);
  }

  /* Optional: dark overlay behind the open nav */
  body::after {
    content: '';
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    z-index: 1400;
    transition: opacity 0.3s ease;
  }

  .site-nav.nav-open ~ body::after {
    display: block;
  }
}



/* ---------- HERO SECTION ---------- */
.hero {
  position: relative;
  width: 100%;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  background: url('/images/Frame\ 204.png') no-repeat center center/cover;
}

/* Overlay for dark gradient */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.hero h1 {
  font-size: 2.4rem;
  line-height: 1.3;
  margin-bottom: 20px;
  font-weight: 700;
  background: linear-gradient(90deg, #8fbcff, #7ef1d2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 35px;
  color: #d6d6d6;
}

/* Buttons */
.hero-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.btn {
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn.primary {
  background-color: #03C4A1;
  color: #fff;
}

.btn.primary:hover {
  background-color: #02957d;
}

.btn.secondary {
  border: 2px solid #fff;
  color: #fff;
}

.btn.secondary:hover {
  background-color: #fff;
  color: #111;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {

    .hero{
        width: 100%;
        height: 60vh;
        background: url('/images/Frame\ 204.png') no-repeat center center/cover;
    }
  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 0.9rem;
  }
  /* .head{
    background: url('/images/Frame\ 204.png') no-repeat center center/cover;
} */
}


  /* Fullscreen overlay */
  #splash-screen {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: #111; /* cinematic black */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.8s ease;
  }

  .logo-container {
    text-align: center;
    color: white;
  }

  /* Logo animation */
  .logo {
    width: 150px;
    opacity: 0;
    transform: scale(0.8);
    animation: logoFadeIn 1s forwards;
  }

  @keyframes logoFadeIn {
    to {
      opacity: 1;
      transform: scale(1);
    }
  }

  /* Tagline animation */
  .tagline {
    margin-top: 13px;
    opacity: 0;
    transform: translateY(20px);
    animation: taglineFadeIn 1s forwards;
    animation-delay: 1s;
  }

  @keyframes taglineFadeIn {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Loader bar container */
  .loader {
    width: 120px;
    height: 4px;
    background: #2c2c2c;
    margin: 20px auto 0 auto;
    overflow: hidden;
  }

  /* Animated loader bar */
  .loader-bar {
    width: 0;
    height: 100%;
    background: #03C4A1;
    animation: loadBar 1.5s forwards;
    animation-delay: 1.5s;
  }

  @keyframes loadBar {
    to { width: 100%; }
  }



  /* ========== WHAT WE BUILD SECTION ========== */
.what-we-build {
  background: linear-gradient(180deg, #0E0E0E 0%, #1A1A1A 100%);
  padding: 20px 10px;
  color: #fff;
  text-align: center;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.section-subtitle {
  font-size: 0.95rem;
  color: #aaa;
  /* margin-bottom: 20px; */
}

.build-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  justify-items: center;
}

.build-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  padding: 30px 15px;
  max-width: 350px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.build-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(3,196,161,0.2), rgba(255,255,255,0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.build-card:hover::before {
  opacity: 1;
}

.build-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(3,196,161,0.15);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 18px;
  color: #03C4A1;
  z-index: 1;
  position: relative;
}

.build-card h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
  font-weight: 600;
  z-index: 1;
  position: relative;
  background: linear-gradient(90deg, #8fbcff, #7ef1d2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.build-card p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
  z-index: 1;
  position: relative;
}

.learn-more {
  display: inline-block;
  margin-top: 18px;
  font-size: 0.9rem;
  color: #03C4A1;
  text-decoration: none;
  font-weight: 500;
  z-index: 1;
  position: relative;
}

.learn-more:hover {
  text-decoration: underline;
}


.about-section {
  background: linear-gradient(180deg, rgba(15, 20, 40, 0.95) 0%, rgba(10, 15, 30, 0.97) 100%);
  padding: 20px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.about-container {
  max-width: 1100px;
  width: 100%;
}

.about-card {
  backdrop-filter: blur(15px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  padding: 50px 20px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.about-card h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #8fbcff, #7ef1d2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.about-card p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #e5e5e5;
}

.about-highlights {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
  gap: 30px;
}

.highlight {
  flex: 1 1 250px;
  min-width: 250px;
  max-width: 300px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 25px;
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

.highlight:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.highlight span {
  font-size: 2rem;
  display: block;
  margin-bottom: 10px;
}

.highlight h4 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: #b7e0ff;
}


/* ===== Scroll Fade-In Animation ===== */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Add a delay for child highlights (staggered appearance) */
.highlight:nth-child(1) {
  transition-delay: 0.2s;
}
.highlight:nth-child(2) {
  transition-delay: 0.4s;
}
.highlight:nth-child(3) {
  transition-delay: 0.6s;
}

.featured-section {
  padding: 20px 5%;
  background: linear-gradient(180deg, #0d0d0d 0%, #1a1a1a 100%);
  /* backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px); */
  color: #fff;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #8fbcff, #7ef1d2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #ddd;
  margin-bottom: 60px;
}

.featured-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

/* Card Container */
.featured-card {
  position: relative;
  width: 450px;
  height: 370px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Video Background */
.video-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8);
  transform: scale(1.1);
}

/* Overlay Content */
.featured-overlay {
  position: relative;
  z-index: 2;
  padding: 20px 25px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(1px);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.featured-overlay h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #8fbcff, #7ef1d2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.featured-overlay p {
  font-size: 0.95rem;
  color: #ddd;
  margin-bottom: 20px;
}

.featured-btn {
  align-self: flex-start;
  padding: 10px 18px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.featured-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Fade-in Animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .featured-container {
    flex-direction: column;
  }
  .featured-card {
    width: 100%;
    height: 350px;
  }
}


/* ============ SNERE Solutions Section ============ */
.solutions-section {
  background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
  color: #fff;
  padding: 20px 20px;
  text-align: center;
  position: relative;
}

.solutions-container {
  max-width: 1200px;
  margin: 0 auto;
}

.solutions-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #8fbcff, #7ef1d2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.solutions-subtext {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 60px;
}

/* Grid */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

/* Cards */
.solution-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 40px 15px;
  transition: all 0.3s ease;
  position: relative;
}

.solution-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.15);
}

.solution-icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 15px;
  transition: transform 0.3s ease, text-shadow 0.3s ease;
}

.solution-card:hover .solution-icon {
  transform: scale(1.1);
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
}

.solution-card h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
  background: linear-gradient(90deg, #8fbcff, #7ef1d2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.solution-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* CTA */
.solutions-cta {
  margin-top: 60px;
}

.cta-btn {
  display: inline-block;
  padding: 14px 40px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.2);
}

/* Fade-in Animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



.testimonials-section {
  padding: 20px 20px;
  background: radial-gradient(ellipse at center, #0a0a0a 0%, #000 100%);
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.swiper {
  width: 100%;
  max-width: 600px;
  margin: auto;
}

.glass-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px 30px;
  margin: 0 auto;
  max-width: 500px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.glass-card p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #f1f1f1;
  margin-bottom: 15px;
}

.glass-card h4 {
  font-weight: 500;
  color: #bdbdbd;
}

.swiper-button-next, .swiper-button-prev {
  color: #fff;
}

.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5);
}

.swiper-pagination-bullet-active {
  background: #fff;
}


/* === CONTACT SECTION === */
.contact-section {
  background: linear-gradient(180deg, #0b0b0b, #111 80%);
  color: #fff;
  padding: 20px 10%;
  text-align: center;
  position: relative;
}

.contact-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #8fbcff, #7ef1d2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-subtext {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  margin-bottom: 60px;
}

.contact-flex {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  flex-wrap: wrap;
}

/* Glass container style */
.glass-box {
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 30px;
  flex: 1;
  min-width: 320px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.glass-box:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
}

/* Form inputs */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 15px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #00bfff;
  background: rgba(255, 255, 255, 0.08);
}

/* Buttons */
.send-btn {
  width: 100%;
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.send-btn:hover {
  background: #00bfff;
  color: #000;
}

.action-btn {
  width: 100%;
  padding: 16px;
  margin-bottom: 15px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  font-size: 1.05rem;
  transition: all 0.3s ease;
}

.action-btn:hover {
  background: #00bfff;
  color: #000;
}

/* Contact info footer */
.contact-info {
  margin-top: 50px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

.contact-info p {
  margin: 5px 0;
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1.2s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive layout */
@media (max-width: 768px) {
  .contact-flex {
    flex-direction: column;
  }

  .glass-box {
    width: 100%;
  }
}


/* === FOOTER SECTION === */
.footer-section {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(18px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 80px 10% 40px;
  font-family: 'Poppins', sans-serif;
  position: relative;
  text-align: left;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col .footer-logo {
  width: 8rem;
  margin-bottom: 10px;

}

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #fff;
  font-weight: 600;
}

.footer-col p,
.footer-col ul {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease, transform 0.2s ease;
}

.footer-col ul li a:hover {
  color: #00bfff;
  transform: translateX(5px);
}

/* Social icons */
.social-links {
  display: flex;
  gap: 12px;
}

.social-btn img{
  width: 38px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-btn:hover {
  background: #00bfff;
  color: #000;
  transform: scale(1.1);
}

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1.2s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .footer-section {
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .footer-grid {
    gap: 25px;
  }
}

 /* COOKIE BANNER STYLE */
  .cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 51%;
    transform: translateX(-50%);
    background: rgba(20, 20, 20, 0.75);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    color: #f0f0f0;
    padding: 20px 25px;
    width: 90%;
    max-width: 700px;
    z-index: 9999;
    display: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    animation: slideUp 0.4s ease;
  }

  @keyframes slideUp {
    from { transform: translate(-50%, 50px); opacity: 0; }
    to { transform: translate(-50%, 0); opacity: 1; }
  }

  .cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  .cookie-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    flex: 1 1 60%;
  }

  .cookie-link {
    color: #00bcd4;
    text-decoration: none;
  }
  .cookie-link:hover {
    text-decoration: underline;
  }

  .cookie-buttons {
    display: flex;
    gap: 10px;
  }

  .cookie-btn {
    border: none;
    border-radius: 6px;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
  }

  .cookie-btn.accept {
    background: #00bcd4;
    color: #111;
  }
  .cookie-btn.accept:hover {
    background: #00e0ff;
  }

  .cookie-btn.decline {
    background: transparent;
    color: #ccc;
    border: 1px solid rgba(255,255,255,0.2);
  }
  .cookie-btn.decline:hover {
    border-color: #00bcd4;
    color: #00bcd4;
  }

  @media (max-width: 600px) {
    .cookie-content {
      flex-direction: column;
      align-items: flex-start;
    }
    .cookie-buttons {
      align-self: flex-end;
    }
  }



  /* ================== THEME TOGGLE ================== */

/* LIGHT MODE OVERRIDES */
body.light-mode {
  background-color: #f7f7f7;
  color: #111;
}

body.light-mode :root {
  --accent: #00997a;
  --bg: #ffffff;
  --text: #222;
  --muted: #666;
}

/* Navbar adjustments */
body.light-mode .site-header {
  background-color: rgba(255, 255, 255, 0.85);
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  backdrop-filter: blur(6px);
}

body.light-mode .nav-link {
  color: #222;
}

body.light-mode .nav-link:hover {
  background: rgba(0, 153, 122, 0.06);
  color: var(--accent);
}

body.light-mode .action-cta {
  background: var(--accent);
  color: #fff;
}

body.light-mode .icon-btn,
body.light-mode .cart-btn {
  color: #333;
}

/* Hero section */
body.light-mode .hero {
  background: url('/images/Frame 204-light.png') no-repeat center center/cover;
  color: #111;
}

body.light-mode .hero h1 {
  background: linear-gradient(90deg, #0088ff, #00b388);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

body.light-mode .hero p {
  color: #444;
}

/* Glass cards */
body.light-mode .build-card,
body.light-mode .glass-card,
body.light-mode .solution-card,
body.light-mode .highlight,
body.light-mode .about-card,
body.light-mode .glass-box {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0,0,0,0.1);
  color: #222;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

body.light-mode .build-card p,
body.light-mode .solution-card p,
body.light-mode .about-card p {
  color: #444;
}

/* Contact + Footer */
body.light-mode .contact-section {
  background: linear-gradient(180deg, #fefefe, #ececec);
  color: #111;
}

body.light-mode .send-btn,
body.light-mode .action-btn {
  background: var(--accent);
  color: #fff;
  border: none;
}

body.light-mode .send-btn:hover,
body.light-mode .action-btn:hover {
  background: #00775f;
}

/* Misc */
body.light-mode .section-title {
  background: linear-gradient(90deg, #007aff, #00b388);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

body.light-mode .learn-more {
  color: var(--accent);
}
