html {
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(to bottom, #365eff 0%, #365eff 25%, #586BFA 50%, #8589F2 75%, #EAECF9 100%);
  background-attachment: fixed;
}

.container {
  max-width: 960px;
}

.overflow-hidden { overflow: hidden; }

.about-section {
  position: relative;
  background: transparent !important;
  z-index: 1;
}

.about-sticky {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0 2rem;
  box-sizing: border-box;
}

.about-bg-x {
  background: rgba(30, 56, 148, 0.92);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 40px rgba(10, 18, 65, 0.35);
  border-radius: 1.2rem;
  padding: 3rem 3.5rem;
  max-width: 780px;
  width: 100%;
  text-align: left;
}

.about-bg-x .display-1 {
  font-family: 'Tondu', 'Outfit', sans-serif;
  font-weight: normal;
  color: #ffffff;
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

.about-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.93);
  margin-bottom: 1rem;
  text-align: left;
}

.about-text-last {
  margin-bottom: 0;
}

/* Glassmorphism for About badges */
.badge-about-x {
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 2px 12px rgba(95, 120, 252, 0.1);
  color: #fff !important;
  border-radius: 0.8rem;
  padding: 0.15em 0.6em;
  font-weight: 700;
  font-size: 1em;
  display: inline-block;
  transition: background 0.2s, color 0.2s;
  text-shadow: 0 1px 6px rgba(95, 120, 252, 0.25);
}
.badge-about-x:hover {
  background: rgba(255, 255, 255, 0.25);
}

.downarrow-hero-animated {
  position: relative;
}

.downarrow-hero-animated::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 90px;
  height: 90px;
  background: rgba(95,120,252,0.18);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1);
  z-index: 0;
  animation: pulse-ring 1.8s infinite;
  pointer-events: none;
}

@keyframes pulse-ring {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }
  70% {
    transform: translate(-50%, -50%) scale(1.4);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.4);
    opacity: 0;
  }
}
