:root {
  --neon-green: #39ff14;
  --dark-bg: #0a0a0a;
  --darker-bg: #000000;
  --card-bg: #111111;
  --light-text: #ffffff;
  --gray-text: #cccccc;
}

::-webkit-scrollbar {
  width: 5px;
  background-color: black;
}
::-webkit-scrollbar-thumb {
  background-color: var(--neon-green);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  background-color: var(--dark-bg) !important;
  color: var(--light-text);
  overflow-x: hidden;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

/* Header Styles */
/* Header Styles */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.logo {
  width: 120px;
}

nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

nav a {
  font-size: 1rem;
  letter-spacing: 0.1rem;
  transition: color 0.2s ease;
  text-decoration: none;
  color: var(--light-text);
}

#hee{
  color:var(--neon-green);
  border-bottom: 2px solid var(--neon-green);
}

nav a:hover {
  color: var(--neon-green);
  border-bottom: 2px solid var(--neon-green);
}

.btn-support {
  text-decoration: none;
  border: 1px solid var(--neon-green);
  background-color: transparent;
  color: var(--neon-green);
  padding: 0.8rem 1.5rem;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-support:hover {
  background-color: var(--neon-green);
  color: var(--darker-bg);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--light-text);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 0 50px;
  background: radial-gradient(
    circle at 10% 20%,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0) 50%
  );
  background-color: #0a0a0a;
}

.hero-container {
  display: flex;
  align-items: center;
  min-height: calc(100vh - 120px);
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-content {
  flex: 1;
  max-width: 600px;
  z-index: 2;
}

.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.tag {
  position: relative;
  width: 18rem;
  height: 2.5rem;
  border-radius: 50px;
  background: linear-gradient(
    to right,
    #656565,
    var(--neon-green),
    var(--neon-green),
    var(--neon-green),
    #757575,
    #656565
  );
  background-size: 200%;
  animation: animationGradient 2.5s linear infinite;
  box-shadow: 0 0 15px rgba(57, 255, 20, 0.3);
  margin-bottom: 2rem;
}

.tag-box .tag {
  position: absolute;
  margin-bottom: 10%;
  background-color: var(--darker-bg);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s ease;
  cursor: pointer;
  font-weight: 500;
  color: var(--light-text);
}

.tag-box .tag:hover {
  color: var(--neon-green);
}

@keyframes animationGradient {
  to {
    background-position: 200%;
  }
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: var(--light-text);
}

.hero-title .highlight {
  background-color: var(--neon-green);
  color: var(--darker-bg);
  padding: 0 8px;
  border-radius: 4px;
  font-weight: 700;
}

.hero-description {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--gray-text);
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  text-decoration: none;
  border: 1px solid var(--neon-green);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary {
  background-color: transparent;
  color: var(--neon-green);
}

.btn-secondary {
  background-color: var(--neon-green);
  color: var(--darker-bg);
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(57, 255, 20, 0.3);
}

.btn-primary:hover {
  background-color: var(--neon-green);
  color: var(--darker-bg);
}

.btn-secondary:hover {
  background-color: transparent;
  color: var(--neon-green);
}

/* 3D Robot Container */
.robot-container {
  width: 100%;
  height: 500px;
  position: relative;
  z-index: 1;
  margin-bottom: 20%;
}

spline-viewer {
  width: 150%;
  height: 150%;
}

/* Background Effects */
.hero-bg-effect {
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(21, 44, 17, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background-color: var(--neon-green);
  border-radius: 50%;
  opacity: 0.3;
}

/* Trusted By Section */
.trusted-section {
  width: 100%;
  padding: 4rem 0;
  text-align: center;
  background-color: #000000;
}

.trusted-section .container {
  margin-left: 0%;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.trusted-section h3 {
  color: var(--gray-text);
  margin-bottom: 2rem;
}

.trust-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: rgb(24, 25, 25);
  height: 20vh;
  border-radius: 3cap;
  padding: 1rem;
}

.social {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.social img {
  height: 140px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.social img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* Default (Desktop) */
#mainNav {
  display: flex;
}

/* Tablet & Mobile */
@media (max-width: 1024px) {
  header {
    padding: 1rem 1.5rem;
  }
  .services-section {
    overflow: hidden;
  }
  /* Logo Left */
  .logo {
    width: 100px;
  }

  /* Toggle Button Right */
  .mobile-menu-btn {
    display: block;
    z-index: 1100;
  }

  /* Hide Nav Initially */
  nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    padding: 1.5rem 0;
    transform: translateY(-120%);
    transition: transform 0.4s ease;
  }

  nav a {
    font-size: 1.1rem;
  }

  /* Show Nav When Active */
  nav.active {
    transform: translateY(0);
  }
}

/* ===============================
   HERO RESPONSIVE
================================ */

@media (max-width: 1024px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .robot-container {
    height: 420px;
    margin-top: 2rem;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 2.3rem;
  }
  .services-section {
    overflow: hidden;
  }
  .hero-description {
    font-size: 1rem;
  }

  spline-viewer {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 768px) {
  /* Mobile menu */
  .mobile-menu-btn {
    display: block;
  }
  .social img {
    height: 100px;
  }
  .logo{
    margin-right: 80%;
  }
  .mobile-menu-btn{
    margin-right: 15%;
  }
  #mainNav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    z-index: 999;
    border-bottom: 1px solid rgba(1, 1, 1, 0.3);
  }

  #mainNav.active {
    transform: translateY(0);
  }

  /* Mobile menu animation - only for mobile */
  #mainNav a {
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
  }

  #mainNav.active a {
    opacity: 1;
    transform: translateY(0);
  }

  #mainNav.active a:nth-child(1) {
    transition-delay: 0.1s;
  }
  #mainNav.active a:nth-child(2) {
    transition-delay: 0.2s;
  }
  #mainNav.active a:nth-child(3) {
    transition-delay: 0.3s;
  }
  #mainNav.active a:nth-child(4) {
    transition-delay: 0.4s;
  }
  #mainNav.active a:nth-child(5) {
    transition-delay: 0.5s;
  }
  #mainNav.active a:nth-child(6) {
    transition-delay: 0.6s;
  }

  /* Hero section adjustments */
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .robot-container {
    height: 300px;
    margin-right: 10%;
  }

  /* Trusted section adjustments */
  .trusted-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }

  .trust-container {
    height: auto;
    padding: 2rem 0;
    border-radius: 20px;
  }

  .social {
    flex-direction: column;
    gap: 2rem;
  }

  .social img {
    width: 100px;
    height: auto;
    max-height: 120px;
  }
}

