/* Global Styles */
body,
html {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  overflow-x: hidden;
  background: #ffffff;
  color: #000;
}


/* Glass Morphism Classes */




.glass-hero {
  background: linear-gradient(135deg, rgba(248, 249, 250, 0.8) 0%, rgba(245, 245, 220, 0.6) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  padding: 40px 20px;
  margin: 20px 0;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
}

.glass-hero:hover {
  background: linear-gradient(135deg, rgba(248, 249, 250, 0.9) 0%, rgba(245, 245, 220, 0.7) 100%);
  transform: translateY(-3px);
}

/* Neon Accents */
.neon-accent {
  color: #00f7ff;
  text-shadow: 0 0 5px #00f7ff, 0 0 10px #00f7ff;
}

.neon-button {
  background: rgba(0, 247, 255, 0.1);
  border: 1px solid rgba(0, 247, 255, 0.3);
  color: #00f7ff;
  box-shadow: 0 0 10px rgba(0, 247, 255, 0.3);
}

.neon-button:hover {
  background: rgba(0, 247, 255, 0.2);
  box-shadow: 0 0 15px rgba(0, 247, 255, 0.5);
}

.neon-input {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(0, 247, 255, 0.2);
  color: #212529;
}

.neon-input:focus {
  border-color: #00f7ff;
  box-shadow: 0 0 10px rgba(0, 247, 255, 0.3);
}

.neon-badge {
  background: rgba(0, 247, 255, 0.15);
  border: 1px solid rgba(0, 247, 255, 0.3);
  color: #00f7ff;
  box-shadow: 0 0 5px rgba(0, 247, 255, 0.2);
}


/* Neon Accents */
.neon-accent {
  color: #00f7ff;
  text-shadow: 0 0 5px #00f7ff, 0 0 10px #00f7ff;
}

.neon-button {
  background: rgba(0, 247, 255, 0.1);
  border: 1px solid rgba(0, 247, 255, 0.3);
  color: #00f7ff;
  box-shadow: 0 0 10px rgba(0, 247, 255, 0.3);
}

.neon-button:hover {
  background: rgba(0, 247, 255, 0.2);
  box-shadow: 0 0 15px rgba(0, 247, 255, 0.5);
}

.neon-input {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(0, 247, 255, 0.2);
  color: #212529;
}

.neon-input:focus {
  border-color: #00f7ff;
  box-shadow: 0 0 10px rgba(0, 247, 255, 0.3);
}

.neon-badge {
  background: rgba(0, 247, 255, 0.15);
  border: 1px solid rgba(0, 247, 255, 0.3);
  color: #00f7ff;
  box-shadow: 0 0 5px rgba(0, 247, 255, 0.2);
}



/* Dashboard Section Background */
.dashboard-section-bg {
  background: rgba(248, 249, 250, 0.5);
  padding: 2rem 0;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(31, 38, 135, 0.1);
}

a,
button {
  transition: color 0.3s, background-color 0.3s, border-color 0.3s;
  text-decoration: none;
}

/* Navbar */
.navbar {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 4px 20px rgba(31, 38, 135, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 12px;
  margin: 10px 0;
}

.navbar .nav-link {
  color: #0a1a66 !important;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
  color: #0a1a66 !important;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.navbar .nav-link.fw-semibold {
  font-weight: 600;
}

.navbar-brand img {
  object-fit: contain;
  height: 40px;
}

.navbar .navbar-nav .nav-link {
  margin: 0 8px;
}

/* Buttons refinement */
.btn-outline-success {
  border-color: #0a1a66;
  color: #0a1a66;
}
.btn-outline-success:hover,
.btn-outline-success:focus {
  background-color: #0a1a66;
  color: #fff;
  border-color: #0a1a66;
}

/* Neon Button Styles */
.btn-neon {
  background: rgba(0, 247, 255, 0.1);
  border: 1px solid rgba(0, 247, 255, 0.3);
  color: #00f7ff;
  box-shadow: 0 0 10px rgba(0, 247, 255, 0.3);
  transition: all 0.3s ease;
  border-radius: 8px;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(0, 247, 255, 0.3);
}

.btn-neon:hover {
  background: rgba(0, 247, 255, 0.2);
  box-shadow: 0 0 15px rgba(0, 247, 255, 0.5);
  transform: translateY(-2px);
  border: 1px solid rgba(0, 247, 255, 0.5);
  box-shadow: 0 0 15px rgba(0, 247, 255, 0.5);
}

/* Hero Section */
.hero {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 94vh !important;
  height: 94vh;
}

.hero-section {
  background: linear-gradient(135deg, #0a1a66 0%, #000c3b 100%);
  color: #ffffff;
  padding-top: 2rem;
  padding-bottom: 2rem;
  width: 100%;
  flex-grow: 1;
  display: flex;
  align-items: center;
}

.hero-text-container {
  max-width: 600px;
}

.lottie-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #444;
  transition: box-shadow 0.3s ease;
  padding: 5px !important;
}
.lottie-placeholder:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

/* Partner Banner */
.partner-banner {
  background: #ffff !important;
}
.partner-banner img:not(.iso-badge) {
  max-height: 70px;
  opacity: 0.8;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.partner-banner img:hover {
  opacity: 1;
  transform: scale(1.05);
}

.iso-badge {
  max-height: 100px;
  width: auto;
}

.partner-iframe {
  border: none;
  height: 100px;
  width: 100px;
  transition: transform 0.3s ease;
}

.partner-iframe:hover {
  transform: scale(1.05);
}

/* Opportunities Section */
.opportunities-section {
  background: linear-gradient(135deg, #071030 0%, #0a1a66 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding-bottom: 80px;
}
.opportunities-section h2 {
  color: #ffffff;
  margin-bottom: 2rem;
}
.opportunities-section .metrics-row {
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 100px;
}

/* Metric Styling */
.metric {
  position: relative; /* Needed for pseudo-elements */
  padding: 1rem;
  margin-top: 20px;
}
.metric h3 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.3rem;
  color: #fff;
}
.metric span {
  font-size: 1rem;
  color: #ddd;
  display: block;
}

/* Dividers Between Metrics */
/* Desktop (Large Screens): Vertical Divider */
@media (min-width: 992px) {
  .metrics-row {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .metric:not(:first-child)::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateX(-150%) translateY(-50%);
    width: 2px;
    height: 60%;
    background: linear-gradient(to bottom, #ffffff, #aaaaaa00);
  }
}

/* Mobile (Smaller Screens): Horizontal Divider */
@media (max-width: 991px) {
  .metrics-row .metric {
    width: 100%;
  }

  .metric:not(:first-child)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-100%);
    width: 60%;
    height: 2px;
    background: linear-gradient(to right, #ffffff, #aaaaaa);
  }
}

/* Capabilities Section */
.capabilities-section {
  background: linear-gradient(135deg, #050a22 0%, #0b153d 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding-bottom: 80px;
}
.capabilities-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  background-repeat: repeat;
  background-size: contain;
  opacity: 0.05;
}
.capabilities-section h2,
.capabilities-section p {
  color: #ffffff;
}
.capabilities-section .container {
  max-width: 1200px;
}

/* Feature Tabs */
.feature-tabs .nav-link {
  color: #ccc;
  font-weight: 500;
  font-size: 1.1rem;
  padding: 0;
  border: none;
  transition: color 0.3s;
}
.feature-tabs .nav-link:hover,
.feature-tabs .nav-link:focus {
  color: #fff;
  text-decoration: none;
}
.feature-tabs .nav-link.active {
  color: #fff;
  font-weight: 600;
  position: relative;
}
.feature-tabs .nav-link.active::before {
  content: "";
  position: absolute;
  left: -1rem;
  top: 0.5rem;
  height: 1rem;
  width: 3px;
  background: #0a1a66;
}
.feature-display .feature-image {
  max-height: 300px;
  object-fit: contain;
}
.feature-description p {
  color: #ddd;
}
.feature-description {
  padding-bottom: 100px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .opportunities-section h2,
  .capabilities-section h2 {
    font-size: 2rem;
  }
  .feature-tabs .nav-link {
    font-size: 1rem;
  }
  .opportunities-section .metrics-row .metric h3 {
    font-size: 1.8rem;
  }
  .metric h3 {
    font-size: 1.8rem;
  }
}

@media (max-height: 850px) {
  .hero {
    height: 93vh !important;
  }
}

@media (max-height: 750px) {
  .hero {
    height: 92vh !important;
  }
}

/* .wave-container {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 60px;
  overflow: hidden;
  z-index: 10;
  border: none;
  border-width: 0;
  outline: none;
  -webkit-border-width: 0;
  -webkit-border-style: none;
}

.editorial {
  display: block;
  width: 100%;
  height: 60px;
  max-height: 60px;
  margin: 0;
  bottom: 0;
  position: relative;
  left: 0px;
}

/* Animation keyframes for waves */
/* @keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}
/* @keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}
/* @keyframes move-forever3 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}
@keyframes move-forever4 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

.parallax1 > use {
  animation: move-forever1 10s linear infinite;
}
.parallax2 > use {
  animation: move-forever2 8s linear infinite;
}
.parallax3 > use {
  animation: move-forever3 6s linear infinite;
}
.parallax4 > use {
  animation: move-forever4 4s linear infinite;
}

/* Ensure text colors are legible */
.opportunities-section {
  color: #fff;
}
.opportunities-section h2 {
  color: #fff;
}
.metric h3 {
  color: #fff;
}
.metric span {
  color: #ddd;
}

.bg-f7 {
  background-color: #f7f8fc;
}


.hero-text-container {
  max-width: 600px;
}

.lottie-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #444;
  transition: box-shadow 0.3s ease;
  padding: 5px !important;
}
.lottie-placeholder:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.feature-tabs {
  padding-bottom: 25px;
}
.feature-tabs .nav-link {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
  border: none;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  margin: 0 5px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 2px 10px rgba(31, 38, 135, 0.1);
}

.feature-tabs .nav-link:hover,
.feature-tabs .nav-link:focus {
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(31, 38, 135, 0.15);
}

.feature-tabs .nav-link.active {
  color: #fff;
  font-weight: 600;
  position: relative;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(0, 247, 255, 0.3);
  box-shadow: 0 4px 15px rgba(0, 247, 255, 0.2);
}

.feature-tabs .nav-link.active::before {
  content: "";
  position: absolute;
  left: -1rem;
  top: 0.5rem;
  height: 1rem;
  width: 3px;
  background: #00f7ff;
}

.feature-description p {
  color: #ddd;
}

@media (max-width: 992px) {
  .feature-tabs .nav-link {
    font-size: 1rem;
  }
}

/* Adjust metric styling as needed */
.metric h3 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.3rem;
}
.metric span {
  font-size: 1rem;
  display: block;
}

.footer-section {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #000;
  padding: 3rem 1rem;
  position: relative;
  border-radius: 16px;
  margin-top: 40px;
}

.footer-section .footer-logo {
  margin-bottom: 1rem;
  max-height: 50px;
}

.footer-section .tagline {
  font-style: italic;
  font-size: 0.8rem;
  color: #333;
  margin-bottom: 2rem;
}

.footer-section h5 {
  font-weight: 600;
  color: #0a1a66;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-section ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-section a {
  color: #333;
  text-decoration: none;
  display: inline-block;
  transition: color 0.3s, transform 0.3s;
  padding: 0.2rem 0;
}

.footer-section a:hover {
  color: #0a1a66;
  transform: translateX(5px);
  text-decoration: none;
}

.footer-section .contact-info p {
  margin-bottom: 0.5rem;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.4;
}
.footer-section .contact-info p:first-child {
  font-weight: 600;
  color: #000;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .footer-section h5 {
    text-align: center;
  }
  .footer-section .contact-info,
  .footer-section ul,
  .footer-section .tagline {
    text-align: center;
  }
}

