	body,
html {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  color: #003366;
  background: #ffffff;
  overflow-x: hidden;
}

h2 {
  text-align: center;
  font-size: 2.5em;
  margin: 30px 0;
  color: #0056b3;
  font-weight: 700;
}

/* Hero section styles remain unchanged */

.hero {
  height: 100vh;
  background: linear-gradient(135deg, #ffffff, #e6f3ff);
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(0, 86, 179, 0.1), transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(0, 86, 179, 0.1), transparent 30%);
  pointer-events: none;
}

.hero-content {
  text-align: center;
  z-index: 10;
  max-width: 800px;
  padding: 0 20px;
}

h1 {
  font-size: 3.5em;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #0056b3, #003366);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.subtitle {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #003366;
}

.cta-button {
  display: inline-block;
  background: #0056b3;
  color: white;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  background: #003366;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.geometric-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.shape {
  position: absolute;
  opacity: 0.1;
  animation: float 15s infinite;
}

.shape1 {
  top: 20%;
  left: 10%;
  width: 100px;
  height: 100px;
  background: #0056b3;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.shape2 {
  top: 60%;
  right: 20%;
  width: 150px;
  height: 150px;
  background: #003366;
  clip-path: circle(50% at 50% 50%);
}

.shape3 {
  bottom: 10%;
  left: 30%;
  width: 120px;
  height: 120px;
  background: #0056b3;
  clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(10deg);
  }
}

.tech-circle {
  position: absolute;
  width: 280px;
  height: 280px;
  border: 2px solid rgba(0, 86, 179, 0.1);
  border-radius: 50%;
  animation: rotate 20s linear infinite;
}

.tech-circle::before,
.tech-circle::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: #0056b3;
  border-radius: 50%;
}

.tech-circle::before {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.tech-circle::after {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

h1 {
  font-size: 3.5em;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #0056b3, #003366);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.subtitle {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #003366;
}

.cta-button {
  display: inline-block;
  background: #0056b3;
  color: white;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  background: #003366;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* New styles for the futuristic layout below the hero */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
  background: #fff;
  padding: 0;
}

.service-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.2) 100%);
  transform: rotate(45deg);
  z-index: 0;
  transition: all 0.3s ease;
}

.service-card:hover::before {
  top: -75%;
  left: -75%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 86, 179, 0.2);
}

.service-icon {
  font-size: 3em;
  margin-bottom: 20px;
  color: #0056b3;
  position: relative;
  z-index: 1;
}

.service-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #003366;
  position: relative;
  z-index: 1;
}

.testimonial {
  background: linear-gradient(135deg, #e6f3ff, #ffffff);
  padding: 50px 0;
  margin-top: 50px;
  text-align: center;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
}

.testimonial::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.2) 100%);
  transform: rotate(45deg);
  z-index: 0;
}

.testimonial-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.testimonial-text {
  font-style: italic;
  font-size: 1.2em;
  line-height: 1.6;
  color: #003366;
}

.testimonial-author {
  margin-top: 20px;
  font-weight: bold;
  color: #0056b3;
}

.faq {
  margin: 50px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.faq-item {
  background: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.faq-question {
  padding: 20px;
  background: #0056b3;
  color: #ffffff;
  cursor: pointer;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: "+";
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 20px;
  max-height: 1000px;
}
#m_s1_999 .title_h1 {
  display: none;
}
@media (max-width: 768px) {
  .services,
  .faq {
    grid-template-columns: 1fr;
  }
}

