* {
  margin: 0;
  padding: 5px;
  box-sizing: border-box;
  font-family: Segoe UI;
}

body {
  background: white
}

/* NAVBAR */
.navbar {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  height: 70px;
  display: flex;
  align-items: center;

  border-radius: 50px;
  padding-left: 30px;
  z-index: 10;
}

.logo img {
  width: 135px;
  border-radius: 50px;

}

.nav-links {
  flex: 1;
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 40px;
  color: white;
}

.feature {
  color: white;
  cursor: pointer;
  font-weight: 600;
}.feature a {
  display: block;
  color: white;
  cursor: pointer;
  font-weight: 600;
  padding: 10px 15px;
  text-decoration: none;
}

/* Right curved white area */
.nav-right {
  height: 100%;
  background: white;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 30px;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  border-top-left-radius: 120px;
  border-bottom-left-radius: 120px;
}

.nav-right i {
  color: #0a4ecb
}

.nav-right button {
  background: #0a4ecb;
  color: white;
  border: none;
  padding: 10px 22px;
  border-radius: 30px;
}

/* HERO */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  padding: 20px;
  /* Space around the inner hero content if needed */
}

.slide {
  position: absolute;
  inset: 15px;
  /* Creates the border effect shown in the image */
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: 1s;
  border-radius: 40px;
  background-color: #05285a;
  /* Fallback */
}

.slide.active {
  opacity: 1
}

.overlay {
  position: absolute;
  inset: 15px;
  background: rgba(5, 40, 90, 0.6);
  /* Transparent background color over the image */
  z-index: 1;
  border-radius: 40px;
  pointer-events: none;
}

/* Left big text */
.hero-text {
  position: absolute;
  left: 60px;
  top: 45%;
  transform: translateY(-50%);
  color: white;
  z-index: 5;
}

.hero-text h1 {
  font-size: 84px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
}

.watch-trailer {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
}

.play-btn {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  transition: 0.3s;
}

.play-btn i {
  font-size: 18px;
  margin-left: 4px;
  /* Optically centering the play icon */
}

.watch-trailer span {
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 14px;
}

.play-btn:hover {
  background: white;
  color: #0a4ecb;
}

/* Left stats box - Flush with bottom-left */
.stats {
  position: absolute;
  left: 0;
  bottom: 0;
  background: white;
  display: flex;
  align-items: center;
  padding: 30px 40px;
  border-top-right-radius: 50px;
  z-index: 10;
}

.stats h3 {
  color: #0a4ecb;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 5px;
}

.stats p {
  color: #666;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
}

.stats .divider {
  width: 1px;
  height: 40px;
  background: #eee;
  margin: 0 40px;
}

/* Right info box */
.info-box {
  position: absolute;
  right: 50px;
  bottom: 50px;
  width: 380px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  padding: 40px;
  border-radius: 40px;
  z-index: 10;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.info-box h3 {
  color: #0352cc;
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 700;
}

.info-box p {
  color: #444;
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 15px;
}

.info-box button {
  width: 100%;
  background: #0352cc;
  color: white;
  border: none;
  padding: 18px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.info-box button:hover {
  background: #023d99;
  transform: translateY(-2px);
}







/* ==============================
   MINDWAVE BRAND COLORS
============================== */
:root {
  --brand-blue: #0056b3;
  --brand-light: #f0f7ff;
  --transition: all 0.3s ease;
}

/* SECTION TAGS */
.section-tag {
  display: inline-block;
  background: #eaf2ff;
  color: #007bff;
  font-size: 16px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
  align-self: flex-start;
}

/* HERO GRID SECTION */
.hero-grid {
  background: linear-gradient(135deg, #f0f7ff, #ffffff);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.carousel-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.5s ease-in-out;
  background-size: cover;
  background-position: center;
}

.carousel-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 58, 128, 0.4), rgba(0, 58, 128, 0.75));
  z-index: 1;
}

.carousel-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 5;
}

.carousel-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 5;
}

/* GRID */
/* SLIDE CONTENT */
.slide-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 0 20px;
  max-width: 800px;
}

.slide-content h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.slide-content p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.slide-btn {
  background: white;
  color: #003a80;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: var(--transition);
  display: inline-block;
}

.slide-btn:hover {
  background: #003a80;
  color: white;
  transform: translateY(-5px);
}

/* ERP CARDS */
.erp-card {
  background: #fff;
  padding: 40px 60px 30px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 86, 179, 0.12);
  flex: 0 1 350px;
  min-width: 280px;
  max-width: 380px;
  z-index: 1;
  transition: var(--transition);
}

.erp-card:hover {
  box-shadow: 0 25px 60px rgba(0, 86, 179, 0.25);
}

.card-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.card-icon img {
  width: 100%;
}