/* Adjust heading sizes and spacing on small screens */
@media (max-width: 576px) {
  .hero-section h1.display-4 {
    font-size: 2rem;
    line-height: 1.2;
  }
  .hero-section p.fs-5 {
    font-size: 1rem;
  }
  .hero-section .btn.btn-lg {
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
  }

  .opportunities-section h2.display-5 {
    font-size: 1.75rem;
  }

  .capabilities-section h2.display-5 {
    font-size: 1.75rem;
  }

  .feature-tabs .nav-link {
    font-size: 0.9rem;
  }
  .metric h3 {
    font-size: 1.5rem;
  }
}

/* Ensure the video and placeholders scale down gracefully on smaller screens */
@media (max-width: 576px) {
  .lottie-placeholder {
    padding: 2px !important;
  }
  .lottie-placeholder video {
    width: 100%;
    height: auto;
  }
}

/* Footer mobile adjustments */
@media (max-width: 576px) {
  .footer-section h5 {
    font-size: 1rem;
  }
  .footer-section .tagline {
    font-size: 0.7rem;
  }
  .footer-section a {
    font-size: 0.9rem;
  }
  .footer-section p {
    font-size: 0.9rem;
  }
}

.features-wrapper {
  position: relative;
  padding-left: 2.5rem; /* Space for the vertical pipe */
}

