body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #000;
  color: #fff;
  overflow-x: hidden;
  text-align: center;
}

* {
  box-sizing: border-box;
}


.text-container p {
  text-align: justify;
}

/* BACKGROUND VIDEO */
.bg-video {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
  opacity: 0.15;
}

.video-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

/* NAVIGATION BAR */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.7);
  padding: 0 2rem;
  height: 70px;
  position: relative;
  z-index: 10;
}

/* Logo Section */
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeInUp 1s ease forwards 0.2s;
}

.logo img {
  height: 45px;
  filter: drop-shadow(0 0 10px #fff);
  animation: glow 2s infinite alternate;
}

.logo span {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 0 10px #fff;
}

/* Navigation Links */
nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

nav ul li {
  position: relative;
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeInUp 1s ease forwards;
}

nav ul li:nth-child(1) { animation-delay: 0.5s; }
nav ul li:nth-child(2) { animation-delay: 0.6s; }
nav ul li:nth-child(3) { animation-delay: 0.7s; }
nav ul li:nth-child(4) { animation-delay: 0.8s; }
nav ul li:nth-child(5) { animation-delay: 0.9s; }

nav ul li a {
  color: #aaa;
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: bold;
  position: relative;
  padding: 5px;
  transition: color 0.5s ease;
}

nav ul li a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: 0;
  background-color: #fff;
  transition: width 0.5s ease;
}

nav ul li a:hover {
  color: #fff;
}

nav ul li a:hover::after {
  width: 100%;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 1rem;
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeInUp 1s ease forwards 1.0s;
}

.social-icons a {
  color: #aaa;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  color: #fff;
  transform: scale(1.3);
}

.legal-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 20px;
  background-color: #00000094;
  color: #bbb;
  font-size: 0.8rem;
  font-family: 'Segoe UI', sans-serif;
}

.legal-info .right {
  margin: 0;
}

/* Hamburger Button */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 30px;
  height: 25px;
  justify-content: space-between;
  z-index: 100;
}

.hamburger span {
  display: block;
  height: 4px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

/* Responsive Styling */
@media (max-width: 768px) {
  nav {
    flex-wrap: wrap;
    height: auto;
    padding: 0 1rem;
  }

  .hamburger {
    display: flex;
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
  }

  nav ul {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 2rem 0;
    margin: 0;
    display: none;
    transition: all 0.3s;
    z-index: 15;
  }

  nav ul.active {
    display: flex;
  }

  nav .social-icons {
    display: none;
  }

  /* Hamburger Animation */
  .hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 7px);
  }

  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
}

/* Animations */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes glow {
  from {
    filter: drop-shadow(0 0 5px #fff);
  }
  to {
    filter: drop-shadow(0 0 15px #fff);
  }
}

/* Hamburger Styles */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 30px;
  height: 25px;
  justify-content: space-between;
  z-index: 100;
}
.hamburger span {
  display: block;
  height: 4px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

/* Hide nav by default in mobile */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.95);
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    gap: 2rem;
    padding: 2rem 0;
    text-align: center;
    z-index: 99;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 7px);
  }

  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  nav .social-icons {
    display: none;
  }
}

/* HERO SECTION */
.container {
    margin-top: -90px; 
  min-height: 100vh;
  height: 100vh; 
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  flex-direction: column;
  text-align: center;
  position: relative;
  background-color: transparent;
}

