

    :root {
      --primary: #0052cc;
      --accent: #007bff;
      --text-dark: #1a1a1a;
      --text-light: #555;
      --bg-light: #f7f9fc;
      --white: #fff;
    }
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Poppins", sans-serif;
    }

    body {
      background: #000;
      color: #fff;
      overflow-x: hidden;
    }

/* NAVBAR */

/* Navbar styles - desktop */
header {
  position: relative;
  width: 100%;
  z-index: 999;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 8%;
  background-color: rgba(0,0,0,0.85);
}

/* Desktop Logo */
.logo {
  font-size: 1.6rem; /* slightly bigger for impact */
  font-weight: 800;
  color: #beded1; /* accent color */
  letter-spacing: 1.5px;
  text-transform: uppercase; /* modern bold look */
  text-shadow: 2px 2px 8px rgba(0,255,153,0.6);
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Logo hover effect */
.logo:hover {
  color: #00ffaa; /* lighter green accent */
  transform: scale(1.05); /* subtle zoom effect */
  text-shadow: 0 0 12px #00ffaa, 0 0 20px rgba(0,255,153,0.4);
}

/* Nav links hover effect */
nav a {
  text-decoration: none;
  color: #fff;
  font-size: 1.0rem;
  font-weight: 600;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

nav a:hover {
  color: #00ff99; /* accent color */
  transform: translateY(-2px) scale(1.05); /* small lift & zoom */
  text-shadow: 0 0 8px #00ff99;
}


nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}


/* Hamburger default */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
  z-index: 10000;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: #00ff99;
  transition: all 0.2s ease;
}

/* When active, create ">" style */
.hamburger.active div:nth-child(1) {
  transform: rotate(45deg) translate(5px, 0);
}

.hamburger.active div:nth-child(2) {
  opacity: 0; /* hide middle line */
}

.hamburger.active div:nth-child(3) {
  transform: rotate(-45deg) translate(5px, 0);
}


/* Mobile styles */
@media (max-width: 768px) {

  /* Hamburger right */
  .hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
  }

  .hamburger div {
    width: 25px;
    height: 3px;
    background-color: #00ff99;
    transition: all 0.2s ease;
  }

  /* Menu slides from right */
  nav ul {
    position: fixed;
    top: 0;
    right: -250px;
    width: 250px;
    height: 100%;
    background-color: #000;
    flex-direction: column;
    gap: 20px;
    padding: 80px 20px;
    border-left: 2px solid #00ff99;
    transition: right 0.2s ease-in-out;
    z-index: 9998;
  }

  nav ul.show {
    right: 0;
  }

  /* Logo at bottom center */
  .logo-ft {
    display: block;
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    z-index: 999;
  }
}
/* Mr Code button */
.mr-code-btn {
  background: orange;
  padding: 8px 14px;
  border-radius: 6px;
  color: white;
  font-weight: bold;
  transition: 0.3s;
}

.mr-code-btn:hover {
  background: #ff8c00;
}

/* Make it fit nicely in mobile menu */
.nav-links li {
  list-style: none;
  margin: 0 10px;
}

.nav-links a {
  text-decoration: none;
}

/* Ensure logo on desktop is visible */
.logo-ft {
  display: none; /* only mobile */
}
/* HERO SECTION */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center; /* center vertically */
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  overflow: hidden;
  z-index: 1;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.overlay {
  display: none;
}



.content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  color: #fff;
}

/* Main heading */
h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #00ff99;
  letter-spacing: 1px;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
}
/* HERO CONTENT */
/* Hero heading colors */
.content h1 .welcome-text {
  color: #ffffff; /* Blueish color for "Welcome to" */
  font-weight: 600;
}

.content h1 .highlight {
  color: #00ff99; /* Greenish color for "Techn'Marketing" */
  font-weight: 900;
}