@media (max-width: 480px) {
  /* Header adjustments */
  body {
    background-color: #000;
  }
  .logo {
    width: 80px;
    margin-right: 70%;
  }
  #mobileMenuBtn {
    margin-right: 10%;
  }
  /* Hero section adjustments */
  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 0.95rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
  }

  .robot-container {
    height: 250px;
  }

  /* Trusted section adjustments */
  .trusted-section h3 {
    font-size: 1rem;
  }

  .social img {
    width: 100px;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}
body {
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

.section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 8%;
  position: relative;
  overflow: hidden;
  background-color: #000;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(0, 255, 132, 0.12),
      transparent 40%
    ),
    radial-gradient(circle at 80% 20%, rgba(0, 255, 132, 0.08), transparent 35%);
  z-index: -2;
}

.glow {
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(0, 255, 132, 0.35),
    rgba(0, 255, 132, 0.15),
    transparent 65%
  );
  left: -250px;
  top: 50%;
  transform: translateY(-50%);
  filter: blur(20px);
  z-index: -1;
}

.content {
  max-width: 520px;
}

.content h1 {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 22px;
  letter-spacing: -1px;
  color: white;
}
h1 span {
  color: #00ff04;
  border-bottom: 2px solid #01ff1f;
}

p {
  font-size: 15px;
  line-height: 1.8;
  color: #d1d1d1;
  margin-bottom: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(90deg, #01ff1f, #01ff1f);
  color: #000;
  padding: 14px 26px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  margin-top: 14px;
  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(47, 255, 0, 0.35);
}

.btn span {
  background: #eaeaea;
  padding: 6px 10px;
}
pre img {
  width: 70%;
  border-radius: 2cap;
}
/* What We Do Section */
.what-we-do {
  padding: 100px 0;
  background-color: var(--darker-bg);
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.section-header h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--light-text);
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background-color: var(--neon-green);
}

.section-header p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 25px auto 0;
  color: var(--gray-text);
}