/* === HERO INNER WRAPPER === */
.hero-inner {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

/* === HERO TEXT === */
.content h1 {
  font-size: 4rem;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

.content p {
  font-size: 1.4rem;
  color: #ddd;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
}

/* === BUTTONS === */
.btns {
  margin-bottom: 2rem;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-btn {
  padding: 0.75rem 2rem;
  background: #090909;
  color: #000;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px #fafffe, 0 0 20px #eff3f2 inset;
}

.hero-btn:hover {
  background: #00cba9;
  color: #fff;
  box-shadow: 0 0 15px #f3f3f3, 0 0 25px #edefef inset;
}

/* === CONNECT / IMPACT BUTTONS === */
.btn-primary {
  background-color: #ffffff;
  color: #000000;
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 30px;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.btn-secondary:hover {
  background-color: #ffffff;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

/* === ROLE LIST === */
.role-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  color: #fff;
  font-size: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 2rem;
  justify-content: center;
}

.role-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.role-list i {
  color: #d9e1e0;
  font-size: 1.1rem;
}

/* === ANIMATIONS === */
@keyframes glow {
  from { filter: drop-shadow(0 0 5px #fff); }
  to { filter: drop-shadow(0 0 15px #fff); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*About us*/
.about-us-text {
  background-color: #000000;
  text-align: center;
  color: #fff;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
}

.about-us-text .text-content {
  max-width: 800px;
}

.about-us-text h2 {
  font-size: 32px;
  font-weight: bold;
  color: #f4f1fb;
  margin-bottom: 20px;
}

.about-us-text p {
  font-size: 1.05rem;
  color: #ccc;
  line-height: 1.8;
  max-width: 700px;
  text-align: justify; 
  margin-bottom: 30px;
}

.btn-glow {
  display: inline-block;
  color: #fff;
  border: 1px solid #f7f6fa;
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-glow:hover {
  background-color: #f3f0fa;
  color: #000;
  box-shadow: 0 0 10px #f9f7ff, 0 0 20px #eeeaf7;
}


/*mission and vision*/
.mission-vision-section {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 80px 0;
  max-width: 1200px;
  margin: auto;
}

.mission,
.vision {
  flex: 1;
  min-width: 300px;
  background-color: #111;
  padding: 30px;
  border-radius: 16px;
  text-align: left;
}

.mission h2,
.vision h2 {
  font-size: 24px;
  color: #fcfbff;
  margin-bottom: 20px;
}

.mission p,
.vision p {
  font-size: 16px;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 20px;
}

.btn-glow {
  display: inline-block;
  color: #fff;
  border: 1px solid #c5aefc;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-glow:hover {
  background-color: #c5aefc;
  color: #000;
  box-shadow: 0 0 10px #c5aefc, 0 0 20px #c5aefc;
}

/* FEATURES SECTION */
.features {
  padding: 80px 40px;
  background-color: #000; /* black bg */
  text-align: center;
}

.section-title {
  font-size: 36px;
  margin-bottom: 50px;
  color: #fff;
  text-shadow: 0 0 10px #fff;
}

.features-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.feature-box {
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.4s ease, opacity 0.4s ease;
  border: 1px solid white;
  background: transparent;
  color: white;
  padding: 30px 20px;
  border-radius: 16px;
  width: 250px;
  box-shadow: none;
  cursor: default;
}

.feature-box.scroll-in {
  opacity: 1;
  transform: translateY(0);
  box-shadow: 0 12px 36px rgba(255, 255, 255, 0.12);
  transition-delay: 0.15s;
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 36px rgba(255, 255, 255, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #fff;
}

.feature-box p {
  font-size: 14px;
  color: #ccc;
  line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .features-container {
    flex-direction: column;
    align-items: center;
  }
}

/* === USE CASES SECTION ENHANCEMENT === */

.use-cases-section {
  padding: 6rem 2rem;
  color: #f5f5f5;
  background: transparent;
  position: relative;
  z-index: 1;
  overflow-x: hidden;
}

.use-cases-wrapper {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
  gap: 4rem;
}

/* LEFT */
.use-cases-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateX(-50px);
  animation: slideInLeft 1s ease forwards;
  animation-delay: 0.3s;
  padding: 2rem;
  text-align: left;
}

/* Tag Line */
.section-tag {
  font-size: 1.8rem;
  color: #ffffff;
  text-align: center;
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
}

/* Main Heading */
.section-heading {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.4;
  text-align: center;  
}

/* Paragraph */
.description {
  font-size: 1.05rem;
  color: #ccc;
  line-height: 1.8;
  max-width: 700px;
  text-align: justify; 
  margin: 0 auto;      
}

/* RIGHT */
.use-cases-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
  opacity: 0;
  transform: translateX(50px);
  animation: slideInRight 1s ease forwards;
  animation-delay: 0.6s;
}

.use-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 12px;
  backdrop-filter: blur(6px);
  transition: all 0.4s ease;
  text-align: center;
  opacity: 0;
  transform: translateY(40px);
  animation: cardFadeIn 1s ease forwards;
}

/* Optional Hover Boost */
.use-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.1);
}

/* Card staggered animation delay */
.use-card:nth-child(1) { animation-delay: 0.8s; }
.use-card:nth-child(2) { animation-delay: 1s; }
.use-card:nth-child(3) { animation-delay: 1.2s; }

/* Animations */
@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes cardFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 900px) {
  .use-cases-wrapper {
    flex-direction: column;
  }

  .use-cases-left,
  .use-cases-right {
    transform: none;
    animation: none;
    opacity: 1;
  }

  .use-cases-left h2 {
    font-size: 2rem;
  }

  .use-card {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* FOOTER */
.footer {
  background: linear-gradient(to right, #000, #111);
  padding: 3rem 2rem 2rem;
  color: #ccc;
  font-size: 0.95rem;
  border-top: 1px solid #222;
  margin-top: 4rem;
}

.footer-left {
  text-align: left;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 2rem;
}

.footer h3,
.footer h4 {
  color: #fff;
  margin-bottom: 1rem;
}

.footer-left p {
  max-width: 400px;
  line-height: 1.6;
}

.footer-center ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-center ul li {
  margin-bottom: 0.5rem;
}

.footer-center ul li a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-center ul li a:hover {
  color: #fff;
}

.footer-social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.footer-social-icons a {
  color: #aaa;
  font-size: 1.3rem;
  transition: transform 0.3s, color 0.3s;
}

.footer-social-icons a:hover {
  color: #fff;
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #222;
  margin-top: 2rem;
  padding-top: 1rem;
  font-size: 0.85rem;
  color: #777;
}

/* === ENHANCED FOOTER RESPONSIVE STYLES === */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
    padding: 2rem 1rem;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    width: 100%;
    margin: 0;
  }

  .footer-center ul {
    padding: 0;
  }

  .footer-center ul li {
    margin-bottom: 0.75rem;
  }

  .footer-social-icons {
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
  }

  .footer h3,
  .footer h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }

  .footer p,
  .footer a {
    font-size: 1rem;
    line-height: 1.6;
  }

  .footer-bottom {
    font-size: 0.9rem;
    margin-top: 2rem;
  }
}

/* Scroll to Top Button */
#scrollToTopBtn {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  font-size: 20px;
  background-color: #fff;
  color: #000;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

#scrollToTopBtn:hover {
  background-color: #ddd;
}

/* Scroll Reveal Animation */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .content h1 {
    font-size: 2.5rem;
  }
  .content p {
    font-size: 1.1rem;
  }
}
/* Responsive Design: Media Queries */

/* Tablets (768px and below) */
@media (max-width: 768px) {
  nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
  }

  nav .social-icons {
    margin-top: 10px;
    text-align: center;
  }

  .content h1 {
    font-size: 2rem;
    text-align: center;
  }

  .hero-inner {
    padding: 20px;
    text-align: center;
  }

  section.image-left-text-right,
  section.text-left-image-right {
    flex-direction: column;
    text-align: center;
  }

  section .img-container,
  section .text-container {
    width: 100%;
  }

  section .img-container img {
    width: 90%;
    margin: 0 auto;
  }

  .features-container {
    flex-direction: column;
    align-items: center;
  }

  .feature-box {
    width: 90%;
    margin-bottom: 20px;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    margin-bottom: 20px;
  }
}

/* Mobile Devices (480px and below) */
@media (max-width: 480px) {
  nav {
    flex-direction: column;
    align-items: center;
  }

  nav .logo {
    margin-bottom: 10px;
    margin-top: 15px; 
  }

  nav ul li {
    margin: 5px 0;
  }

  .content h1 {
    font-size: 1.6rem;
  }

  .btn-glow {
    padding: 8px 16px;
    font-size: 0.9rem;
  }

    .footer-left {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-left .logo {
    justify-content: center;
  }
}
  .footer-social-icons a {
    margin: 0 6px;
  }

  #scrollToTopBtn {
    right: 10px;
    bottom: 10px;
    padding: 8px 12px;
    font-size: 1rem;
  }