/* Hero heading */
.content h1 {
  font-size: 4rem; /* desktop size */
  text-align: center;
  text-shadow: 3px 3px 12px rgba(0,255,153,0.6);
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
}

/* Typing text */
.typing-text {
  font-size: 2rem; /* desktop size */
  color: #fff;
  background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(0,255,153,0.1));
  padding: 15px 30px;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0,255,153,0.4);
  border-right: 3px solid #00ff99; /* typing cursor */
  white-space: nowrap;
  overflow: hidden;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  text-shadow: 1px 1px 6px rgba(0,255,153,0.4);
  backdrop-filter: blur(5px); /* subtle blur behind text */
}

/* MOBILE OPTIMIZATION */
@media (max-width: 1024px) {
  .content h1 {
    font-size: 3.5rem;
  }
  .typing-text {
    font-size: 1.8rem;
    padding: 12px 25px;
  }
}

@media (max-width: 768px) {
  .content h1 {
    font-size: 2.5rem;
  }
  .typing-text {
    font-size: 1.5rem;
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .content h1 {
    font-size: 2rem;
  }
  .typing-text {
    font-size: 1.2rem;
    padding: 8px 15px;
  }
}


/* Get in touch button */
.btn-contact {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 30px;
  background: #00ff99;
  color: #000;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-contact:hover {
  background: #00cc77;
  color: #fff;
}

/* SERVICES SECTION */
.services {
  text-align: center;
  padding: 80px 20px;
  background-color: #000;
  position: relative;
}

.services h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.line {
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #09ff01, #000000c8, #05ff26);
  animation: moveLine 3s linear infinite;
  margin-bottom: 40px;
}

@keyframes moveLine {
  0% { background-position: 0 0; }
  100% { background-position: 1000px 0; }
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.service {
  background: #111;
  border: 1px solid #00c46a;
  padding: 20px 40px;
  border-radius: 10px;
  font-size: 1.1rem;
  transition: 0.3s;
}

.service:hover {
  background: #00c46a;
  color: #000;
  transform: translateY(-5px);
}
.vision {
  position: relative;
  background: #000;
  color: #fff;
  padding: 80px 20px;
  overflow: hidden;
}

/* Video background styling */
.vision-bg-video {
  position: absolute;
  top: 0;
  right: 0; /* align to right */
  height: 100%;
  width: auto;
  min-width: 50%; /* covers right side */
  z-index: 0;
  object-fit: cover;
  pointer-events: none;
}

/* Boxes container */
.vision-container {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* increase min width */
  gap: 40px; /* more space between boxes */
  max-width: 1200px;
  margin: 0 auto;
  z-index: 1; /* above video */
}

/* Boxes container */
.vision-container {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 boxes in one row */
  gap: 20px; /* space between boxes */
  max-width: 1200px;
  margin: 0 auto;
  z-index: 1; /* above video */
}

/* Vision boxes styling */
.vision-box {
  background: rgba(0,0,0,0.8);
  border-left: 5px solid #00ff99;
  padding: 20px 15px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease; /* smooth transition */
  cursor: pointer; /* indicate hover */
}

.vision-box:hover {
  background: rgba(0,255,100,0.1); /* subtle green overlay on hover */
  transform: translateY(-5px) scale(1.03); /* slight lift + scale */
  box-shadow: 0 10px 25px rgba(0,255,100,0.3); /* glowing shadow */
}


.vision-box h3 {
  font-size: 2.0rem; /* smaller heading */
  font-weight: 700;
  color: #00ff99;
  margin-bottom: 10px;
}

.vision-box p {
  font-size: 0.95rem; /* smaller text */
  line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .vision-container {
    grid-template-columns: repeat(2, 1fr); /* 2 boxes per row on tablet */
  }
}

@media (max-width: 768px) {
  .vision-container {
    grid-template-columns: 1fr; /* 1 box per row on mobile */
  }
  .vision-box h3 {
    font-size: 1.2rem;
  }
  .vision-box p {
    font-size: 0.9rem;
  }
}
.services-section {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.services-section .section-title {
  font-size: 2.5em;
  color: #00ff99;
  margin-bottom: 10px;
}

.services-section .section-subtitle {
  font-size: 1.2em;
  color: #aaa;
  margin-bottom: 10px;
}

.services-section .section-desc {
  color: #888;
  margin-bottom: 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.service-card {
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid #00ff99;
  border-radius: 20px;
  padding: 30px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px #00ff99;
}

.icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid #00ff99;
  margin: 0 auto 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: radial-gradient(circle, #00ff99 10%, transparent 70%);
  animation: pulse 3s infinite ease-in-out;
}

.icon-circle i {
  font-size: 2em;
  color: #00ff99;
  transition: transform 0.5s ease;
}

.service-card:hover .icon-circle i {
  transform: rotate(360deg);
}

/* Circle open-close animation */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 15px #00ff99, 0 0 30px rgba(0, 255, 153, 0.3);
  }
  50% {
    transform: scale(1.2);
    box-shadow: 0 0 30px #00ff99, 0 0 60px rgba(0, 255, 153, 0.6);
  }
}

.btn-quote {
  display: inline-block;
  margin-top: 50px;
  padding: 15px 35px;
  background: #00ff99;
  color: #000;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-quote:hover {
  background: #00cc77;
  transform: scale(1.05);
}
/* Fact Section */
.fact-section {
  position: relative;
  background: #000;
  color: #fff;
  padding: 80px 20px;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.fact-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  gap: 40px;
}

.fact-left, .fact-right {
  flex: 1;
  min-width: 280px;
  position: relative;
}

.fact-number {
  font-size: 5rem;
  font-weight: 800;
  color: #00ff99;
  margin: 0;
}

.fact-icons {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  font-size: 2rem;
  color: #00ff99;
}

.fact-title {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #fff;
}

.fact-text {
  font-size: 1.2rem;
  margin-bottom: 15px;
  line-height: 1.5;
}

.fact-text span {
  color: #00ff99;
  font-weight: 600;
}

.fact-source {
  font-size: 0.9rem;
  color: #ccc;
  margin-bottom: 30px;
}

.fact-progress {
  background: #111;
  border-radius: 12px;
  overflow: hidden;
  height: 20px;
}

.progress-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #00ff99, #00cc77);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  border-radius: 12px;
  padding-right: 10px;
  box-sizing: border-box;
  transition: width 2s ease;
}

.progress-text {
  font-size: 0.9rem;
  font-weight: bold;
  color: #000;
}

/* Floating circles */
.moving-circle {
  position: absolute;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(0,255,153,0.6), rgba(0,255,153,0.05));
  border-radius: 50%;
  filter: blur(5px);
  pointer-events: none;
  transition: transform 3s ease-in-out;
  z-index: 0;
}

