body {
  font-family: Arial, sans-serif;
  background: #f4f4f4;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  box-sizing: border-box;
}
.navbar {
  display: flex;
  justify-content: center;
  background: #151f31;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 24px;
}
.navbar button {
  background: #e3f0ff;
  color: #1a237e;
  font-weight: 600;
  border: none;
  margin: 0;
  padding: 18px 48px;
  font-size: 1.25rem;
  border-radius: 22px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, font-weight 0.2s, box-shadow 0.2s;
  box-shadow: none;
  outline: none;
}
.navbar button.active, .navbar button:hover {
  background: linear-gradient(90deg, #1a3cff 60%, #3f51b5 100%);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 2px 12px rgba(26, 60, 255, 0.13);
}
.section {
  display: none;
  max-width: 1240px;
  margin: 0px auto;
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.section.active {
  display: block;
}
.main-heading {
  font-size: 51px;
  font-weight: 800;
  margin-bottom: 0.2rem;
  color: #111;
  text-align: center;
}
.highlight {
  color: #1a3cff;
}
.sub-heading {
  color: #555;
  font-size: 1.15rem;
  text-align: center;
  margin-top: 0;
  margin-bottom: 2rem;
  letter-spacing: 0.01em;
}
.home-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.home-image {
  width: 500px;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}
@media (max-width: 700px) {
  .navbar {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    gap: 12px;
  }
  .navbar button {
    min-width: 160px;
    padding: 14px 24px;
    font-size: 1rem;
  }
}
@media (max-width: 600px) {
  .main-heading {
    font-size: 1.5rem;
  }
  .sub-heading {
    font-size: 1rem;
  }
  .section {
    max-width: 98vw;
    margin: 0px auto;
    padding: 16px;
  }
  .home-image {
    width: 100%;
    min-width: 0;
  }
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 18px;
}
#gallery{
    background-color: #151F31;
border-radius: 0px;
  }

.feature-card {
  background: #0a223a;
  border: 2px solid #fff;
  border-radius: 8px;
  padding: 25px 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  min-height: 420px;
}
.feature-img {
  width: 100%;
  max-width: 100%;
  border-radius: 6px;
  margin-bottom: 18px;
  align-self: center;
}
.feature-title {
  color: #1ed6ff;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 10px 0;
  line-height: 1.2;
}
.feature-desc {
  color: #fff;
  font-size: 1rem;
  margin: 0;
  line-height: 1.5;
}
@media (max-width: 1000px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 700px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
  .feature-card {
    min-height: unset;
  }
}
.who-heading {
  color: #19f0ff;
  font-size: 3rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 0.5rem;
}
.who-subheading {
  color: #fff;
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 2.5rem;
  font-weight: 400;
}
.who-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  justify-content: center;
  margin: 0 auto;
  max-width: 1200px;
}
.who-card {
  background: #19243a;
  border: 2px solid #fff;
  border-radius: 8px;
  padding: 32px 24px 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.who-img {
  width: 100%;
  max-width: 340px;
  border-radius: 8px;
  margin-bottom: 28px;
  object-fit: cover;
}
.who-title {
  color: #19f0ff;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 10px 0;
  text-align: center;
}
.who-desc {
  color: #fff;
  font-size: 1.15rem;
  text-align: center;
  margin: 0;
  line-height: 1.5;
}
@media (max-width: 1000px) {
  .who-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 700px) {
  .who-card-grid {
    grid-template-columns: 1fr;
  }
  .who-heading {
    font-size: 2rem;
  }
  .who-subheading {
    font-size: 1.1rem;
  }
  .who-title {
    font-size: 1.3rem;
  }
  .who-card {
    padding: 18px 8px 18px 8px;
  }
}
#fillet.section {
  background: #151F31;
  border-radius: 0;
}
.how-heading {
  color: #1763e6;
  font-size: 2.8rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 2.2rem;
}
.how-steps {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 700px;
  margin: 0 auto;
}
.how-step {
  display: flex;
  align-items: center;
  background: #f5f8ff;
  border: 2px solid #1763e6;
  border-radius: 6px;
  padding: 18px 28px;
  gap: 22px;
}
.how-step-num {
  min-width: 60px;
  min-height: 60px;
  background: #1763e6;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 18px;
}
.how-step-content {
  display: flex;
  flex-direction: column;
}
.how-step-title {
  color: #1763e6;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.how-step-desc {
  color: #222;
  font-size: 1rem;
  font-weight: 400;
}
@media (max-width: 700px) {
  .how-heading {
    font-size: 1.5rem;
  }
  .how-steps {
    max-width: 98vw;
    padding: 0 2vw;
  }
  .how-step {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 10px;
    gap: 10px;
  }
  .how-step-num {
    margin-right: 0;
    margin-bottom: 8px;
    min-width: 44px;
    min-height: 44px;
    font-size: 1.2rem;
  }
  .how-step-title {
    font-size: 1.05rem;
  }
  .how-step-desc {
    font-size: 0.95rem;
  }
}
#services.section {
  background: #0B1222;
  border-radius: 0;
  padding: 30px 20px;
}
.choose-heading {
  text-align: center;
  margin-top: 0px;
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 3.5rem;
  letter-spacing: -0.5px;
}
.choose-bold {
  color: #fff;
}
.choose-gradient {
  background: linear-gradient(90deg, #1ed6ff 0%, #1763e6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.choose-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
.choose-card {
  background: #0F1A30;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease;
}
.choose-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
}
.choose-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}
.choose-desc {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
}
@media (max-width: 1200px) {
  .choose-card-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .choose-heading {
    font-size: 2.8rem;
  }
}
@media (max-width: 768px) {
  .choose-heading {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
  }
  .choose-desc {
    font-size: 1.1rem;
  }
  #services.section {
    padding: 40px 15px;
  }
}
@media (max-width: 480px) {
  .choose-card-grid {
    grid-template-columns: 1fr;
  }
  .choose-heading {
    font-size: 1.8rem;
  }
  .choose-card {
    padding: 20px 15px;
  }
  .choose-img {
    max-width: 100%;
    margin-bottom: 0px;
  }
}
.faq-heading {
  color: #1763e6;
  font-size: 3.2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 3rem;
}
.faq-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}
.faq-item {
  margin-bottom: 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}
