/* Reset some defaults */
body, html {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  color: white;
  background-color: #000; /* fallback black background */
}

/* Navbar styling */
.navbar {
  background: #000000; /* solid black */
  padding: 15px 30px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.6); /* slight shadow for depth */
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.navbar a {
  color: #fff;
  text-decoration: none;
  margin-left: 20px;
  font-weight: bold;
  transition: color 0.3s ease;
}

.navbar a:hover {
  color: #00d9ff; /* hover = cyan */
}

.navbar .logo {
  font-size: 22px;
  color: #fff; /* logo white */
  font-weight: bold;
  font-family: 'Orbitron', sans-serif;
}

/* Hamburger styles */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 200;
  margin-left: 10px;
  padding: 0;
}

.hamburger span {
  display: block;
  height: 4px;
  width: 28px;
  background: #00CDFF;
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.4s;
}

/* Hamburger animation for open state */
.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Show hamburger on small screens */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
    margin-right: 0;
  }
  .nav-links {
    position: absolute;
    top: 60px;
    right: 10px;
    background: #11151c;
    flex-direction: column;
    width: 200px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,205,255,0.15);
    display: none;
    padding: 18px 0;
    transition: opacity 0.3s, transform 0.3s;
    opacity: 0;
    transform: translateY(-10px);
  }
  .nav-links.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
  }
  .nav-links a {
    color: #fff;
    padding: 12px 28px;
    margin: 0;
    border-radius: 8px;
    font-size: 1.08em;
    transition: background 0.2s, color 0.2s;
  }
  .nav-links a:hover {
    background: #00CDFF;
    color: #11151c;
  }
  .navbar {
    padding: 15px 10px;
    height: 60px;
  }
  .navbar .container {
    max-width: 100%;
    margin: 0;
    padding: 0 10px;
  }
}


/* Vanta background section */
#vanta-bg {
  height: 80vh; /* Full screen */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.vanta-text {
  position: relative;
  z-index: 10;
  color: #ffffff; /* bright neon green */
  text-shadow: 0px 0px 10px #00c8ff; /* glow effect */
}

.vanta-text h1 {
  font-size: 3em;
  margin: 0;
  font-family: 'Orbitron', sans-serif;
}

.vanta-text p {
  font-size: 1.2em;
  margin-top: 10px;
  color: #ffffff; /* cyan */
  font-family: Arial, sans-serif;
}

/* Section styling */
.content {
  background: #0A0A0A;
  color: #EAEAEA;
  padding: 50px 20px;
}

.cert-title {
  text-align: center;
  font-size: 2em;
  color: #ffffff; /* light blue */
  margin-bottom: 20px;
  font-family: 'Orbitron', sans-serif;
}

/* Logo slider container */
.logo-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 20px 0;
  border-top: 2px solid #00CDFF;
  border-bottom: 2px solid #00CDFF;
  font-family: 'Orbitron', sans-serif;
}

/* Logo track (moving) */
.logo-track {
  display: flex;
  width: calc(200px * 8); /* width = logo width × total number */
  animation: scrollLoop 20s linear infinite;
}

/* Individual logos */
.logo-track img {
  height: 60px;
  margin: 0 40px;
  filter: grayscale(20%) drop-shadow(0 0 6px rgba(0,205,255,0.4));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-track img:hover {
  transform: scale(1.15);
  filter: grayscale(0%) drop-shadow(0 0 12px #05edfe);
}

/* Infinite left scroll */
@keyframes scrollLoop {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}



/* Why Us Section */
.why-us {
  background: #0A0A0A; /* dark theme */
  color: #EAEAEA;
  padding: 80px 20px;
  
}

.why-us .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.why-content {
  flex: 1;
  min-width: 300px;
  padding-right: 40px;
}

.why-content h2 {
  font-size: 2.5em;
  color: #00CDFF; /* light blue */
  margin-bottom: 20px;
  font-family: 'Orbitron', sans-serif;
}

.why-content h3 {
  color:#00CDFF; /* neon green subheading */
  margin-top: 20px;
  font-family: 'Orbitron', sans-serif;
}

.why-content p {
  line-height: 1.6;
  margin-bottom: 15px;
}

.why-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.why-image img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0, 205, 255, 0.3);
  transition: transform 0.3s ease;
}