.fact-circle1 { top: 10%; left: 15%; }
.fact-circle2 { top: 60%; left: 25%; width: 60px; height: 60px; }
.fact-circle3 { top: 20%; right: 20%; width: 100px; height: 100px; }
.fact-circle4 { bottom: 15%; right: 25%; width: 90px; height: 90px; }

/* Mobile responsiveness */
@media (max-width: 768px) {
  .fact-box {
    flex-direction: column;
    text-align: center;
  }
  .fact-number {
    font-size: 3rem;
  }
  .fact-title {
    font-size: 1.5rem;
  }
  .fact-text {
    font-size: 1rem;
  }
}
.moving-text-section {
  background: #d8dad727; /* white background */
  padding: 25px 0;
  overflow: hidden;
  border-top: 2px solid #00ff99;
  border-bottom: 2px solid #00ff99;
  position: relative;
}

.moving-text-wrapper {
  white-space: nowrap;
}

.moving-text {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #00ff99; /* neon green */
  animation: scrollText 15s linear infinite;
}

.moving-text i {
  color: #00ff99;
  margin: 0 10px;
  animation: moveIcon 3s ease-in-out infinite alternate;
}

@keyframes scrollText {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

@keyframes moveIcon {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px) rotate(10deg); }
  100% { transform: translateY(0px); }
}

