/* -------------------- Reset & Base -------------------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body {
  width: 100%;
  height: 100%;
  font-family: 'Montserrat', sans-serif;
  background: #0b0c10;
  color: #c5c6c7;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; transition: color 0.3s; }

/* -------------------- Preloader -------------------- */
#preloader {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: #0b0c10;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.preloader-logo {
  width: 80px;
  height: 80px;
  border: 4px solid #66fcf1;
  border-radius: 50%;
  animation: spin 2s linear infinite;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* -------------------- Navbar (Futuristic Animated) -------------------- */
nav {
  position: fixed;
  top: 0; width: 100%;
  padding: 20px 50px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
nav .logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #000000;
  text-shadow: 0 0 10px rgba(102,252,241,0.8);
}
nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
nav ul li { margin-left: 30px; }
nav ul li a {
  font-size: 1rem;
  color: #000000;
  position: relative;
}
nav ul li a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #66fcf1;
  transition: width 0.3s;
}
nav ul li a:hover::after { width: 100%; }
nav ul li a:hover { color: #66fcf1; }

/* Hamburger Menu Icon */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #000;
  margin: 4px 0;
  transition: all 0.3s ease;
}

/* -------------------- Split Hero Section with Glitch Effect -------------------- */
.split-hero {
  display: flex;
  flex-wrap: wrap;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

/* -------------------- Left Section (Hero Text) -------------------- */
.hero-left {
  background: linear-gradient(135deg, #0b0c10, #1f2833);
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  z-index: 2;
  padding-top: 250px;
  overflow: hidden;
}
.hero-left .hero-text { 
  text-align: center;
  margin-bottom: 250px;
}
.hero-left h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  opacity: 0;
  animation: glitch 1.5s ease-in-out forwards;
}
@keyframes glitch {
  0% { opacity: 0; text-shadow: 2px 2px #66fcf1; }
  20% { opacity: 1; text-shadow: -2px -2px #45a29e; }
  40% { text-shadow: 2px -2px #66fcf1; }
  60% { text-shadow: -2px 2px #45a29e; }
  80% { text-shadow: 2px 2px #66fcf1; }
  100% { opacity: 1; text-shadow: none; }
}
.hero-left p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeIn 1s ease-in-out forwards 1.5s;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.cta-btn {
  padding: 12px 30px;
  font-size: 1rem;
  background: #66fcf1;
  border: none;
  border-radius: 30px;
  color: #0b0c10;
  cursor: pointer;
  opacity: 0;
  animation: fadeIn 1s ease forwards 2s;
  transition: background 0.3s;
}
.cta-btn:hover { 
  background: #45a29e; 
}

/* -------------------- Right Section (Video) -------------------- */
.hero-right {
  flex: 1;
  min-width: 300px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-right video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  object-position: center;
  z-index: 1;
}
.hero-right::after {
  content: "";
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%; 
  height: 100%;
  background: rgba(11,12,16,0.5);
  pointer-events: none;
}

/* -------------------- Hero Section (Mobile: Split Layout) -------------------- */
@media (max-width: 768px) {
  .split-hero {
    flex-direction: column;
    height: auto;
    margin-top: 65px;
  }
  .hero-left, .hero-right {
    min-height: auto;
    height: 50%;
  }
  .hero-left {
    padding: 20px 20px 5px 20px; 
    text-align: center;
  }
  .hero-left h1 {
    margin-top: 50px;
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  .hero-left p {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  .cta-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    margin-bottom: 0;
  }
  .hero-right {
    width: 100%;
    height: auto;
  }
  .hero-right video {
    width: 100%;
    height: auto;
    object-fit: contain;
    background: #000;
  }
}

/* Innovation Lab Section */
.innovation-lab {
  padding: 80px 50px;
  background: #1a1a1a;
}
.innovation-lab h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #66fcf1;
}
.lab-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, 250px);
  gap: 30px;
  justify-content: center;
}
.lab-grid a {
  display: block;
}
.lab-item {
  background: rgba(102,252,241,0.1);
  border: 2px solid transparent;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.4s ease, border 0.4s ease;
  cursor: pointer;    
  position: relative;
  overflow: hidden;
  width: 250px;
  height: 200px;
}
.lab-item:hover {
  transform: scale(1.05);
  border: 2px solid #66fcf1;
}
.lab-item h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.lab-item p {
  font-size: 1rem;
}
.lab-item::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(102,252,241,0.4), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.lab-item:hover::before {
  opacity: 1;
}


/* -------------------- Future Vision with Floating Elements -------------------- */
.future-vision {
  position: relative;
  height: 80vh;
  background: url('images/future-vision.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.future-vision::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(11,12,16,0.7);
}
.vision-content {
  position: relative;
  text-align: center;
  color: #fff;
  opacity: 0;
}
.vision-content h2 { font-size: 3rem; margin-bottom: 20px; }
.vision-content p { font-size: 1.2rem; }
.floating-orb {
  position: absolute;
  border-radius: 50%;
  background: rgba(102,252,241,0.2);
  width: 100px;
  height: 100px;
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0% { transform: translate(0,0); }
  50% { transform: translate(30px, -30px); }
  100% { transform: translate(0,0); }
}

/* -------------------- Neural Nexus Section -------------------- */
.neural-nexus {
  padding: 80px 50px;
  background: linear-gradient(135deg, #0b0c10, #1f2833);
}
.neural-nexus h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #66fcf1;
}
.neural-nexus p {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.1rem;
}
.nexus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.nexus-card {
  background: rgba(102,252,241,0.1);
  padding: 30px;
  border-radius: 15px;
  border: 2px solid transparent;
  text-align: center;
  transition: transform 0.4s ease, border 0.4s ease;
  position: relative;
  overflow: hidden;
}
.nexus-card:hover {
  transform: scale(1.05);
  border: 2px solid #66fcf1;
}
.nexus-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #66fcf1;
}
.nexus-card p { font-size: 1rem; }
.nexus-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(102,252,241,0.4), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.nexus-card:hover::before { opacity: 1; }

/* -------------------- Latest AI Agent Section -------------------- */
.latest-ai {
  padding: 80px 50px;
  background: linear-gradient(135deg, #1f2833, #0b0c10);
  background-size: 200% 200%;
  animation: bgShift 10s ease infinite;
  text-align: center;
}
@keyframes bgShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.latest-ai .ai-container {
  max-width: 800px;
  margin: 0 auto;
}
.latest-ai h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: #66fcf1;
  opacity: 0;
  animation: fadeIn 1s forwards 0.5s;
}
.latest-ai p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: #c5c6c7;
  opacity: 0;
  animation: fadeIn 1s forwards 1s;
}
.ai-card {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.6s;
  opacity: 0;
  animation: fadeIn 1s forwards 1.5s;
}
.ai-card:hover {
  transform: rotateY(10deg) scale(1.05);
}
.ai-card img {
  width: 100%;
  display: block;
}
.ai-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11,12,16,0.8);
  color: #66fcf1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.6s;
}
.ai-card:hover .ai-overlay {
  opacity: 1;
}
.ai-overlay h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.ai-overlay button {
  padding: 10px 20px;
  font-size: 1rem;
  background: #66fcf1;
  border: none;
  border-radius: 30px;
  color: #0b0c10;
  cursor: pointer;
  transition: background 0.3s;
}
.ai-overlay button:hover {
  background: #45a29e;
}

/* -------------------- Why Choose Us Section -------------------- */
.why-choose-us {
  padding: 80px 50px;
  background: #0b0c10;
}
.why-choose-us h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #66fcf1;
}
.why-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.why-card {
  background: rgba(102,252,241,0.1);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  padding: 40px 20px;
  text-align: center;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  position: relative;
}
.why-card:hover {
  transform: rotateY(10deg) scale(1.1);
  box-shadow: 0 0 20px 5px #66fcf1;
}
.why-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #66fcf1;
}
.why-card p {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #c5c6c7;
}
.why-card a {
  display: inline-block;
  padding: 8px 16px;
  background: #66fcf1;
  color: #0b0c10;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.3s ease;
}
.why-card a:hover {
  background: #45a29e;
}

