* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

/* NAVBAR */
.header {
  position: sticky;
  top: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.navbar {
  max-width: 1400px;
  margin: auto;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2000;

}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 32px;
}

.logo span {
  font-size: 20px;
  font-weight: 600;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #cfcfcf;
  font-size: 15px;
}

.nav-links a:hover {
  color: #fff;
}

.nav-cta a {
  text-decoration: none;
  padding: 10px 18px;
  border: 1px solid #fff;
  color: #fff;
}

.nav-cta a:hover {
  background: #fff;
  color: #000;
}


/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
}

/* MOBILE MENU */

/* MENU OVERLAY */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 998;
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* CLOSE BUTTON */
.menu-close {
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 28px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

/* MOBILE MENU UPDATE */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100svh;
  background: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;
  transition: right 0.4s ease;
  z-index: 999;
} 

/* .mobile-menu {
  position: fixed;
  inset: 0;                
  background: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  z-index: 2000;
} */

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 22px;
  font-weight: 500;
}

.mobile-menu .mobile-cta {
  margin-top: 20px;
  padding: 12px 28px;
  border: 1px solid #fff;
}

/* ACTIVE STATES */
.mobile-menu.active {
  right: 0;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(11px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-11px);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}


/* HERO */
/* .hero {
  position: relative;
  height: 90vh;
  display: flex;
  align-items: center;
  padding: 0 40px;
} */


.hero {
  position: relative;
  min-height: 100svh; /* modern mobile-safe viewport */
  display: flex;
  align-items: center;
  padding: 0 40px;
  overflow: hidden;
}
.hero {
  position: relative;
  z-index: 1;
}


@media (max-width: 768px) {
  .hero {
    min-height: 100svh;
    padding-bottom: 0;
    margin-bottom: 0;
  }
}

.hero-content {
  max-width: 700px;
  z-index: 2;
  animation: fadeUp 1.2s ease forwards;
}

.hero h1 {
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero h1 span {
  background: linear-gradient(90deg, #7f8cff, #b37cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 18px;
  color: #cfcfcf;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.btn-primary {
  padding: 14px 26px;
  background: linear-gradient(135deg, #7f8cff, #b37cff);
  color: #fff;
  text-decoration: none;
}

.btn-secondary {
  padding: 14px 26px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
}

/* Animated Gradient Background */
.animated-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    -45deg,
    #0f0f0f,
    #1a1a2e,
    #2a1a3d,
    #0f2027
  );
  background-size: 400% 400%;
  animation: gradientMove 15s ease infinite;
  z-index: 1;
}

/* SERVICES */
.services {
  padding: 100px 40px;
  max-width: 1400px;
  margin: auto;
}

.services h2 {
  font-size: 36px;
  margin-bottom: 50px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: rgba(255, 255, 255, 0.04);
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card h3 {
  margin-bottom: 15px;
}

/* Animations */
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 40px;
  }

  .nav-links {
    display: none;
  }
}


/* IMPACT SECTION */
.impact {
  padding: 120px 40px;
  background: linear-gradient(
    180deg,
    #000 0%,
    #0a0a0f 100%
  );
}

.impact-container {
  max-width: 1400px;
  margin: auto;
}

.impact-text {
  max-width: 600px;
  margin-bottom: 60px;
}

.impact-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.impact-text p {
  color: #cfcfcf;
  font-size: 18px;
}

.impact-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.impact-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 30px;
  transition: transform 0.4s ease;
}

.impact-card span {
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(135deg, #7f8cff, #b37cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.impact-card h3 {
  margin: 15px 0;
}

.impact-card p {
  color: #cfcfcf;
}

.impact-card:hover {
  transform: translateY(-10px);
}


/* INDUSTRIES SECTION */
.industries {
  padding: 120px 40px;
  background: #000;
}

.industries-container {
  max-width: 1400px;
  margin: auto;
}

.industries-header {
  max-width: 650px;
  margin-bottom: 60px;
}

.industries-header h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.industries-header p {
  font-size: 18px;
  color: #cfcfcf;
}

/* Grid */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* Card */
.industry-card {
  position: relative;
  overflow: hidden;
  height: 340px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
  transition: transform 0.6s ease;
}

.industry-content {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
}

.industry-content h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.industry-content p {
  color: #d1d1d1;
  font-size: 15px;
}

/* Hover Effect */
.industry-card:hover img {
  transform: scale(1.08);
}


/* CASE STUDIES SECTION */
.case-studies {
  padding: 120px 40px;
  background: linear-gradient(
    180deg,
    #000 0%,
    #0b0b12 100%
  );
}

.case-container {
  max-width: 1400px;
  margin: auto;
}

.case-header {
  max-width: 650px;
  margin-bottom: 60px;
}

.case-header h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.case-header p {
  font-size: 18px;
  color: #cfcfcf;
}

/* Grid */
.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* Card */
.case-card {
  position: relative;
  height: 420px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.case-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55);
  transition: transform 0.6s ease;
}