/* Mobile */
@media (max-width: 768px) {
  .moving-text {
    font-size: 1.4rem;
  }
}
/* Portfolio Section */
.portfolio-section {
  background: #000; /* section black background */
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  color: #fff;
}

/* Green wave background */
.portfolio-section::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 200px;
  background: #00ffcc;
  opacity: 0.1;
  transform: rotate(-10deg);
  z-index: 0;
}

.portfolio-section .container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title h2 {
  color: #00ff99;
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 10px;
}

.section-title p {
  color: #fff;
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 50px;
}

/* Portfolio Grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

/* Project Card */
.project-card {
  background: #1111117f; /* card black background */
  color: #fff; /* text white */
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 255, 150, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 255, 150, 0.4);
}

/* Project Image */
.project-card img {
  width: 100%;
  height: 150px; /* uniform smaller height */
  object-fit: cover;
  display: block;
  border-radius: 12px;
  transition: transform 0.4s ease;
}

.project-card:hover img {
  transform: scale(1.05);
}

/* Project Info */
.project-info {
  padding: 20px;
}

.project-info h3 {
  font-size: 1.5rem;
  color: #00ff99; /* green title */
  margin-bottom: 10px;
}

.project-info p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 15px;
  color: #f1f1f1; /* slightly softer white */
}

.project-tech span {
  display: inline-block;
  margin-right: 10px;
  background: #00ff99;
  color: #000;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.8rem;
  margin-bottom: 5px;
}

.project-link {
  display: inline-block;
  margin-top: 10px;
  color: #fff;
  background: #00ff99;
  padding: 8px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.project-link:hover {
  background: #00cc77;
}

/* Mobile */
@media (max-width: 768px) {
  .section-title h2 { font-size: 2rem; }
  .section-title p { font-size: 1rem; margin-bottom: 30px; }
  .project-card { padding: 20px 15px; }
  .project-card img { height: 120px; } /* smaller image on mobile */
}


    .marketing-hero {
      width: 100%;
      min-height: 100vh;
      background: #000;
      overflow: hidden;
      display: flex;
      align-items: center; /* vertically center */
      justify-content: flex-start;
      padding: 0 80px 50px 80px; /* more space for left-aligned text */
      position: relative;
    }

    /* Green wave top */
    .marketing-hero::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 150px;
      background: #00ff99;
      border-bottom-left-radius: 50% 20%;
      border-bottom-right-radius: 50% 20%;
      z-index: 1;
    }

  /* Content wrapper */
.content-wrapper {
  display: flex;
  align-items: flex-start; /* align items at top */
  justify-content: flex-start;
  width: 100%;
  max-width: 1600px;
  gap: 100px; 
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}

/* Video styling */
.marketing-video {
  width: 900px;
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 25px 70px rgba(0,0,0,0.8);
  flex-shrink: 0;
  pointer-events: none;
  user-select: none;
}