.why-image img:hover {
  transform: scale(1.05); /* subtle zoom on hover */
}
/* Our Strengths Section - Dark Cyber Theme */
/* Our Strengths Section */
.our-strengths {
  background: #0A0A0A; /* dark theme */
  color: #EAEAEA;
  padding: 80px 20px;
}

.our-strengths .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.strengths-content {
  flex: 1;
  min-width: 300px;
  padding-left: 40px; /* flipped so text has space on left */
}

.strengths-content h2 {
  font-size: 2.5em;
  color: #00CDFF; /* light blue */
  margin-bottom: 20px;
  font-family: 'Orbitron', sans-serif;
}

.strengths-content h3 {
  color: #00CDFF; 
  margin-top: 20px;
  font-family: 'Orbitron', sans-serif;
}

.strengths-content p {
  line-height: 1.6;
  margin-bottom: 15px;
}

.strengths-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.strengths-image img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0, 205, 255, 0.3);
  transition: transform 0.3s ease;
}

.strengths-image img:hover {
  transform: scale(1.05); /* subtle zoom on hover */
}
/* Services Section */

.services {
  background: #0a0a0a; /* dark background */
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.services h2 {
  font-size: 2.5em;
  margin-bottom: 30px;
  color: #00d9ff; /* cyan */
  font-family: 'Orbitron', sans-serif;
}

.service-boxes {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.service-box {
  background: #111;
  border: 1px solid #222;
  border-radius: 15px;
  padding: 30px 20px;
  flex: 1 1 300px;
  max-width: 350px;
  text-align: left;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(0,217,255,0.2);
}

.service-box h3 {
  font-size: 1.4em;
  margin-bottom: 15px;
  color: #00d9ff; /* neon green */
  font-family: 'Orbitron', sans-serif;
}

.service-box p {
  font-size: 1em;
  line-height: 1.6;
  color: #ccc;
}

.service-number {
  position: absolute;
  top: -20px;
  left: -20px;
  background: #00d9ff;
  color: #000;
  font-weight: bold;
  font-size: 1.2em;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.contact {
  background: #0a0a0a;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.contact h2 {
  font-size: 2.5em;
  margin-bottom: 10px;
  color: #00d9ff;
}

.contact p {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #ccc;
}

.contact-options {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.contact-box {
  background: #111;
  padding: 20px 30px;
  border-radius: 12px;
  min-width: 200px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(0,217,255,0.3);
}

.contact-box h3 {
  margin-bottom: 10px;
  color: #00f1f9;
}

.contact-box a, .contact-box p {
  color: #ccc;
  text-decoration: none;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 8px;
  border: none;
  outline: none;
  font-size: 1em;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form button {
  background: #00d9ff;
  color: #000;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #00d9fa;
}
footer {
  background: #000;
  color: #01d5ff;
  text-align: center;
  padding: 20px 10px;
  font-size: 0.9em;
  border-top: 1px solid #222;
}
/* Hero Section */
#hero-services {
  height: 300px; /* smaller height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

#hero-text {
  position: relative;
  z-index: 10;
  color: #ffffff; /* bright neon green */
  text-shadow: 0px 0px 10px #00c8ff; /* glow effect */
}

#hero-services h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
  text-shadow: 0px 0px 10px #00c8ff; /* glow effect */
  font-family: 'Orbitron', sans-serif;
}

#hero-services p {
  font-size: 1.2em;
  opacity: 0.9;
}


/* Services Section */
.additional-services {
  background: #0a0a0a;
  color: #fff;
  padding: 80px 20px;
}

.additional-services .container {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-row {
  display: flex;
  align-items: center;
  gap: 40px;
}

.service-row.reverse {
  flex-direction: row-reverse;
}

.service-image img {
  width: 300px;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,217,255,0.2);
}

.service-content {
  flex: 1;
}

.service-content h2 {
  color: #00d9ff;
  margin-bottom: 15px;
  font-family: 'Orbitron', sans-serif;
}

.service-content p {
  font-size: 1.1em;
  color: #ccc;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .service-row,
  .service-row.reverse {
    flex-direction: column;
    text-align: center;
  }

  .service-image img {
    width: 80%;
  }
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0A0A0A;
  color: #EAEAEA;
}

/* Hero Section */
#about-hero {
  height: 50vh; /* smaller height than homepage */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}
#about-hero .hero-text {
  position: relative;
  z-index: 10;
  color: #ffffff;
  text-shadow: 0px 0px 10px #00c8ff;
}
#about-hero h1 {
  font-size: 3em;
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  color: #ffffff;
}
#about-hero p {
  font-size: 1.3em;
  margin-top: 10px;
  opacity: 0.85;
}

