
/* === BASE RESET === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #0a0f2c;
  color: #ffffff;
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

a {
  color: white;
  text-decoration: none;
}

a:hover {
  color: #00f0ff;
}

/* === NAVBAR === */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10%;
  background: #0a0f2c;
  position: fixed;
  width: 100%;
  z-index: 1001;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #00f0ff;
  font-weight: bold;
  font-size: 1.8rem;
}

.icon-shield {
  width: 25px;
  filter: drop-shadow(0 0 5px #00f0ff);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  padding: 10px 0;
  display: block;
}

.nav-links li a:hover {
  color: #0ff;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: #0ff;
  margin: 4px 0;
  transition: all 0.3s ease;
}
.hamburger{
  display: none;
}

/* === HERO SECTION === */
.hero {
  height: 100vh;
  background: url('../Images/logo-bg.png.jpeg') no-repeat center center/cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 44, 0.7);
  z-index: 0;
}

.hero-container {
  position: relative;
  z-index: 1;
  display: flex;
  max-width: 1200px;
  gap: 40px;
  padding: 60px;
  flex-wrap: wrap;
}

.hero-left, .hero-right {
  flex: 1;
}

.hero-image {
  width: 250px;
  filter: drop-shadow(0 0 12px #00f0ff);
  margin: 0 auto;
}

.title-glow {
  font-size: 3rem;
  color: #00f0ff;
  text-shadow: 0 0 15px #00f0ff;
}

.subtitle {
  font-size: 1.2rem;
  margin: 15px 0;
  text-shadow: 0 0 6px #000;
}

/* === BUTTON STYLES === */
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 1rem;
}

.cta-buttons a {
  padding: 0.8rem 1.5rem;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  white-space: nowrap;
  text-align: center;
}

.cta {
  background: #00f0ff;
  color: #0a0f2c;
  transition: all 0.3s ease-in-out;
}

.btn-primary {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: #00f0ff;
  color: #0a0f2c;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  box-shadow: 0 0 10px #00f0ff, 0 0 20px #00f0ff;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
}

.btn-primary:hover {
  background: #0a0f2c;
  color: #00f0ff;
  border: 1px solid #00f0ff;
}

.btn-secondary {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: transparent;
  color: #00f0ff;
  font-weight: bold;
  border: 2px solid #00f0ff;
  border-radius: 6px;
  font-size: 1rem;
  box-shadow: 0 0 8px #00f0ff;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
}

.btn-secondary:hover {
  background: #00f0ff;
  color: #0a0f2c;
}

.btn-secondary {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: transparent;
  color: #00f0ff;
  font-weight: bold;
  border: 2px solid #00f0ff;
  border-radius: 6px;
  font-size: 1rem;
  box-shadow: 0 0 8px #00f0ff;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
}

.btn-secondary:hover {
  background: #00f0ff;
  color: #0a0f2c;
}

.btn-glow {
  box-shadow: 0 0 10px #00f0ff, 0 0 20px #00f0ff, 0 0 30px #00f0ff;
  animation: pulseButton 2.5s infinite;
}

.btn-outline {
  border: 2px solid #00f0ff;
  color: #00f0ff;
  background: transparent;
  box-shadow: 0 0 8px #00f0ff;
}

.btn-dashed {
  background: #1e1e1e;
  color: #aaa;
  border: 1px dashed #00f0ff;
  cursor: not-allowed;
}

/* === ANIMATIONS === */
@keyframes pulseButton {
  0%, 100% {
    box-shadow: 0 0 10px #00f0ff, 0 0 20px #00f0ff, 0 0 30px #00f0ff;
  }
  50% {
    box-shadow: 0 0 20px #00f0ff, 0 0 40px #00f0ff, 0 0 60px #00f0ff;
  }
}

/* === MODAL === */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  align-items: center;
  justify-content: center;
  overflow: auto;
}

.modal-content {
  background-color: #12193f;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  text-align: center;
  box-shadow: 0 0 20px #00f0ff;
  animation: fadeZoomIn 0.3s ease;
}

.modal-content input,
.modal-content select {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: none;
  border-radius: 5px;
}

.modal-content button {
  background: #00f0ff;
  color: #0a0f2c;
  padding: 12px;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  width: 100%;
  cursor: pointer;
}