.faq-question {
  background: #f5f5f5;
  padding: 20px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  transition: background-color 0.3s ease;
}
.faq-question:hover {
  background: #ebebeb;
}
.faq-plus {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1763e6;
  transition: transform 0.3s ease;
}
.faq-item.active .faq-plus {
  transform: rotate(45deg);
}
.faq-answer {
  background: white;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item.active .faq-answer {
  padding: 20px 30px;
  max-height: 1000px;
}
.faq-answer p {
  margin: 0;
  color: #666;
  line-height: 1.6;
  font-size: 1rem;
}
@media (max-width: 768px) {
  .faq-heading {
    font-size: 2.2rem;
    margin-bottom: 2rem;
  }
  .faq-container {
    padding: 0 15px;
  }
  .faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }
  .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}
.get-started-section {
  background: #0B1222;
  padding: 70px 0 60px 0;
  text-align: center;
}
.get-started-heading {
  font-size: 3.2rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.5rem;
}
.get-started-gradient {
  background: linear-gradient(90deg, #1ed6ff 0%, #1763e6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.get-started-subheading {
  color: #3fa6ff;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}
.get-started-desc {
  color: #fff;
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 2.2rem;
}
.get-started-quote {
  background: #fff;
  color: #222;
  font-size: 1.25rem;
  font-weight: 500;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 700px;
  margin: 0 auto 2.5rem auto;
  padding: 28px 32px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  gap: 18px;
}
.get-started-quote-icon {
  color: #1763e6;
  font-size: 2rem;
  font-weight: 900;
  margin-right: 10px;
}
.get-started-btn {
  background: #ff9800;
  color: #fff;
  font-size: 32px;
  font-weight: 800;
  border: none;
  border-radius: 6px;
  padding: 28px 0 18px 0;
  width: 460px;
  max-width: 95vw;
  margin: 0 auto;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(255,152,0,0.12);
  display: block;
  position: relative;
  transition: background 0.2s, transform 0.2s;
}
.get-started-btn:hover {
  background: #e67c00;
  transform: translateY(-2px) scale(1.02);
}
.get-started-btn-sub {
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
  opacity: 0.85;
  margin-top: 6px;
}
@media (max-width: 900px) {
  .get-started-heading {
    font-size: 2.1rem;
  }
  .get-started-subheading {
    font-size: 1.2rem;
  }
  .get-started-desc {
    font-size: 1rem;
  }
  .get-started-quote {
    font-size: 1rem;
    padding: 18px 10px;
  }
  .get-started-btn {
    font-size: 1.2rem;
    width: 98vw;
    padding: 18px 0 12px 0;
  }
  .get-started-btn-sub {
    font-size: 0.95rem;
  }
}

/* --- Wolf AI Introduction Extra Section --- */
.intro-extra-section {
  background: linear-gradient(90deg, #e3f0ff 0%, #f3e6ff 100%);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(26, 60, 255, 0.07);
  padding: 36px 32px 28px 32px;
  margin: 36px auto 0 auto;
  max-width: 820px;
  color: #1a237e;
  font-family: 'Segoe UI', 'Arial', sans-serif;
}
.intro-extra-title {
  font-size: 2rem;
  font-weight: 800;
  color: #1a3cff;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
  text-align: left;
}
.intro-extra-section h3.intro-extra-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0a223a;
  margin-top: 24px;
  margin-bottom: 10px;
}
.intro-extra-desc {
  font-size: 1.08rem;
  color: #222;
  margin-bottom: 16px;
  line-height: 1.7;
  text-align: left;
}
.intro-extra-list {
  margin: 0 0 16px 0;
  padding-left: 24px;
}
.intro-extra-list li {
  font-size: 1.08rem;
  color: #1a237e;
  margin-bottom: 10px;
  background: rgba(26, 60, 255, 0.07);
  border-radius: 8px;
  padding: 10px 16px;
  list-style: none;
  position: relative;
}
.intro-extra-list li:before {
  content: '➤';
  color: #1a3cff;
  font-weight: bold;
  margin-right: 10px;
  font-size: 1.1em;
}
@media (max-width: 700px) {
  .intro-extra-section {
    padding: 18px 8px 16px 8px;
    max-width: 98vw;
  }
  .intro-extra-title {
    font-size: 1.2rem;
  }
  .intro-extra-section h3.intro-extra-title {
    font-size: 1rem;
  }
  .intro-extra-desc, .intro-extra-list li {
    font-size: 0.98rem;
  }
}

@keyframes battleGlow {
  0% {
    box-shadow: 0 0 12px 2px #1a3cff66, 0 2px 8px rgba(26, 60, 255, 0.10);
  }
  50% {
    box-shadow: 0 0 28px 8px #1a3cffcc, 0 2px 8px rgba(26, 60, 255, 0.18);
  }
  100% {
    box-shadow: 0 0 12px 2px #1a3cff66, 0 2px 8px rgba(26, 60, 255, 0.10);
  }
}
.battle-tested {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(90deg, #1a3cff 0%, #3f51b5 100%);
  color: #fff;
  font-family: 'Poppins', 'Montserrat', 'Segoe UI', Arial, sans-serif;
  font-weight: 900;
  font-size: 17px;
  padding: 8px 22px 8px 16px;
  border-radius: 24px;
  box-shadow: 0 2px 8px rgba(26, 60, 255, 0.10);
  letter-spacing: 0.07em;
  margin-top: 8px;
  margin-bottom: 0;
  animation: battleGlow 1.8s infinite ease-in-out;
  text-shadow: 0 2px 8px #1a3cff55, 0 1px 0 #3f51b5;
  text-transform: uppercase;
}
.battle-icon {
  font-size: 1.25em;
  margin-right: 10px;
  filter: drop-shadow(0 1px 2px rgba(26,60,255,0.18));
}