body {
    background-color: #0d0e1a;
    margin: 0;
    font-family: "MainFont", sans-serif;
    overflow-x: hidden;
}

html, body {
    max-width: 100vw;
    scroll-behavior: smooth;
}

@font-face {
    font-family: "MainFont";
    src: url(Baloo2-Medium.ttf);
}

header {
    background-color: #0d0e1a;
    border-bottom: 1px solid #a8a8a8;
    width: 100%;
    height: 100px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.HeaderLogo {
    height: 80px;
    border-radius: 10px;
    margin-left: 50px;
}

.HeaderText {
    color: white;
    font-size: 36px;
    font-family: "MainFont";
    margin-left: 25px;
}

.HeaderButton {
    background: linear-gradient(135deg, #FF4800, #ff7a00);
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    font-size: 1.1em;
    font-weight: 600;
    border-radius: 12px;
    margin-left: auto; /* push to the right */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 18px rgba(255, 72, 0, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    align-self: center; /* vertically center in flex */
    margin-right: 25px;
}

.HeaderButton:hover {
  background: linear-gradient(135deg, #ff5f1f, #ff9540);
  transform: scale(1.05);
  box-shadow: 0 0 24px rgba(255, 72, 0, 0.75);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 18px rgba(255, 72, 0, 0.5);
  }
  50% {
    box-shadow: 0 0 28px rgba(255, 72, 0, 0.8);
  }
  100% {
    box-shadow: 0 0 18px rgba(255, 72, 0, 0.5);
  }
}



@media (max-width: 700px) {
    header {
        height: 75px;
        text-align: center;
    }

    .HeaderLogo {
        margin-left: 25px;
        height: 55px;
    }

    .HeaderText {
        font-size: 22px;
        margin-left: 10px;
    }

    .HeaderButton {
        width: auto;
        min-width: 100px;
        height: 45px;
        margin-right: 10px;
        font-size: 16px;
        padding: 10px 18px;
        white-space: nowrap;
        box-sizing: border-box;
    }
}

@media (max-width: 410px) {
    .HeaderText {
        font-size: 19px;
    }

    .HeaderButton {
        width: auto;
        min-width: 90px;
        height: 40px;
        font-size: 14px;
        padding: 8px 10px;
        white-space: nowrap;
        box-sizing: border-box;
    }
}

.welcomeh1 {
  font-size: 2.6em;
  font-weight: 800;
  text-align: center;
  margin-top: 70px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ff7a00, #FF4800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 12px rgba(255, 72, 0, 0.4);
  animation: fadeSlideUp 0.8s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}
@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

    .welcomeP {
  color: #b0c4ff;
  max-width: 700px;
  margin: 10px auto;
  font-size: 1.1em;
  text-align: center;
  line-height: 1.7;
    }

    .highlight-green {
        color: #FF4800;
        font-weight: bold;
    }

.cta-button {
  background: linear-gradient(135deg, #FF4800, #ff7a00);
  color: #ffffff;
  border: none;
  padding: 14px 32px;
  font-size: 1.1em;
  font-weight: 600;
  border-radius: 12px;
  margin: 40px auto 25px;
  display: block;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 18px rgba(255, 72, 0, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.cta-button:hover {
  background: linear-gradient(135deg, #ff5f1f, #ff9540);
  transform: scale(1.07);
  box-shadow: 0 0 24px rgba(255, 72, 0, 0.75);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 18px rgba(255, 72, 0, 0.5);
  }
  50% {
    box-shadow: 0 0 28px rgba(255, 72, 0, 0.8);
  }
  100% {
    box-shadow: 0 0 18px rgba(255, 72, 0, 0.5);
  }
}



.icons {
  margin: 50px auto 30px; /* top: 50px, auto left/right, bottom: 30px */
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 85%;
}


.icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  padding: 12px;
  width: 40px;
  height: 40px;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 10px rgba(255, 72, 0, 0.1);
}

.icons a img {
  width: 45px;
  height: 45px;
  transition: transform 0.3s ease;
  border-radius: 50px;
}

.icons a:hover img {
  transform: scale(1.3);
}


    @media (max-width: 600px) {
        .icons a {
            width: 40px;
            height: 40px;
        } 
        .welcomeh1 {
            font-size: 1.5em;
            margin-top: 40px;
            margin-bottom: 14px;
        }
        .welcomeP {
            font-size: 0.98em;
            max-width: 95vw;
            margin: 8px 2vw;
        }
        .cta-button {
            padding: 12px 10vw;
            font-size: 0.95em;
            margin-top: 30px;
            margin-bottom: 30px;
            border-radius: 18px;
        }

        .cta-button {
            padding: 15px 30px;
        }
    }

.SeparationDiv {
  width: 100%;
  height: 4px;
  margin: 60px 0;
  background: linear-gradient(to right, #0b86be, #22d3ee, #0b86be);
  box-shadow: 0 0 15px rgba(14, 165, 233, 0.5);
  border-radius: 2px;
}

.SeparationDivII {
  width: 100%;
  height: 4px;
  margin: 60px 0;
  background: linear-gradient(to right, #0b86be, #22d3ee, #0b86be);
  box-shadow: 0 0 15px rgba(14, 165, 233, 0.5);
  border-radius: 2px;
}

.EntryDiv {
    max-width: 85%;
    margin-left: auto;
    margin-right: auto;
}

/* ===== PHASE 1: Blue tones ===== */
.phase-one .Stage1, .phase-one .Stage2, .phase-one .Stage3 {
  background: linear-gradient(135deg, #1e263b, #23283a);
  border: 2px solid #00c3ff;
}

.phase-one .Stage1H1, .phase-one .Stage2H1, .phase-one .Stage3H1 {
  color: #00c3ff;
}

.phase-one .ProgressBar {
  background: linear-gradient(90deg, #FF4800 0%, #FFD400 100%);
}

.phase-one .PhaseLabel {
  color: #00c3ff;
}


/* ===== PHASE 2: Orange tones with blue progress ===== */
.phase-two .Stage1, .phase-two .Stage2, .phase-two .Stage3 {
  background: linear-gradient(135deg, #3d2a1a, #4a321f);
  border: 2px solid #ff9900;
}

.phase-two .Stage1H1, .phase-two .Stage2H1, .phase-two .Stage3H1 {
  color: #ffaa33;
}

.phase-two .ProgressBar {
  background: linear-gradient(90deg, #0050da 0%, #00eeff 100%);
}

.phase-two .PhaseLabel {
  color: #ffaa33;
}

/* ========== ROADMAP BASE STYLES ========== */
.RoadmapPhase {
  display: none;
}

.RoadmapPhase.active {
  display: block;
}

/* Headings */
.RoadmapH1 {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 2.5rem;
  margin: 100px auto 0 auto;
  letter-spacing: 2px;
  color: #00c3ff;
  font-weight: bold;
  max-width: 85%;
}

.RoadmapP {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1.2rem;
  margin: 0 auto 40px auto;
  color: #b2becd;
  max-width: 85%;
}

/* Roadmap Container */
.Roadmap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 20px;
}

.Stages {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Stage Card Styles */
.Stage1, .Stage2, .Stage3 {
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  padding: 28px 24px 20px 24px;
  min-width: 260px;
  max-width: 320px;
  flex: 1 1 260px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.4s cubic-bezier(.4,0,.2,1), box-shadow 0.4s cubic-bezier(.4,0,.2,1);
}

.Stage1:hover, .Stage2:hover, .Stage3:hover {
  transform: scale(1.05);
}

.Stage1H1, .Stage2H1, .Stage3H1 {
  font-size: 1.5rem;
  margin-bottom: 18px;
  letter-spacing: 1px;
  font-weight: 600;
}

/* Tasks List */
.StageTasks {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
  width: 100%;
}

.StageTasks li {
  display: flex;
  align-items: center;
  font-size: 1rem;
  margin-bottom: 10px;
  color: #f5f6fa;
  padding-left: 0;
}

.TaskStatus {
  display: inline-block;
  width: 22px;
  font-size: 1.2rem;
  margin-right: 10px;
  font-weight: bold;
}

/* Progress Bar */
.ProgressBarContainer {
  width: 100%;
  background: #1a1e2a;
  border-radius: 8px;
  height: 16px;
  margin-top: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.ProgressBar {
  height: 100%;
  border-radius: 8px 0 0 8px;
  transition: width 0.6s cubic-bezier(.4,0,.2,1);
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
}

/* Toggle Buttons */
.ToggleWrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.PhaseToggle {
  background-color: #121e34;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 4px;
  display: flex;
  gap: 4px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.toggle-button {
  padding: 10px 28px;
  border: none;
  border-radius: 999px;
  background-color: transparent;
  color: #b2becd;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.toggle-button.active {
  background-color: #3385ff;
  color: #000;
  box-shadow: 0 0 12px rgba(255, 179, 0, 0.3);
}


/* Responsive */
@media (max-width: 900px) {
    .Stages {
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin: 0 auto;
        padding: 0;
    }
    .Stage1, .Stage2, .Stage3 {
        max-width: 100vw;
        min-width: 0;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        box-sizing: border-box;
    }
}

.offer-section {
  padding: 4vw 2vw;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

.offer-title {
  font-size: 2.5rem;
  color: #ffd54f;   
  margin-bottom: 2.5rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.offer-boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  
}

.offer-box {
  background-color: #1c1f2b;
  border: 1px solid #2a2d44;
  border-left: 4px solid #ffd54f;   
  border-radius: 16px;
  padding: 2rem 1.5rem;
  width: 300px;
  max-width: 90vw;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  color: #ddd;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.offer-box h2 {
  color: #ffd54f;
  margin-bottom: 0.75rem;
  font-size: 1.4rem;
  font-weight: 500;
}

.offer-box p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #bbb;
}


@media (max-width: 600px) {
  .offer-title {
    font-size: 2rem;
  }

  .offer-box {
    width: 100%;
    padding: 1.5rem 1rem;
  }

  .offer-box h2 {
    font-size: 1.3rem;
  }

  .offer-box p {
    font-size: 0.95rem;
  }
}

.read-docs-button {
  display: inline-block; /* <-- Fix: Prevent full width */
  margin: -200px auto 60px auto;
  padding: 18px 40px;
  background-color: #ffffff;
  color: white;
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.25em;
  transition: background-color 0.3s ease, transform 0.2s;
  box-shadow: 0 4px 18px rgba(11, 134, 190, 0.18);
}

.read-docs-button:hover {
  background-color: #281bde;
  transform: scale(1.05);
}

footer.conviction {
    background-color: #0d0d0d; /* Deep dark background */
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05); /* subtle divider */
    color: #dbe9ff; /* soft light text */
}

footer.conviction h2 {
    font-size: 2rem;
    color: #ff9d00; /* consistent with your title color */
    margin-bottom: 20px;
    font-weight: 700;
}

footer.conviction p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #b0c4ff;
}