/* CENTER IMAGE */
.center-image {
  position: relative;
  z-index: 2;
  flex: 0 0 450px;
  margin: 0 -40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.center-image::after {
  content: '';
  position: absolute;
  width: 140%;
  height: 140%;
  background: radial-gradient(circle, rgba(0, 86, 179, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-glow 4s ease-in-out infinite;
  z-index: -1;
}

.center-image img {
  width: 100%;
  max-width: 480px;
  min-height: 400px;
  object-fit: cover;
  border-radius: 30px;
  border: 8px solid white;
  box-shadow: 0 40px 80px rgba(0, 86, 179, 0.35);
  animation: float-3d 6s ease-in-out infinite;
}

/* HERO CONTENT OVERRIDE */
/* Consolidating styles */

/* BUTTONS */
.btn {
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--brand-blue);
  color: white;
  box-shadow: 0 10px 20px rgba(0, 86, 179, 0.35);
}

.btn-primary:hover {
  background: #003d80;
  box-shadow: 0 15px 35px rgba(0, 86, 179, 0.5);
}

.btn-outline-info {
  background: transparent;
  color: var(--brand-blue);
  border: 2px solid var(--brand-blue);
}

.btn-outline-info:hover {
  background: var(--brand-blue);
  color: white;
}

/* BADGES */
.badge {
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.bg-primary,
.bg-info {
  background-color: rgba(0, 86, 179, 0.1);
  color: var(--brand-blue);
}

/* HEADINGS */
.left-card h2,
.right-card h2 {
  color: var(--brand-blue);
  font-weight: 800;
}

/* ANIMATIONS */
@keyframes float-3d {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-25px);
  }
}

@keyframes pulse-glow {

  0%,
  100% {
    opacity: 0.3;
  }

  50% {
    opacity: 0.6;
  }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .grid-container {
    flex-direction: column;
  }

  .center-image {
    margin-bottom: 30px;
  }
}



:root {
  --brand-blue: #0056b3;
  --brand-light: #f0f7ff;
}

/* SECTION */
.erp-section {
  min-height: 100vh;
  background: var(--brand-light);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 6%;
}

/* CONTAINER */
.circle-container {
  position: relative;
  width: 700px;
  height: 700px;
}

/* DOTTED ROTATING CIRCLE */
.dotted-circle {
  position: absolute;
  width: 520px;
  height: 520px;
  border: 3px dashed rgba(0, 86, 179, 0.4);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: spin 25s linear infinite;
}

/* MAIN CIRCLE */
.main-circle {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0056b3, #003a80);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 30px 80px rgba(0, 86, 179, 0.4);
}

/* HALVES */
.half {
  position: absolute;
  width: 50%;
  height: 100%;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: 600;
}

.blue {
  left: 0;
  background: rgba(255, 255, 255, 0.05);
}

.orange {
  right: 0;
  background: rgba(255, 255, 255, 0.15);
}

.half img {
  width: 60px;
  margin-bottom: 10px;
}

/* CENTER CIRCLE */
.center-circle {
  position: absolute;
  width: 120px;
  height: 120px;
  background: white;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--brand-blue);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 86, 179, 0.3);
}

/* NODES */
.node {
  position: absolute;
  background: white;
  padding: 12px 18px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  box-shadow: 0 15px 30px rgba(0, 86, 179, 0.15);
  border-left: 4px solid var(--brand-blue);
  top: 50%;
  left: 50%;
  transform-origin: center;
  animation: counter-spin 25s linear infinite;
}

.node i {
  color: var(--brand-blue);
}

/* NODE POSITIONS (DISTRIBUTED AROUND THE CIRCLE) */
/* radius is 260px (520px / 2) */
.n1 {
  transform: translate(-50%, -50%) rotate(0deg) translateX(260px) rotate(0deg);
}

.n2 {
  transform: translate(-50%, -50%) rotate(45deg) translateX(260px) rotate(-45deg);
}

.n3 {
  transform: translate(-50%, -50%) rotate(90deg) translateX(260px) rotate(-90deg);
}

.n8 {
  transform: translate(-50%, -50%) rotate(135deg) translateX(260px) rotate(-135deg);
}

.n4 {
  transform: translate(-50%, -50%) rotate(180deg) translateX(260px) rotate(-180deg);
}

.n5 {
  transform: translate(-50%, -50%) rotate(225deg) translateX(260px) rotate(-225deg);
}

.n6 {
  transform: translate(-50%, -50%) rotate(270deg) translateX(260px) rotate(-270deg);
}

.n7 {
  transform: translate(-50%, -50%) rotate(315deg) translateX(260px) rotate(-315deg);
}

/* ROTATION ANIMATIONS */
@keyframes spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes counter-spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg) translateX(260px) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(0deg) translateX(260px) rotate(-360deg);
  }
}

/* Since the parent (.dotted-circle) rotates from 0 to 360, 
   the children's transform needs to handle the initial offset AND the counter-rotation.
   However, CSS animations on the children will override the static classes n1..n8 if not handled.
   Let's use a cleaner approach: position them with translate and let the parent spin.
   Then use a counter-spin animation that only handles the orientation.
*/

.node {
  /* ... previous styles ... */
  animation: none;
  /* override the old orbit */
}

/* RE-DEFINING KEYFRAMES AND CLASSES FOR CLEANER SYNC */