.vertical-pipe {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, #3461c1 0%, #0a1a66 100%);
  border-radius: 2px;
  margin-top: 5px;
}

.feature-tabs {
  margin: 0;
  margin-bottom: 50px;
}

.feature-tabs .nav-link {
  color: #ccc;
  font-weight: 500;
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
  border: none;
  transition: color 0.3s, background-color 0.3s, transform 0.3s;
  position: relative;
  display: inline-block;
  margin-left: 0; /* Align with pipe visually */
  border-radius: 4px;
}

.feature-tabs .nav-link::before {
  content: "•";
  color: #4579e2;
  margin-right: 0.5rem;
  font-size: 1.2rem;
  display: inline-block;
  transform: translateY(-1px);
}

.feature-tabs .nav-link:hover,
.feature-tabs .nav-link:focus {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
  text-decoration: none;
  transform: translateX(5px);
}

.feature-tabs .nav-link.active {
  color: #fff;
  font-weight: 600;
}

.feature-tabs .nav-link.active::before {
  content: "►";
  color: #fff;
  font-size: 1.1rem;
}

@media (max-width: 576px) {
  .feature-tabs .nav-link {
    font-size: 1rem;
    padding: 0.4rem 0.8rem;
  }

  .feature-tabs .nav-link::before {
    font-size: 1rem;
  }
}