.case-content {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
}

.case-content span {
  font-size: 13px;
  letter-spacing: 1px;
  color: #bdbdbd;
  text-transform: uppercase;
}

.case-content h3 {
  font-size: 22px;
  margin: 10px 0;
}

.case-content p {
  font-size: 15px;
  color: #d1d1d1;
}

/* Hover */
.case-card:hover img {
  transform: scale(1.08);
}
/* CLIENTS SECTION */
.clients {
  padding: 100px 40px;
  background: #000;
}

.clients-container {
  max-width: 1400px;
  margin: auto;
  text-align: center;
}

.clients-header {
  max-width: 700px;
  margin: 0 auto 50px;
}

.clients-header h2 {
  font-size: 34px;
  margin-bottom: 15px;
}

.clients-header p {
  font-size: 17px;
  color: #cfcfcf;
}

/* Logo Strip */
.logo-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.logo-strip img {
  height: 60px;
  filter: grayscale(50%) brightness(1.2);
  opacity: 1;
  transition: all 0.3s ease;
}

.logo-strip img:hover {
  opacity: 1;
  filter: grayscale(0%) brightness(1.5);
  transform: scale(1.2);
}


/* STATS SECTION */
.stats {
  padding: 120px 40px;
  background: linear-gradient(
    180deg,
    #000 0%,
    #0a0a14 100%
  );
}

.stats-container {
  max-width: 1400px;
  margin: auto;
}

.stats-header {
  max-width: 650px;
  margin-bottom: 60px;
}

.stats-header h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.stats-header p {
  font-size: 18px;
  color: #cfcfcf;
}

/* Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

/* Card */
.stat-card {
  padding: 50px 30px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.stat-card h3 {
  font-size: 48px;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #7f8cff, #b37cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-card p {
  font-size: 15px;
  color: #cfcfcf;
  text-transform: uppercase;
  letter-spacing: 1px;
}


/* PRODUCTS SECTION */
.products {
  padding: 120px 40px;
  background: linear-gradient(
    180deg,
    #000 0%,
    #0b0b16 100%
  );
}

.products-container {
  max-width: 1400px;
  margin: auto;
}

.products-header {
  max-width: 650px;
  margin-bottom: 60px;
}

.products-header h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.products-header p {
  font-size: 18px;
  color: #cfcfcf;
}

/* Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* Card */
.product-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition: transform 0.4s ease;
}

.product-card:hover {
  transform: translateY(-10px);
}

/* Image */
.product-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  filter: brightness(0.8);
}

/* Content */
.product-content {
  padding: 30px;
}

.product-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.product-content p {
  font-size: 15px;
  color: #cfcfcf;
  margin-bottom: 15px;
}

.product-content span {
  font-size: 13px;
  letter-spacing: 1px;
  color: #9fa8ff;
  text-transform: uppercase;
}


/* FINAL CTA */
.final-cta {
  padding: 140px 40px;
  background: linear-gradient(
    135deg,
    #0a0a14,
    #000
  );
  text-align: center;
}

.cta-container {
  max-width: 800px;
  margin: auto;
}

.final-cta h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.final-cta p {
  font-size: 18px;
  color: #cfcfcf;
  margin-bottom: 40px;
}

/* Buttons */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-primary {
  padding: 14px 30px;
  background: linear-gradient(135deg, #7f8cff, #b37cff);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.cta-secondary {
  padding: 14px 30px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
}

.cta-secondary:hover {
  background: #fff;
  color: #000;
}


/* FOOTER */
.footer {
  padding: 80px 40px 30px;
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-container {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 60px;
}

.footer-brand h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.footer-brand p {
  color: #cfcfcf;
  max-width: 400px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-links h4 {
  margin-bottom: 15px;
  font-size: 16px;
}

.footer-links a {
  display: block;
  color: #cfcfcf;
  text-decoration: none;
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  margin-top: 60px;
  font-size: 14px;
  color: #777;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}