/* -------------------- Our Promise Section -------------------- */
.our-promise {
  padding: 80px 50px;
  background: #1f2833;
}
.our-promise h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #66fcf1;
}
.promise-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.promise-card {
  perspective: 1000px;
}
.promise-card-inner {
  position: relative;
  width: 100%;
  height: 300px;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}
.promise-card:hover .promise-card-inner {
  transform: rotateY(180deg);
}
.promise-card-front, .promise-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-shadow: 0 10px 20px rgba(102,252,241,0.2);
}
.promise-card-front {
  background: rgba(102,252,241,0.1);
  border: 2px solid #66fcf1;
  color: #66fcf1;
}
.promise-card-back {
  background: #66fcf1;
  color: #0b0c10;
  transform: rotateY(180deg);
  border: 2px solid #66fcf1;
}
.promise-card-front h3, .promise-card-back h3 {
  margin-bottom: 10px;
  font-size: 1.5rem;
}
.promise-card-front p, .promise-card-back p {
  font-size: 1rem;
  margin-bottom: 20px;
  text-align: center;
}
.promise-card-back a {
  display: inline-block;
  padding: 8px 16px;
  background: #0b0c10;
  color: #66fcf1;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.3s ease;
}
.promise-card-back a:hover { background: #1f2833; }

/* -------------------- Futuristic Footer -------------------- */
footer {
  background: linear-gradient(45deg, #000000, #00000021, #717a79, #e2ebeaad);
  background-size: 400% 400%;
  animation: gradientShift 5s ease infinite;
  padding: 40px;
  color: #c5c6c7; 
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(102,252,241,0.3);
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
footer .footer-section {
  flex: 1 1 200px;
  padding: 20px;
  border-right: 1px solid rgba(102,252,241,0.3);
}
footer .footer-section:last-child {
  border-right: none;
}
footer h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #fff;
}
footer p, footer ul {
  font-size: 0.9rem;
  line-height: 1.6;
}
footer ul {
  list-style: none;
  padding: 0;
}
footer ul li {
  margin-bottom: 10px;
}
footer a {
  color: #fff;
  transition: color 0.3s;
}
footer a:hover { color: #45a29e; }
.footer-bottom {
  width: 100%;
  text-align: center;
  margin-top: 20px;
  border-top: 1px solid rgba(102,252,241,0.3);
  padding-top: 20px;
  font-size: 0.8rem;
  color: #aaa;
}

/* -------------------- Responsive Adjustments -------------------- */
@media (max-width: 768px) {
  nav { padding: 15px 20px; }
  nav ul li { margin-left: 15px; }
  .split-hero { flex-direction: column; }
  .hero-left, .hero-right { min-height: 50vh; }
  footer { flex-direction: column; }
  footer .footer-section { border-right: none; border-bottom: 1px solid rgba(102,252,241,0.3); }
  footer .footer-section:last-child { border-bottom: none; }
  /* Display hamburger menu icon on mobile */
  .menu-toggle {
    display: flex;
  }
  /* Mobile Navigation */
  nav ul {
    position: absolute;
    top: 70px;
    right: 0;
    width: 200px;
    background: rgba(255,255,255,0.95);
    flex-direction: column;
    display: none;
    border-radius: 0 0 0 10px;
  }
  nav ul.active {
    display: flex;
  }
  nav ul li {
    margin: 10px 0;
    text-align: right;
    padding: 0 20px;
  }
  .timeline-entry {
    width: 90%;
    margin: 20px auto;
    left: 0 !important;
  }
  .timeline::after {
    left: 20px;
  }
  .hero-left h1 {
    font-size: 2.5rem;
  }
  .hero-left p {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .hero-left h1 {
    font-size: 2rem;
  }
  .hero-left p {
    font-size: 0.9rem;
  }
  .cta-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  .future-vision {
    height: 60vh;
  }
  .vision-content h2 {
    font-size: 2rem;
  }
  .vision-content p {
    font-size: 1rem;
  }
}























.cyber-journey {
  background: linear-gradient(135deg, #09203f, #537895);
  padding: 60px 20px;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  color: #fdfeff;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #777;
  margin-bottom: 40px;
}

.timeline-animated {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 900px;
  margin: auto;
}

.timeline-card {
  background: #fff;
  border-left: 5px solid #34495E;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: transform 0.3s ease;
}

.timeline-card:hover {
  transform: translateY(-5px);
}

.timeline-icon {
  font-size: 2rem;
  position: absolute;
  left: -35px;
  top: 25px;
  background: #34495E;
  color: #fff;
  padding: 12px;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
  margin-top: 0;
  color: #34495E;
}

.timeline-content p {
  color: #555;
  font-size: 1rem;
}