/* Product Feature Cards */
.feature-card {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  transition: all 0.3s ease;
  color: #000;
  box-shadow: 0 4px 20px rgba(31, 38, 135, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(31, 38, 135, 0.15);
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(0, 247, 255, 0.3);
}
.feature-card h4 {
  color: #000;
}
.feature-card p {
  color: #555;
}

/* Adjust vertical pipe and feature-tabs styling (if needed on product page) */
.features-wrapper {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 2rem;
}
.vertical-pipe {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, #3461c1 0%, #0a1a66 100%);
  border-radius: 2px;
  margin-top: 5px;
}

.feature-tabs .nav-link {
  color: #ccc;
  font-weight: 500;
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
  border: none;
  transition: color 0.3s, background-color 0.3s, transform 0.3s;
  position: relative;
  display: inline-block;
  margin-left: 0;
  border-radius: 4px;
}
.feature-tabs .nav-link::before {
  content: "•";
  color: #4579e2;
  margin-right: 0.5rem;
  font-size: 1.2rem;
  display: inline-block;
  transform: translateY(-1px);
}
.feature-tabs .nav-link:hover,
.feature-tabs .nav-link:focus {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
  text-decoration: none;
  transform: translateX(5px);
}
.feature-tabs .nav-link.active {
  color: #fff;
  font-weight: 600;
  background-color: rgba(255, 255, 255, 0.15);
}
.feature-tabs .nav-link.active::before {
  content: "►";
  color: #fff;
  font-size: 1.1rem;
}

.product-hero {
  margin-bottom: 140px;
}

.seth-hero {
  margin-bottom: 140px;
}

@media (max-width: 912px) {
  .product-hero {
    margin-bottom: 250px;
  }
  .seth-hero {
    margin-bottom: 250px;
  }
}

@media (max-width: 576px) {
  .feature-card p {
    font-size: 0.9rem;
  }
  .feature-tabs .nav-link {
    font-size: 1rem;
    padding: 0.4rem 0.8rem;
  }
  .feature-tabs .nav-link::before {
    font-size: 1rem;
  }
}

@media (max-width: 450px) {
  .about-container {
    padding: 40px !important;
  }
}

@media (max-width: 360px) {
  .hero-section h1 {
    font-size: 1.8rem !important;
  }
  .hero-section p {
    font-size: 1rem !important;
  }
}

.pad-bottom-60 {
  padding-bottom: 60px !important;
}

.hero-restyle {
  position: relative !important;
  background: linear-gradient(135deg, #0a1a66 0%, #000c3b 100%) !important;
  color: #ffffff;
  padding: 4rem 0 !important;
  border-radius: 20px;
  margin: 20px 0;
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.2);
}

.mwidth-700 {
  max-width: 700px !important;
}

.f-black {
  color: #000 !important;
}

.ms-restyle {
  color: #333 !important;
  max-width: 800px !important;
  margin: 0 auto !important;
}

.f-blue {
  color: #0a1a66 !important;
}

.ls-team {
  position: relative !important;
  background: #0a1a66 !important;
  padding-bottom: 80px !important;
}

.pad-120 {
  padding: 120px !important;
}

.pad-80 {
  padding: 80px !important;
}

.pad-90 {
  padding: 90px !important;
}

.pad-60 {
  padding: 60px !important;
}

.cta-restyle {
  background: #fff !important;
  position: relative !important;
  padding-bottom: 80px !important;
}

/* .wave-fix {
  position: absolute !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 60px !important;
  overflow: hidden !important;
  z-index: 10 !important;
} */

.footer-blue {
  background: #0a1a66 !important;
  color: #fff !important;
  position: relative !important;
  padding: 3rem 1rem !important;
}

.logo-fix {
  max-height: 25px !important;
  margin-bottom: 1rem !important;
}

.tag-fix {
  font-style: italic !important;
  font-size: 0.9rem !important;
  color: #ddd !important;
}

.f-white {
  color: #fff !important;
}

.f-offwhite {
  color: #ddd !important;
}

.f-grey {
  color: #333 !important;
}

.f-lgrey {
  color: #ccc !important;
}

.blue-bold {
  font-weight: bold !important;
  color: #0a1a66 !important;
}

.blue-btn {
  background-color: #0a1a66 !important;
  border: none !important;
  border-radius: 50px !important;
  padding: 0.75rem 2rem !important;
}

.m-top-20 {
  margin-top: 20px !important;
}

.p-fix-700 {
  max-width: 700px !important;
  margin: 0 auto !important;
}

.dash-fix {
  position: relative !important;
  background: rgba(255, 255, 255, 0.5) !important;
  padding-bottom: 90px !important;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(31, 38, 135, 0.1);
}

.vid-fix {
  max-width: 100% !important;
  border-radius: 8px !important;
}

.opp-fix {
  position: relative !important;
  background: #ffffff !important;
  padding-top: 4rem !important;
  padding-bottom: 80px !important;
}

.partner-fix {
  width: 100% !important;
}

.m-bot-30 {
  margin-bottom: 30px !important;
}

.mar-0 {
  margin: 0 auto !important;
}

.p-top-bot-100 {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

.f-555 {
  color: #555 !important;
}

.bot-auto {
  bottom: auto !important;
}

.f-888 {
  color: #888 !important;
}

/* .wave-relative {
  position: relative !important;
} */

.index-vid {
  max-width: 100% !important;
  border-radius: 8px !important;
}

.about-team-card {
  background: #f8f9fa;
  color: #000;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  cursor: pointer; /* Indicate clickable card */
}
.about-team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.about-team-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}
.linkedin-icon {
  display: inline-block;
  margin-top: 1rem;
  font-size: 1.2rem;
  color: #0077b5; /* LinkedIn brand color */
  transition: transform 0.3s, color 0.3s;
}
.linkedin-icon:hover {
  transform: scale(1.1);
  color: #005b85;
}

.about-modal-header,
.about-modal-footer {
  border: none;
}
.about-modal-title {
  font-weight: bold;
  font-size: 1.5rem;
  color: #0a1a66;
}
.about-modal-body p {
  color: #555;
  font-size: 1rem;
}

.dashboard-card {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  color: #000;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(31, 38, 135, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.dashboard-card-admin {
  background: rgba(252, 228, 236, 0.25);
}

/* Disable wave graphics across the app */
.wave-container,
.wave-container-transition,
.wave-fix,
.wave-bottom,
.wave-relative,
.wave-svg,
.editorial,
.parallax1,
.parallax2,
.parallax3,
.parallax4 {
  display: none !important;
}
.dashboard-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(31, 38, 135, 0.15);
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(0, 247, 255, 0.3);
}
.dashboard-card i {
  font-size: 2.5rem;
  color: #0a1a66;
  margin-bottom: 1rem;
}
.dashboard-card h5 {
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.dashboard-card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1rem;
}
.dashboard-card a.btn {
  font-weight: 600;
}