/* Mobile: stack video above text */
@media (max-width: 768px) {
  .content-wrapper {
    flex-direction: column-reverse; /* push video to top */
    align-items: center;
    gap: 20px;
  }

  .marketing-video {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 15px;
  }
}


    .marketing-text {
      max-width: 500px;
      text-align: left;
      margin-left: -40px; /* push text more left */
      margin-top: 0;
    }

    .marketing-text h1 {
      font-size: 3.2rem;
      margin-bottom: 20px;
      color: #00ff99;
      text-shadow: 2px 2px 12px rgba(0,0,0,0.8);
    }

    .marketing-text p {
      font-size: 1.6rem;
      margin-bottom: 25px;
      line-height: 1.5;
      text-shadow: 1px 1px 10px rgba(0,0,0,0.7);
    }

    .cta-btn {
      background: #00ff99;
      color: #000;
      padding: 18px 50px;
      border-radius: 15px;
      font-weight: bold;
      font-size: 1.6rem;
      text-decoration: none;
      transition: 0.3s;
    }

    .cta-btn:hover {
      background: #00cc77;
      color: #fff;
    }

    /* Responsive */
    @media (max-width: 1200px) {
      .marketing-hero {
        padding: 50px 30px 50px 30px;
      }

      .content-wrapper {
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
        gap: 40px;
      }

      .marketing-video {
        width: 90%;
      }

      .marketing-text {
        margin-left: 0;
      }
    }

    @media (max-width: 768px) {
      .marketing-text h1 { font-size: 2.4rem; }
      .marketing-text p { font-size: 1.3rem; }
      .cta-btn { padding: 14px 40px; font-size: 1.3rem; }
    }

    @media (max-width: 480px) {
      .marketing-text h1 { font-size: 2rem; }
      .marketing-text p { font-size: 1rem; }
      .cta-btn { padding: 12px 30px; font-size: 1rem; }
    }
@import url('https://cdn.jsdelivr.net/npm/remixicon/fonts/remixicon.css');

.collab-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 🎥 Background video */
.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
  opacity: 0.25; /* darker for better contrast */
  filter: brightness(0.6) saturate(1.2);
}

/* 🟢 Green overlay + moving circles/icons */
.floating-icons::before,
.floating-icons::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: #00ffcc33;
  box-shadow: 0 0 100px #00ffcc66;
  animation: float 10s infinite alternate ease-in-out;
  z-index: 1;
}
.floating-icons::before {
  width: 300px;
  height: 300px;
  top: 20%;
  left: 10%;
}
.floating-icons::after {
  width: 400px;
  height: 400px;
  bottom: 15%;
  right: 10%;
  animation-delay: 2s;
}

/* Floating animation */
@keyframes float {
  0% { transform: translate(0, 0) scale(1); opacity: 0.5; }
  100% { transform: translate(60px, -40px) scale(1.1); opacity: 0.8; }
}

/* 🧠 Text */
.content {
  position: relative;
  z-index: 3;
}

.subtitle {
  font-size: 1.3rem;
  letter-spacing: 3px;
  color: #bbb;
  margin-bottom: 15px;
}

h1 {
  font-weight: 900;
  line-height: 1.1;
  font-size: clamp(3rem, 10vw, 8rem);
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
}

h1 span {
  display: block;
}

/* 🟩 Button */
.cta-btn {
  display: inline-block;
  margin-top: 30px;
  background: #00ffcc;
  color: #000;
  padding: 18px 45px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 0 25px #00ffcc88;
}

.cta-btn:hover {
  background: #00e6b8;
  transform: scale(1.08);
  box-shadow: 0 0 40px #00ffccaa;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .subtitle {
    font-size: 1rem;
  }
  h1 {
    font-size: 3rem;
  }
  .cta-btn {
    padding: 14px 35px;
    font-size: 1rem;
  }
}


/* Button */
.cta-btn {
  display: inline-block;
  margin-top: 20px;
  background: #00ffcc;
  color: #000;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.cta-btn i {
  margin-left: 8px;
}

.cta-btn:hover {
  background: #00e6b8;
  transform: scale(1.05);
}

/* Animated circles background */
.bg-circles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 30%, #00ffcc22 0%, transparent 60%),
    radial-gradient(circle at 80% 70%, #00ffcc11 0%, transparent 60%);
  z-index: 1;
  animation: moveCircles 10s infinite alternate ease-in-out;
}

@keyframes moveCircles {
  0% { transform: translate(0, 0); }
  100% { transform: translate(20px, -20px); }
}

/* Footer with Video Background */
/* Footer */
.footer {
  position: relative;
  width: 100%;
  min-height: 80vh;
  overflow: hidden;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
}