@keyframes rotate-upright {
  from {
    transform: translate(-50%, -50%) rotate(var(--angle)) translateX(260px) rotate(calc(-1 * var(--angle)));
  }

  to {
    transform: translate(-50%, -50%) rotate(var(--angle)) translateX(260px) rotate(calc(-1 * var(--angle) - 360deg));
  }
}

.n1 {
  --angle: 0deg;
  animation: rotate-upright 25s linear infinite;
}

.n2 {
  --angle: 45deg;
  animation: rotate-upright 25s linear infinite;
}

.n3 {
  --angle: 90deg;
  animation: rotate-upright 25s linear infinite;
}

.n8 {
  --angle: 135deg;
  animation: rotate-upright 25s linear infinite;
}

.n4 {
  --angle: 180deg;
  animation: rotate-upright 25s linear infinite;
}

.n5 {
  --angle: 225deg;
  animation: rotate-upright 25s linear infinite;
}

.n6 {
  --angle: 270deg;
  animation: rotate-upright 25s linear infinite;
}

.n7 {
  --angle: 315deg;
  animation: rotate-upright 25s linear infinite;
}








.mw-mid-section {
  background: var(--brand-light);
  padding: 120px 6%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.mw-mid-wrapper {
  max-width: 1300px;
  margin: auto;
}

.mw-mid-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.mw-mid-card {
  background: white;
  padding: 40px;
  width: 320px;
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(0, 86, 179, 0.15);
  z-index: 1;
}

.mw-mid-card h2 {
  color: var(--brand-blue);
  font-weight: 800;
}

.mw-mid-card p {
  color: #555;
  margin: 15px 0 25px;
}

.mw-mid-card img {
  width: 60px;
  margin-bottom: 20px;
}

.mw-mid-badge {
  display: inline-block;
  background: rgba(0, 86, 179, 0.1);
  color: var(--brand-blue);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 10px;
}

.mw-mid-btn {
  display: inline-block;
  background: var(--brand-blue);
  color: white;
  padding: 12px 28px;
  border-radius: 40px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0, 86, 179, 0.35);
}

.mw-mid-center {
  margin: 0 -40px;
  z-index: 2;
}

.mw-mid-center img {
  width: 460px;
  border-radius: 30px;
  border: 8px solid white;
  box-shadow: 0 40px 80px rgba(0, 86, 179, 0.4);
  animation: mwFloat 6s infinite;
}

@keyframes mwFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-25px);
  }
}








/* 
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #f5f8ff;
} */

.features-section {
  padding: 80px 6%;
  display: flex;
  flex-direction: column;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* Card */
.feature-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  transition: 0.4s ease;
  cursor: pointer;
  position: relative;
}

/* Hover effect */
.feature-card:hover {
  transform: translateY(-8px);
}

/* Icon Circle */
.icon-box {
  width: 60px;
  height: 60px;
  background: #eaf2ff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: 0.4s ease;
}

.icon-box img {
  width: 28px;
  filter: brightness(0) saturate(100%) invert(27%) sepia(98%) saturate(3056%) hue-rotate(212deg) brightness(95%) contrast(98%);
  transition: 0.4s ease;
}

/* Hover icon */
.feature-card:hover .icon-box {
  background: #0a58ff;
}

.feature-card:hover .icon-box img {
  filter: brightness(0) invert(1);
}

/* Text */
.feature-card h3 {
  font-size: 20px;
  color: #0b1b44;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 15px;
  color: #6b7a99;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 1000px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}


.footer {
  background: #0b1c3f;
  color: white;
  padding: 80px 20px 20px;
  position: relative;
  overflow: hidden;
}

/* Glow Background */
.footer::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #0d6efd, #ff9a2f);
  border-radius: 50%;
  filter: blur(120px);
  top: -100px;
  right: -100px;
  opacity: 0.4;
}

/* Grid Layout */
.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  position: relative;
  z-index: 2;
}

/* Brand */
.footer-brand img {
  width: 76px;
  margin-bottom: 10px;
  border-radius: 50px;
}

.footer-brand h3 {
  margin-bottom: 10px;
}

.footer-brand p {
  color: #bbb;
  line-height: 1.6;
}

/* Social Icons */
.footer-socials i {
  margin-right: 15px;
  font-size: 18px;
  cursor: pointer;
  transition: .3s;
}

.footer-socials i:hover {
  color: #ff9a2f;
  transform: scale(1.2);
}

/* Links */
.footer-links h4 {
  margin-bottom: 15px;
  font-size: 16px;
  color: #fff;
}

.footer-links a {
  display: block;
  color: #bbb;
  text-decoration: none;
  margin-bottom: 10px;
  transition: .3s;
}

.footer-links a:hover {
  color: var(--brand-blue);
  transform: translateX(5px);
}

/* Bottom */
.footer-bottom {
  margin-top: 50px;
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: #bbb;
  font-size: 14px;
}

/* Mobile */
@media(max-width:900px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-socials {
    margin-top: 15px;
  }
}