/* Shared Section Styling */
.about-main, 
.about-values, 
.about-team, 
.about-mission {
  background: #111;
  padding: 60px 20px;
}
.about-main h2, 
.about-values h2, 
.about-team h2, 
.about-mission h2 {
  color: #00CDFF;
  font-family: 'Orbitron', sans-serif;
  margin-bottom: 20px;
}
.about-main p, 
.about-values p, 
.about-team p, 
.about-mission p {
  line-height: 1.6;
  margin-bottom: 15px;
}

.about-values ul {
  margin: 20px 0;
  padding-left: 20px;
}
.about-values li {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* Container */
.container {
  max-width: 1200px;
  margin: auto;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0A0A0A;
  color: #EAEAEA;
}

/* Hero Section */
#contact-hero {
  height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #000;
  position: relative;
}
#contact-hero .hero-text {
  position: relative;
  z-index: 10;
  color: #ffffff;
  text-shadow: 0px 0px 10px #00c8ff;
}
#contact-hero h1 {
  font-size: 3em;
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  color: #ffffff;
}
#contact-hero p {
  font-size: 1.2em;
  margin-top: 10px;
  opacity: 0.9;
}

/* Contact Section */
.contact-section {
  padding: 80px 20px;
  background: #111;
}
.contact-section .container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.contact-info {
  flex: 1;
  min-width: 300px;
}
.contact-info h2 {
  color: #00CDFF;
  font-family: 'Orbitron', sans-serif;
  margin-bottom: 20px;
}
.contact-info ul {
  list-style: none;
  padding: 0;
}
.contact-info li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

/* Contact Form */
.contact-form {
  flex: 1;
  min-width: 300px;
}
.contact-form h2 {
  color: #00CDFF;
  font-family: 'Orbitron', sans-serif;
  margin-bottom: 20px;
}
.contact-form form {
  display: flex;
  flex-direction: column;
}
.contact-form input, 
.contact-form textarea {
  background: #0A0A0A;
  border: 1px solid #00CDFF;
  color: #EAEAEA;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 1em;
}
.contact-form input:focus, 
.contact-form textarea:focus {
  outline: none;
  border-color: #00ffff;
  box-shadow: 0 0 10px #00CDFF;
}
.contact-form button {
  background: #00CDFF;
  border: none;
  padding: 15px;
  color: #000;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.contact-form button:hover {
  background: #00ffff;
}

.success-message {
  margin-top: 20px;
  padding: 15px;
  background: #0000004b;
  color: #00eeff;
  border: 1px solid #c3e6cb;
  border-radius: 8px;
  font-weight: bold;
  text-align: center;
  font-family: 'Poppins', sans-serif;

}