/* What We Do Section */
.what-we-do {
  padding: 100px 0;
  background-color: var(--darker-bg);
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.section-header h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--light-text);
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background-color: var(--neon-green);
}

.section-header p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 25px auto 0;
  color: var(--gray-text);
}

/* ===============================
           MARQUEE CONTAINER
        ================================ */
.marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 36px 0;
  margin-top: 5%;
}

/* ===============================
           MARQUEE WRAPPER
        ================================ */
.marquee-wrapper {
  display: flex;
  width: 200%; /* Double the width to accommodate two sets of cards */
  animation: marquee-scroll 45s linear infinite;
}
.marquee-container {
  display: flex;
}
.marquee-container:hover .marquee-wrapper {
  animation-play-state: paused;
}

/* ===============================
           MARQUEE ANIMATION
        ================================ */
@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); /* Move by half the width (one set of cards) */
  }
}

/* ===============================
           SERVICE CARD (ALL)
        ================================ */
.service-card1 {
  position: relative;
  min-width: 320px;
  max-width: 320px;
  height: 500px;
  margin: 0 18px;
  background: linear-gradient(180deg, #1e7f3f, #0b3b1d);
  border-radius: 18px;
  border: 7px solid #ffffff;
  padding: 140px 25px 25px; /* space for service boy */
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  flex-shrink: 0; /* Prevent cards from shrinking */
  overflow: visible;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card1:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(57, 255, 20, 0.25);
}
.service-card2 {
  position: relative;
  min-width: 320px;
  max-width: 320px;
  height: 500px;
  margin: 0 18px;
  background: linear-gradient(180deg, #1e7f3f, #0b3b1d);
  border-radius: 18px;
  border: 7px solid #ffffff;
  padding: 140px 25px 25px; /* space for service boy */
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  flex-shrink: 0; /* Prevent cards from shrinking */
  overflow: visible;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card2:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(57, 255, 20, 0.25);
}
/* ===============================
           SERVICE BOY (ALL CARDS)
        ================================ */
.service-card1::before {
  content: "";
  position: absolute;
  top: -176px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background-image: url("./asste/image/emoji-1.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 20;
  pointer-events: none;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.45));
}
.service-card2::before {
  content: "";
  position: absolute;
  top: -178px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background-image: url("./asste/image/imoji-2.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 20;
  pointer-events: none;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.45));
}
/* ===============================
           SERVICE ICON
        ================================ */
.service-icon img {
  width: 150px;
  height: 150px;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 15px;
}

/* ===============================
           TEXT
        ================================ */