/* Video Background */
.footer .bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 0;
}

/* Animated Circles */
.bg-circles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 30%, #00ffcc22 0%, transparent 60%),
    radial-gradient(circle at 80% 70%, #00ffcc11 0%, transparent 60%);
  z-index: 1;
  animation: moveCircles 10s infinite alternate ease-in-out;
}

@keyframes moveCircles {
  0% { transform: translate(0, 0); }
  100% { transform: translate(20px, -20px); }
}

/* Overlay Content */
.footer-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 1200px;
  padding: 50px 20px;
}

/* Logo and CTA */
.footer-logo {
  width: 150px;
  margin-bottom: 20px;
}

.footer-overlay h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.footer-overlay p {
  font-size: 1rem;
  margin-bottom: 20px;
}

.footer-overlay .btn {
  padding: 12px 30px;
  background: #fff;
  color: var(--primary);
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.footer-overlay .btn:hover {
  background: var(--primary);
  color: #fff;
}

/* Links Section */
.footer-links-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  width: 100%;
  margin-top: 40px;
}

/* Individual columns */
.footer-links, .footer-legal, .footer-social {
  flex: 1 1 200px;
  text-align: center;
}

/* Headings */
.footer-links h4, .footer-legal h4, .footer-social h4 {
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: #00ffcc; /* green heading to match theme */
}

/* Lists */
.footer-links ul, .footer-legal ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* List items */
.footer-links ul li, .footer-legal ul li {
  margin: 8px 0;
}

/* Links */
.footer-links ul li a, .footer-legal ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

/* Hover effect */
.footer-links ul li a:hover, .footer-legal ul li a:hover {
  color: var(--primary); /* green theme hover */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .footer-links-container {
    flex-direction: column;
    gap: 20px;
  }
  
  .footer-links, .footer-legal, .footer-social {
    text-align: center;
  }
}


.footer-social a {
  color: #fff;
  margin: 0 10px;
  font-size: 24px;
  transition: 0.3s;
}

.footer-social a:hover {
  color: var(--primary);
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 20px;
  font-size: 14px;
  color: #aaa;
}
/* Mobile Adjustments */
@media (max-width: 768px) {
  .footer-overlay h2 {
    font-size: 1.5rem;
  }
  .footer-overlay .btn {
    padding: 10px 25px;
    font-size: 14px;
  }
  .footer-links-container {
    flex-direction: column;
    gap: 20px;
  }
  .footer-logo {
    width: 100px;
  }

  .footer .bg-video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    top: 0 !important;
    left: 0 !important;
    transform: none !important;
  }
}
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.7); /* semi-transparent overlay */
  animation: fadeIn 0.5s;
}

.modal-content {
  background-color: #000; 
  color: #00ffcc;
  margin: 15% auto; /* 15% from top */
  padding: 20px;
  border: 2px solid #00ffcc;
  width: 90%;
  max-width: 500px;
  text-align: center;
  border-radius: 10px;
  animation: slideIn 0.5s;
}

.modal-content h2 {
  margin-top: 0;
}

.modal-content a.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #00ffcc;
  color: #000;
  text-decoration: none;
  margin-top: 15px;
  border-radius: 5px;
  font-weight: bold;
}

.modal-content a.btn:hover {
  background: #fff;
}

.close {
  color: #00ffcc;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: #fff;
}

@keyframes fadeIn {
  from {opacity: 0;} to {opacity: 1;}
}

@keyframes slideIn {
  from {transform: translateY(-50px);} to {transform: translateY(0);}
}



.moving-circle {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,255,153,0.4), transparent 70%);
  animation: openclose 5s infinite ease-in-out alternate;
  pointer-events: none;
}

@keyframes openclose {
  0% { transform: scale(0.8); opacity: 0.5; }
  100% { transform: scale(1.5); opacity: 1; }
}
