html, body {
	margin:0;
	padding: 0;
	overflow-x: hidden;
	width: 100%;
}
body {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  background-color: #b7b7b7;
  color: #000;
} 

.header {
  background-color: #b7b7b7;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  border-bottom: 2px solid #fff;
}

.logo {
  font-size: 24px;
  color: #2769b3;
  font-weight: bold;
}

.mission-overlay {
  margin-top: 1.5rem;
  background-color: rgba(0, 9, 17, 0.5); /* transparent dark tech vibe */
  border: 1px solid #2769b3;
  padding: 1.5rem;
  border-radius: 12px;
  max-width: 800px;
  color: #ffffff;
  font-size: 1.1rem;
  line-height: 1.6;
  box-shadow: 0 0 10px rgba(0, 123, 255, 0.25);
  backdrop-filter: blur(3px); /* subtle glass effect */
  margin-left: auto;
  margin-right: auto;
}

.hero {	
  background-image: url('images/background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #164166;
  text-align: center;
  padding: 6rem 2rem 3rem;
  border-bottom: 2px solid #fff;
}

.hero-content h1 {
  font-size: 3rem;
  color: #fff;
}

.hero-content h2 {
  font-size: 2rem;
  color: #fff;
}

.hero-content h3 {
  font-size: 1rem;
  color: #fff;
}

.hero-content p {
  font-size: 1rem;
}

.cta-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background-color: #2769b3;
  color: white;
  text-decoration: none;
  border-radius: 6px;
}

.hero-services {
  padding: 60px 20px;
  text-align: center;
}

.hero-service-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
  margin-bottom: 50px;
}

.hero-card {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  width: 500px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.hero-card h1 {
  font-size: 1.5rem;
}

.hero-card h2 {
  font-size: 1rem;
}

.hero-card h3 {
  font-size: 1rem;
  color: #fff;
}

.hero-card p {
  font-size: 1rem;
}

.hero-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.footer {
  background-color: #000;
  color: #fff;
  text-align: center;
  font-weight: bold;
  padding: 20px;
}

/* Projects */

.slideshow {
  display: flex;
  justify-content: center;
  align-items: center;
}

.slideshow-container {
  text-align: center;
  padding: 60px 20px;
}

.slideshow img {
  width: 80%;
  max-width: 800px;
  display: none;
  border: 4px solid #2769b3;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}


/*About*/

.TeamMembers-card {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 2rem;
}

.profile-left {
  flex: 1;
  min-width: 250px;
  max-width: 500px;
  text-align: center;
}

.profile-left img {
  width: 250px;
  height: 250px;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.profile-right {
  flex: 2;
  min-width: 300px;
}

.TeamMembers h1 {
  font-size: 5rem;
  margin-bottom: 2rem;
  text-align: center;
  color: #164166;
}
.TeamMembers h2 {
  font-size: 2.5rem;
  margin-bottom: -1rem;
  color: #2769b3;
}
.TeamMembers h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #000;
}
.TeamMembers h4 {
  font-size: 1.25rem;
  display: inline-block;
  border-bottom: 3px solid #000;
  padding-bottom: 1rem;
  margin-bottom: -1rem;
  color: #000;
}
.TeamMembers h5 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #000;
}

.TeamMembers p {
  text-align: justify;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #000;
}

.TeamMembers-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.TeamMembers-card {
  background: #fff;
  padding: 2rem 4rem 2rem 4rem;
  border-radius: 10px;
  width: auto;
  height: auto;
}

.TeamMembers-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

@media (max-width: 768px) {
  .TeamMembers-card {
    flex-direction: column;
    align-items: center;
  }

  .profile-left, .profile-right {
    max-width: 100%;
    text-align: center;
  }

  .profile-right {
    padding-top: 1rem;
  }
}

/* Contact */

@media (max-width: 768px) {
  .hero-contact-wrapper {
     width: 100%;
     padding: 1rem;
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 2rem;
  }

  .hero-contact-wrapper iframe {
     width: 100%;
     max-width: 100%;
     height: 1250px; /* adjust for full form height */
     border: none;
  }
}

.hero-contact-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 1rem;
}

.hero-contact-wrapper iframe {
  width: 100%;
  max-width: 100%;
  height: 1500px; /* adjust as needed */
  border: none;
}

.hero-contact-info-box {
  background-color: rgba(0, 9, 17, 1);
  padding: 2rem;
  border-radius: 10px;
  width: 100%;
  max-width: 800px;
  line-height: 1;
  text-align: center;
  backdrop-filter: blur(1px);
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.hero-contact-info-box a, h2 {
  color: #fff;
  font-size: 1.5rem;
  line-height: 2;
  text-decoration: none;
}

.hero-contact-info-box a:hover {
  text-decoration: underline;
}

.hero-contact-info-box h1 {
  font-size: 3rem;
  color: #2769B3;
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
  .hero-contact-info-box {
    padding: 1.5rem;
    font-size: 0.95rem;
	}
  .hero-contact-info-box a, h2 {
    color: #fff;
    font-size: 0.75rem;
    line-height: 2;
    text-decoration: none;
 }
}

/* Services */

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 3rem;
}

.pricing-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 2rem;
  width: 300px;
}

.pricing-card h2 {
  color: #164166;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.price {
  font-size: 1.1rem;
  margin: 1rem 0;
  color: #2769b3;
}

button2 {
 padding: 0.5rem 1rem;
 font-size: 1rem;
 margin-top: 1rem;
 cursor: pointer;
 background-color: #2769b3;
 color: #fff;
 border: none;
 border-radius: 5px;
}

button2:hover {
 background-color: #164166;
}

.plan-details {
  text-align: left;
  margin-top: 1rem;
  display: none;
  font-size: 0.95rem;
}

.plan-details ul {
  padding-left: 20px;
  text-align: left;
}