.service-card1 h3 {
  color: #ffffff;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.service-card1 p {
  color: #d6d6d6;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* ===============================
           BUTTON
        ================================ */
.service-btn {
  margin-top: auto;
  padding: 20px 38px 38px;
  background: #ffffff;
  color: #000000;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  transition: background 0.3s ease;
}
.marquee-container {
  /* background-color: #1aff00; */
  height: 100vh;
  margin-bottom: 5%;
}
.marquee-wrapper {
  margin-top: 10%;
}
/* #Services{
  background-color: #00c96a;
} */
.service-btn:hover {
  background: #e8e8e8;
}

/* ===============================
           RESPONSIVE
        ================================ */
@media (max-width: 768px) {
  .service-card1 {
    min-width: 280px;
    max-width: 280px;
    padding-top: 120px;
  }

  .service-card1::before {
    width: 150px;
    height: 150px;
    top: -132px;
  }
}
/* ===============================
           TEXT
        ================================ */
.service-card2 h3 {
  color: #ffffff;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.service-card2 p {
  color: #d6d6d6;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* ===============================
           BUTTON
        ================================ */
.service-btn {
  margin-top: auto;
  padding: 12px 22px;
  background: #ffffff;
  color: #000000;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: background 0.3s ease;
}

.service-btn:hover {
  background: #e8e8e8;
}

/* ===============================
           RESPONSIVE
        ================================ */
@media (max-width: 768px) {
  .service-card2 {
    min-width: 280px;
    max-width: 280px;
    padding-top: 120px;
  }

  .service-card2::before {
    width: 150px;
    height: 150px;
    top: -129px;
  }
}
/* Background Glow Effect */
.bg-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(57, 255, 20, 0.05) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  z-index: 1;
  /* margin-bottom: 5%; */
}

.icons {
  color: #ffffff;
  font-size: 55px;
}

/* About Us Section */
.about-section {
  padding: 100px 0;
  background-color: var(--dark-bg);
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 50px;
  border: 2px solid var(--neon-green);
  border-radius: 20px;
  padding: 40px;
}

.about-content {
  flex: 1;
}

.about-content h1 {
  color: var(--neon-green);
  font-size: 3rem;
  margin-bottom: 30px;
}

.about-content p {
  line-height: 1.8;
  font-size: 1.1rem;
  color: var(--gray-text);
  margin-bottom: 30px;
}

.about-content button {
  background-color: transparent;
  color: var(--neon-green);
  border: 2px solid var(--neon-green);
  padding: 15px 30px;
  font-size: 1.1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.about-content button:hover {
  background-color: var(--neon-green);
  color: var(--darker-bg);
  transform: translateY(-3px);
}

.about-image {
  flex: 1;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  border-radius: 10px;
}

/* Projects Section */
.projects-section {
  padding: 100px 0;
  background-color: var(--darker-bg);
  position: relative;
  overflow: hidden;
}

.projects-container {
  display: flex;
  align-items: center;
  min-height: 600px;
  max-width: 1200px;
  margin: 0 auto;
}

.projects-image {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  height: 500px;
}

.projects-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.projects-image:hover img {
  transform: scale(1.05);
}

.projects-content {
  flex: 1;
  padding-left: 60px;
}

.section-badge {
  display: inline-block;
  padding: 8px 16px;
  background-color: rgba(57, 255, 20, 0.1);
  border: 1px solid var(--neon-green);
  border-radius: 30px;
  color: var(--neon-green);
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.projects-heading {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 25px;
  color: var(--light-text);
  position: relative;
}

.projects-heading span {
  color: var(--neon-green);
}

.projects-description {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
  color: var(--gray-text);
}

.projects-features {
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.feature-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(57, 255, 20, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  color: var(--neon-green);
}

.feature-text {
  font-size: 1rem;
  color: var(--gray-text);
}

.btn-portfolio {
  display: inline-block;
  padding: 14px 32px;
  background-color: transparent;
  color: var(--neon-green);
  text-decoration: none;
  border: 2px solid var(--neon-green);
  border-radius: 4px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-portfolio:hover {
  color: var(--darker-bg);
  box-shadow: 0 0 15px var(--neon-green);
  transform: translateY(-3px);
}

.btn-portfolio::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--neon-green);
  transition: left 0.3s ease;
  z-index: -1;
}

.btn-portfolio:hover::before {
  left: 0;
}

/* Start Section */
.start {
  background-color: #39ff14;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
  width: 100%;
}

.start h1 {
  color: #000;
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: center;
}

.start button {
  padding: 15px 40px;
  background-color: black;
  color: rgb(250, 250, 250);
  font-size: 1.5rem;
  border: 1px solid rgb(55, 255, 0);
  border-radius: 50px;
  margin-top: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.start button:hover {
  background-color: rgb(255, 255, 255);
  color: black;
  transform: translateY(-3px);
}

/* Testimonials Section */
.testimonials-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #000000 0%, #000000 100%);
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #4285f4, #34a853);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #4a5568;
  max-width: 600px;
  margin: 0 auto;
}

/* Testimonials Slider */
.testimonials-slider {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}

.testimonials-track {
  display: flex;
  gap: 30px;
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 350px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 80px;
  color: rgba(66, 133, 244, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.client-info {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.client-avatar-container {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
  border: 3px solid #f0f0f0;
  overflow: hidden;
  position: relative;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.avatar-fallback {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #4285f4, #34a853);
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
}

.client-details {
  flex: 1;
}

.client-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 3px;
}

.client-designation {
  font-size: 0.9rem;
  color: #4a5568;
}

.testimonial-content {
  font-size: 1rem;
  line-height: 1.6;
  color: #4a5568;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.rating {
  display: flex;
  color: #f59e0b;
  font-size: 1rem;
}

.rating i {
  margin-right: 2px;
}

/* Autoplay Indicator */
.autoplay-indicator {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 5px;
}

.indicator-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e0;
  transition: all 0.3s ease;
}

.indicator-dot.active {
  background: #4285f4;
  transform: scale(1.2);
}

/* Controls */
.slider-controls {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.control-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #4a5568;
}

.control-btn:hover {
  background: linear-gradient(135deg, #4285f4, #34a853);
  color: white;
  transform: scale(1.05);
}

/* Recent News Section */
.recent-news {
  padding: 100px 0;
  background: #000;
  position: relative;
  overflow: hidden;
}

/* Background Effects */
.news-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(57, 255, 20, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(57, 255, 20, 0.05) 0%,
      transparent 50%
    );
  z-index: 0;
}

.grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      rgba(57, 255, 20, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(57, 255, 20, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  z-index: 0;
  pointer-events: none;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  z-index: 1;
}

.section-title {
  font-family: "Montserrat", sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: #39ff14;
  box-shadow: 0 0 10px #39ff14;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #b0b0b0;
  max-width: 600px;
  margin: 20px auto 0;
}

/* Articles Grid */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}

/* Article Card */
.article-card {
  background: rgba(20, 20, 20, 0.7);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(57, 255, 20, 0.1);
  position: relative;
}

.article-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(57, 255, 20, 0.2);
  border-color: rgba(57, 255, 20, 0.3);
}

/* Article Image */
.article-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.article-card:hover .article-image {
  transform: scale(1.05);
}

/* Article Content */
.article-content {
  padding: 25px;
}

/* Article Meta */
.article-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.article-date {
  font-size: 0.9rem;
  color: #808080;
  display: flex;
  align-items: center;
}

.article-date i {
  margin-right: 5px;
  color: #39ff14;
}

.article-category {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(57, 255, 20, 0.1);
  border: 1px solid #39ff14;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #39ff14;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Article Title */
.article-title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  line-height: 1.3;
  transition: all 0.3s ease;
}

.article-card:hover .article-title {
  color: #39ff14;
  text-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
}

/* Article Description */
.article-description {
  font-size: 1rem;
  color: #b0b0b0;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Read More Button */
.read-more {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: transparent;
  color: #39ff14;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid #39ff14;
  border-radius: 4px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.read-more i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.read-more::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #39ff14;
  z-index: -1;
  transition: left 0.3s ease;
}

.read-more:hover {
  color: #000;
  box-shadow: 0 0 15px rgba(57, 255, 20, 0.5);
}

.read-more:hover::before {
  left: 0;
}

.read-more:hover i {
  transform: translateX(5px);
}

/* Glow Effect */
.glow-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(57, 255, 20, 0.1) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 0;
}

.article-card:hover .glow-effect {
  opacity: 1;
}

/* Partners Section */
.partners-section {
  padding: 80px 0;
  text-align: center;
}

.section-heading {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #0b3b1d;
}

.highlight {
  color: #32cd32;
}

.section-subheading {
  font-size: 1.1rem;
  color: #777;
  max-width: 600px;
  margin: 0 auto 40px;
}

.partners-container {
  background-color: #000;
  border-radius: 16px;
  padding: 40px 20px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.partner-logo {
  height: 50px;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.partner-logo:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* Contact Section */
.contact-section {
  padding: 60px 0;
}

.contact-card {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
}

.text-column {
  flex: 1;
  min-width: 300px;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.big-text {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
}

.contact-column {
  flex: 1;
  min-width: 300px;
  background-color: #f8f9fa;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.country-block {
  margin-bottom: 40px;
}

.country-block:last-child {
  margin-bottom: 0;
}

.country-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 24px;
  height: 24px;
  margin-right: 15px;
  color: #32cd32;
}

.contact-text {
  font-size: 1rem;
  color: #555;
}

/* Footer Styles */
/* Footer Styles */
.footer {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.footer.visible {
  opacity: 1;
  transform: translateY(0);
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(26, 255, 0, 0.4),
    transparent
  );
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Footer Content Grid */
.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 50px;
}

/* Column Styles */
.footer-column h3 {
  color: #1aff00;
  font-size: 1.1rem;
  margin-bottom: 24px;
  font-weight: 600;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 12px;
}

.footer-column h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: rgba(26, 255, 0, 0.3);
}

/* Company Information */
.company-brand {
  margin-bottom: 30px;
}

.company-logo {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1aff00;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
}

.company-logo i {
  margin-right: 12px;
  font-size: 1.8rem;
}

.tagline {
  font-size: 1.1rem;
  color: #e0e0e0;
  margin-bottom: 20px;
  line-height: 1.5;
  font-weight: 300;
}

.company-description {
  font-size: 0.95rem;
  color: #b0b0b0;
  line-height: 1.6;
  max-width: 320px;
}

.company-stats {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1aff00;
  display: block;
}

.stat-label {
  font-size: 0.85rem;
  color: #808080;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Company Links */
.company-links {
  list-style: none;
}

.company-links li {
  margin-bottom: 16px;
}

.company-links a {
  color: #d0d0d0;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  position: relative;
}

.company-links a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: #1aff00;
  transition: width 0.3s ease;
}

.company-links a:hover {
  color: #1aff00;
  padding-left: 5px;
}

.company-links a:hover::before {
  width: 100%;
}

/* Services */
.services-list {
  list-style: none;
}

.services-list li {
  margin-bottom: 16px;
  color: #d0d0d0;
  font-size: 0.95rem;
  position: relative;
  padding-left: 20px;
  transition: all 0.3s ease;
}

.services-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: rgba(26, 255, 0, 0.5);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.services-list li:hover {
  color: #1aff00;
  padding-left: 25px;
}

.services-list li:hover::before {
  background: #1aff00;
  box-shadow: 0 0 5px rgba(26, 255, 0, 0.5);
}

/* Contact Details */
.contact-details {
  list-style: none;
}

.contact-details li {
  margin-bottom: 20px;
  color: #d0d0d0;
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
}

.contact-details i {
  color: #1aff00;
  margin-right: 12px;
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
  margin-top: 2px;
}

.contact-details span {
  line-height: 1.5;
}

.social-links {
  display: flex;
  margin-top: 25px;
  gap: 12px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(26, 255, 0, 0.08);
  color: #d0d0d0;
  transition: all 0.3s ease;
  border: 1px solid rgba(26, 255, 0, 0.1);
}

.social-links a:hover {
  background: rgba(26, 255, 0, 0.15);
  color: #1aff00;
  border-color: rgba(26, 255, 0, 0.3);
  transform: translateY(-2px);
}

/* Footer Bottom Bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 25px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.copyright {
  color: #808080;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
}

.copyright span {
  color: #1aff00;
  margin: 0 5px;
}

.footer-legal-links {
  display: flex;
  gap: 25px;
}

.footer-legal-links a {
  color: #808080;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
}

.footer-legal-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #1aff00;
  transition: width 0.3s ease;
}

.footer-legal-links a:hover {
  color: #1aff00;
}

.footer-legal-links a:hover::after {
  width: 100%;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .marquee-container{
    margin-top: 10%;
  }
  .marquee-wrapper{
    margin-top: 10%;
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .company-stats {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .footer-legal-links {
    justify-content: center;
  }
}

/* Service Button */
.service-btn {
  display: inline-block;
  padding: 10px 28px;
  background-color: transparent;
  color: var(--neon-green);
  text-decoration: none;
  border: 2px solid var(--neon-green);
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 15px;
}

.service-btn:hover {
  color: var(--darker-bg);
  box-shadow: 0 0 15px var(--neon-green);
  transform: translateY(-3px);
}

.service-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--neon-green);
  transition: left 0.3s ease;
  z-index: -1;
}

.service-btn:hover::before {
  left: 0;
}

/* Built From Scratch Section */
.built-from-scratch {
  padding: 120px 0;
  background: #000;
  position: relative;
  overflow: hidden;
}

/* Circuit Board Background */
.circuit-board {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      90deg,
      rgba(57, 255, 20, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(rgba(57, 255, 20, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 0;
}

/* Animated Data Streams */
.data-stream {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.stream {
  position: absolute;
  width: 2px;
  height: 100px;
  background: linear-gradient(to bottom, transparent, #39ff14, transparent);
  opacity: 0;
  animation: stream-flow 8s infinite linear;
}

@keyframes stream-flow {
  0% {
    transform: translateY(-100px);
    opacity: 0;
  }
  10% {
    opacity: 0.7;
  }
  90% {
    opacity: 0.7;
  }
  100% {
    transform: translateY(calc(100vh + 100px));
    opacity: 0;
  }
}

/* Main Content Structure */
.content-structure {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Left Column - Image with Circuit Frame */
.image-section {
  position: relative;
}

.circuit-frame {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.circuit-border {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  border: 2px solid #39ff14;
  border-radius: 10px;
  z-index: -1;
}

.circuit-corner {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 2px solid #39ff14;
}

.circuit-corner.top-left {
  top: -20px;
  left: -20px;
  border-right: none;
  border-bottom: none;
}

.circuit-corner.top-right {
  top: -20px;
  right: -20px;
  border-left: none;
  border-bottom: none;
}

.circuit-corner.bottom-left {
  bottom: -20px;
  left: -20px;
  border-right: none;
  border-top: none;
}

.circuit-corner.bottom-right {
  bottom: -20px;
  right: -20px;
  border-left: none;
  border-top: none;
}

.circuit-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  filter: contrast(120%) brightness(0.9);
  transition: transform 0.5s ease;
  display: block;
}

.circuit-image:hover {
  transform: scale(1.02);
}

/* Image Fallback */
.image-fallback {
  display: none;
  width: 100%;
  height: 400px;
  background: #000;
  border: 2px solid #39ff14;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #39ff14;
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  text-align: center;
  flex-direction: column;
}

.fallback-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

/* Circuit Nodes */
.circuit-node {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #39ff14;
  border-radius: 50%;
  box-shadow: 0 0 10px #39ff14;
}

.node-1 {
  top: 10%;
  left: 5%;
}
.node-2 {
  top: 20%;
  right: 10%;
}
.node-3 {
  bottom: 30%;
  left: 15%;
}
.node-4 {
  bottom: 10%;
  right: 5%;
}

/* Right Column - Content */
.content-section {
  padding: 20px;
}

.section-heading {
  font-family: "Montserrat", sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 30px;
  color: #fff;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
}

.section-heading::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100px;
  height: 3px;
  background: #39ff14;
  box-shadow: 0 0 10px #39ff14;
}

.section-description {
  font-size: 1.2rem;
  color: #b0b0b0;
  margin-bottom: 40px;
  line-height: 1.8;
}

.highlight {
  color: #39ff14;
  font-weight: 600;
  text-shadow: 0 0 5px rgba(57, 255, 20, 0.5);
}

/* Feature Cards */
.features-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.feature-card {
  background: rgba(57, 255, 20, 0.05);
  border: 1px solid rgba(57, 255, 20, 0.2);
  border-radius: 8px;
  padding: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: #39ff14;
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.feature-card:hover::before {
  transform: scaleY(1);
}

.feature-card:hover {
  background: rgba(57, 255, 20, 0.1);
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(57, 255, 20, 0.3);
}

.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(57, 255, 20, 0.1);
  border: 2px solid #39ff14;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  color: #39ff14;
  font-size: 1.3rem;
  box-shadow: 0 0 15px rgba(57, 255, 20, 0.5);
}

.feature-title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.feature-text {
  font-size: 0.95rem;
  color: #b0b0b0;
  line-height: 1.5;
}

/* CTA Section */
.cta-container {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.cta-button {
  display: inline-block;
  padding: 18px 40px;
  background: transparent;
  color: #39ff14;
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid #39ff14;
  border-radius: 4px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 0 20px rgba(57, 255, 20, 0.5);
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #39ff14;
  z-index: -1;
  transition: left 0.3s ease;
}

.cta-button:hover::before {
  left: 0;
}

.cta-button:hover {
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 5px 25px rgba(57, 255, 20, 0.7);
}

.cta-text {
  font-size: 1rem;
  color: #808080;
  max-width: 200px;
}

/* Binary Code Animation */
.binary-code {
  position: absolute;
  font-family: "Courier New", monospace;
  font-size: 10px;
  color: rgba(57, 255, 20, 0.3);
  white-space: nowrap;
  animation: binary-scroll 20s linear infinite;
}

@keyframes binary-scroll {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Modal for CTA */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.show {
  display: flex;
  opacity: 1;
}

.modal-content {
  background-color: #0a0a0a;
  padding: 50px;
  border-radius: 10px;
  max-width: 800px;
  width: 90%;
  position: relative;
  transform: scale(0.8);
  transition: transform 0.3s ease;
  border: 2px solid rgba(57, 255, 20, 0.3);
  box-shadow: 0 0 40px rgba(57, 255, 20, 0.3);
}

.modal.show .modal-content {
  transform: scale(1);
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  cursor: pointer;
  color: #39ff14;
  transition: all 0.2s ease;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(57, 255, 20, 0.3);
}

.close-modal:hover {
  color: #fff;
  background: rgba(57, 255, 20, 0.2);
  transform: rotate(90deg);
}

.modal-heading {
  font-family: "Montserrat", sans-serif;
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 15px rgba(57, 255, 20, 0.5);
  text-align: center;
}

.modal-description {
  color: #b0b0b0;
  margin-bottom: 40px;
  line-height: 1.6;
  font-size: 1.2rem;
  text-align: center;
}

.process-timeline {
  position: relative;
  padding: 20px 0;
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: rgba(57, 255, 20, 0.3);
}

.process-item {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  position: relative;
}

.process-item:nth-child(odd) {
  flex-direction: row;
}

.process-item:nth-child(even) {
  flex-direction: row-reverse;
}

.process-content {
  width: 45%;
  padding: 20px;
  background: rgba(57, 255, 20, 0.05);
  border: 1px solid rgba(57, 255, 20, 0.2);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.process-content:hover {
  background: rgba(57, 255, 20, 0.1);
  transform: scale(1.02);
}

.process-number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: #000;
  border: 2px solid #39ff14;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #39ff14;
  z-index: 1;
  box-shadow: 0 0 20px rgba(57, 255, 20, 0.5);
}

.process-title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.process-text {
  color: #b0b0b0;
  font-size: 1rem;
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 3.5rem;
  }

  .robot-container {
    height: 450px;
  }
}

@media (max-width: 992px) {
  header {
    padding: 1rem 2rem;
  }

  nav {
    gap: 1.5rem;
  }

  .hero-content {
    margin-left: 5%;
  }

  .hero-title {
    font-size: 3rem;
  }

  .robot-container {
    position: relative;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 500px;
    margin: 2rem auto 0;
  }

  .hero {
    flex-direction: column;
    text-align: center;
  }

  .projects-container {
    flex-direction: column;
  }

  .projects-content {
    padding-left: 0;
    padding-top: 40px;
    text-align: center;
  }

  .projects-heading {
    font-size: 2.5rem;
  }

  .projects-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .feature-item {
    width: 50%;
    margin-bottom: 20px;
  }

  .about-container {
    flex-direction: column;
  }

  .content-structure {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .section-heading {
    font-size: 2.8rem;
  }

  .features-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    gap: 1rem;
  }

  .mobile-menu-btn {
    display: block;
    position: absolute;
    top: 1.5rem;
    right: 2rem;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right 0.3s ease;
    z-index: 999;
  }

  nav.active {
    right: 0;
  }

  nav a {
    font-size: 1.2rem;
  }

  .btn-support {
    margin-top: 1rem;
  }

  .hero {
    padding: 100px 0 50px;
  }

  .section-header h2 {
    font-size: 2.2rem;
  }

  .section-header p {
    font-size: 1rem;
  }

  .service-card {
    min-width: 280px;
    max-width: 280px;
    height: 450px;
    padding: 20px;
  }

  .service-icon {
    font-size: 2rem;
  }

  .service-card h3 {
    font-size: 1.1rem;
  }

  .service-card p {
    font-size: 0.85rem;
  }

  .projects-heading {
    font-size: 2rem;
  }

  .projects-description {
    font-size: 1rem;
  }

  .feature-item {
    width: 100%;
  }

  .about-content h1 {
    font-size: 2.2rem;
  }

  .social img {
    height: 40px;
  }

  .articles-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .testimonial-card {
    flex: 0 0 280px;
    padding: 20px;
  }

  .client-avatar-container {
    width: 50px;
    height: 50px;
  }

  .process-item:nth-child(odd),
  .process-item:nth-child(even) {
    flex-direction: column;
  }

  .process-content {
    width: 100%;
    margin-bottom: 20px;
  }

  .process-timeline::before {
    left: 20px;
  }

  .process-number {
    left: 20px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .social {
    gap: 1rem;
  }

  .about-container {
    padding: 20px;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .recent-news {
    padding: 70px 0;
  }

  .section-heading {
    font-size: 2rem;
  }

  .built-from-scratch {
    padding: 80px 0;
  }

  .certifications {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* .recent-news{
  background-color: #00ff84;
  height: 180vh;
  background-image: url(./asste/image/Site1.png);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: 100%;
} */
#banner img{
  width: 100%;
  height: 90vh;
}