.pad-20 {
  padding: 20px !important;
}

.ai-chat-box {
  position: relative;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  max-height: 300px;
  overflow: auto;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(31, 38, 135, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.ai-chat-box:hover {
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(0, 247, 255, 0.3);
}
.chat-message {
  display: flex;
  margin-bottom: 15px;
  align-items: flex-end;
}
.chat-bubble {
  max-width: 70%;
  padding: 10px 15px;
  line-height: 1.4;
  border-radius: 20px;
  display: inline-flex;
  align-items: flex-start;
}
/* SETH message (left) */
.seth-message {
  justify-content: flex-start;
}
.seth-message .chat-bubble {
  background: #e5e5ea;
  color: #000;
  border-radius: 20px 20px 20px 2px;
  gap: 10px;
}
.seth-message .chat-bubble img {
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
}

/* User message (right) */
.user-message {
  justify-content: flex-end;
}
.user-message .chat-bubble {
  background: #0a1a66;
  color: #fff;
  border-radius: 20px 20px 2px 20px;
}

/* .wave-svg {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
} */

.log-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.log-description {
  font-size: 0.9rem;
  color: #444;
}

.min-height-150 {
  min-height: 150px;
}

/* SETH AI Assistant Section Styling */
.ai-assistant-section {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.feature-card {
  background: #fff;
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(10, 26, 102, 0.1);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  color: #0a1a66;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  color: #0a1a66;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.feature-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.feature-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: #555;
}

.feature-list li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: #0a1a66;
}

.benefit-callout {
  background: rgba(10, 26, 102, 0.05);
  border-left: 4px solid #0a1a66;
  padding: 1rem;
  border-radius: 0 8px 8px 0;
  margin-top: 1.5rem;
}

.cta-card {
  background: linear-gradient(135deg, #0a1a66 0%, #3461c1 100%);
  color: white;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(10, 26, 102, 0.2);
  margin-bottom: 100px;
}

.cta-card h3 {
  font-size: 2rem;
  font-weight: 600;
}

.cta-card .btn-primary {
  background: white;
  color: #0a1a66;
  border: none;
  padding: 1rem 2rem;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.cta-card .btn-primary:hover {
  transform: translateY(-2px);
  background: #f8f9fa;
}

@media (max-width: 768px) {
  .ai-assistant-section {
    padding: 4rem 0;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .cta-card {
    padding: 2rem;
  }
}

@media (max-width: 991.98px) {
  .partner-banner img:not(.iso-badge) {
    max-height: 60px;
  }
  .partner-iframe {
    height: 80px;
    width: 80px;
  }
}

@media (max-width: 767.98px) {
  .partner-banner img:not(.iso-badge) {
    max-height: 50px;
  }
  .partner-iframe {
    height: 70px;
    width: 70px;
  }
}

/* Information Security Page */
.info-sec-section {
  padding: 5rem 0;
  position: relative;
}

.info-sec-heading {
  color: #0a1a66;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.info-sec-table {
  font-size: 0.95rem;
}

.info-sec-table th {
  font-weight: 600;
}

.info-sec-table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  margin-top: 1.5rem;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.07);
  border-radius: 10px;
  overflow: hidden;
}

.info-sec-table th,
.info-sec-table td {
  padding: 1.25rem;
  text-align: left;
  vertical-align: middle;
}

.info-sec-table thead {
  background-color: #f8f9fa;
}

.info-sec-table th {
  font-weight: 600;
  font-size: 0.9rem;
  color: #343a40;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-sec-table tbody tr {
  border-bottom: 1px solid #e9ecef;
  transition: background-color 0.2s ease-in-out;
}

.info-sec-table tbody tr:last-child {
  border-bottom: none;
}

.info-sec-table tbody tr:hover {
  background-color: #f1f3f5;
}

.bg-blue {
  background-color: #0a1a66;
}

.hero-badges-container {
  display: flex;
  flex-direction: column;
  gap: 0rem;
  align-items: center;
  justify-content: center;
}

.hero-badge-img,
.hero-badge-iframe {
  /* Styling for the container, background removed as per request */
}

.hero-badge-img {
  max-width: 250px;
}

.hero-badge-iframe {
  width: 200px;
  height: 200px;
  border: none;
}

/* Featurettes Section */
.feature-section {
  position: relative;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  text-align: left;
}

.feature-icon-container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 0.75rem;
  background-color: #eef2ff;
  color: #0a1a66;
  font-size: 1.75rem;
  flex-shrink: 0;
}

.feature-item h4 {
  font-weight: 600;
  color: #000;
  margin-bottom: 0.5rem;
}

.feature-item p,
.feature-item a {
  color: #555;
}

.security-practice-section {
  position: relative;
}

/* .wave-container-transition {
  height: 60px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
} */

.verification-box {
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 10px;
  padding: 1.5rem;
  margin-top: 2rem;
}

.verification-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.verification-item:not(:last-child) {
  margin-bottom: 1.5rem;
}

.verification-item i {
  font-size: 1.5rem;
  color: #0a1a66;
  margin-top: 0.25rem;
}

.verification-item div {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

.verification-item strong {
  color: #000;
}

.info-sec-bot {
  margin-bottom: 100px !important;
}

.info-sec-top {
  margin-top: 50px !important;
}

.info-sec-head {
  padding-bottom: 120px;
}

/*
.hero-badge-img {
  height: 130px !important;
  width: auto !important;
  object-fit: contain;
}
*/

.img-preview {
  max-width: 300px;
  height: auto;
  display: block;
}

/* Form Elements */
.form-control,
.form-select {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  padding: 0.5rem 0.75rem;
  transition: all 0.3s ease;
  color: #000;
}

.form-control:focus,
.form-select:focus {
  border-color: #00f7ff;
  box-shadow: 0 0 10px rgba(0, 247, 255, 0.3);
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.02);
}

/* Ensure headers in dark-background content sections have correct text */
.opportunities-section h1,
.opportunities-section h2,
.opportunities-section h3,
.opportunities-section h4,
.opportunities-section h5,
.opportunities-section h6,
.opportunities-section p,
.capabilities-section h1,
.capabilities-section h2,
.capabilities-section h3,
.capabilities-section h4,
.capabilities-section h5,
.capabilities-section h6,
.capabilities-section p {
  color: #0a1a66 !important;
}