@keyframes fadeZoomIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* === FOOTER === */
footer {
  background: #0a0f2c;
  padding: 40px 10%;
  text-align: center;
  color: #aaa;
  font-size: 0.9rem;
  border-top: 1px solid #222;
}

/* === QUOTE HIGHLIGHT === */
.quote-highlight {
  text-align: center;
  padding: 60px 10%;
}

.quote-highlight blockquote {
  font-size: 1.4rem;
  color: #00f0ff;
  font-style: italic;
  text-shadow: 0 0 10px #00f0ff;
}

/* === SECTION HEADINGS === */
section {
  padding: 80px 10%;
}

h2, h3 {
  font-size: 2rem;
  color: #00f0ff;
  margin-bottom: 20px;
  text-shadow: 0 0 6px #00f0ff;
}

ul {
  list-style: disc;
  padding-left: 20px;
}

/* === TESTIMONIALS === */
.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.testimonial-card {
  flex: 1;
  min-width: 250px;
  background: #12193f;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}

.testimonial-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 10px;
  object-fit: cover;
  border: 2px solid #00f0ff;
}

.testimonial-text {
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.testimonial-name {
  font-weight: bold;
  color: #00f0ff;
}

/* === SOLUTIONS CARDS === */
.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background: #12193f;
  padding: 20px;
  border-radius: 10px;
  flex: 1;
  min-width: 250px;
  text-align: center;
  font-weight: bold;
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}

/* === ADVANTAGES === */
.advantages ul {
  list-style: square;
  padding-left: 20px;
}

/* === PLANS TABLE === */
.plan-table {
  border: 1px solid #00f0ff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
}

.plan-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  padding: 15px 20px;
  border-bottom: 1px solid #00f0ff;
  align-items: center;
}

.plan-header {
  background-color: #12193f;
  font-weight: bold;
  color: #00f0ff;
  text-shadow: 0 0 8px #00f0ff;
}

.plan-row:not(.plan-header):hover {
  background-color: rgba(0, 240, 255, 0.1);
}

.btn-subscribe {
  padding: 8px 14px;
  background: #00f0ff;
  color: #0a0f2c;
  border-radius: 5px;
  font-weight: bold;
  border: none;
  box-shadow: 0 0 10px #00f0ff;
  cursor: pointer;
}

/* === CONTACT SECTION === */
.contact-section {
  padding: 80px 10%;
  background-color: #12193f;
  text-align: center;
}

.contact-subtext {
  color: #ccc;
  margin-bottom: 30px;
}

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

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 6px;
  border: none;
  background: #1c254d;
  color: #fff;
  font-family: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #aaa;
}

.contact-form button {
  background-color: #00f0ff;
  color: #0a0f2c;
  padding: 12px;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color: #00c3cc;
}

/* === FOOTER === */
footer {
  background: #0a0f2c;
  padding: 40px 10%;
  text-align: center;
  color: #aaa;
  font-size: 0.9rem;
  border-top: 1px solid #222;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #00f0ff;
}

.footer-values {
  margin-bottom: 10px;
  font-weight: bold;
}

.footer-contact {
  font-size: 0.85rem;
}

#customChatButton {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background-color: #00f0ff;
  border-radius: 50%;
  box-shadow: 0 0 15px #00f0ff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9999;
}

#customChatButton img {
  width: 28px;
  height: 28px;
}
/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
  .navbar {
    padding: 15px 5%;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #0b1120;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    text-align: center;
    padding: 20px;
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
  }

  .hamburger span {
      height: 3px;
      width: 25px;
      background: #00f0ff;
      border-radius: 5px;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .hero-image {
    width: 160px;
    margin-top: 20px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons a {
    width: 90%;
  }

  footer {
    padding: 20px 5%;
  }
}
.custom-toast {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: #0f172a;
  color: #00f6ff;
  border: 1px solid #00f6ff;
  border-radius: 8px;
  padding: 12px 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  box-shadow: 0 0 10px #00f6ff;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.custom-toast.show {
  opacity: 1;
}
/* Hide video & show image on mobile */
@media (max-width: 768px) {
  #gx-video { display: none; }
  #gx-fallback { display: block; }
  #gx-play-btn { font-size:28px; color:#0a0f1f; font-weight:bold; }
}

