/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: #f3f4f6;
    font-weight: 400;
    height: 100vh;
    margin: 0;


}

/* connecting lines */
div.connecting {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  background: ivory;
  font-family: 'Segoe UI', sans-serif;
  border-radius: 5px;
  cursor: grab;
  user-select: none;
  box-shadow: 0 0 2px 1px rgba(0,0,0,0.5);
  
}

#start {
  width: 100px;
  height: 75px;
  left: 50px;
  top: 50px;
}

#end {
  width: 150px;
  height: 110px;
  bottom: 100px;
  right: 100px;
}

canvas {
  position: absolute;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  pointer-events: none;
}



/* Hero Section */
.parallax {
    background-image: url('https://via.placeholder.com/1920x1080');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 20px;
    text-align: center;
}

.parallax h1 {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.parallax p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.parallax a {
    padding: 1rem 2rem;
    font-size: 1.25rem;
}

.fade-in {
    animation: fadeIn 2s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Decorative Elements */
.animate-bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Buttons */
button, a {
    transition: all 0.3s ease-in-out;
}

button:hover, a:hover {
    transform: scale(1.1);
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
}
footer a {
    color: #4CAF50;
    text-decoration: none;
    margin: 0 10px;
}
footer a:hover {
    text-decoration: underline;
}

/* General Theme */
body {
    background-color: #001f3f; /* Navy Blue */
    color: white;
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
}

a {
    color: #007bff; /* Active Color */
    text-decoration: none;
}

a:hover {
    color: #0056b3; /* Darker Active Color */
    text-decoration: underline;
}

/* Hero Section */
.parallax {
    background-image: url('https://via.placeholder.com/1920x1080');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
}
.fade-in {
    animation: fadeIn 2s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Career Path Section */
#career-path {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #001f3f, #001a33);
    color: white;
    text-align: center;
    position: relative;
}

#career-path h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

#career-path p {
    font-size: 1.125rem;
    max-width: 48rem;
    margin: 0 auto;
}

#career-path .milestone {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
}

#career-path .milestone div {
    width: 16rem;
    height: 16rem;
    background: linear-gradient(to right, #3b82f6, #9333ea);
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Long-Term Goals Section */
#long-term-goals {
    padding: 5rem 2rem;
    background: linear-gradient(to bottom right, #1e3a8a, #9333ea);
    color: white;
    text-align: center;
    position: relative;
    border-radius: 1rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.5s ease; /* Smooth color shift */
    max-width: 800px;
    margin: 0 auto;
}

#long-term-goals:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

#long-term-goals h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

#long-term-goals .stairs {
    position: relative;
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem; /* Add spacing between stairs */
}

#long-term-goals .stairs div {
    background: white;
    border: 2px solid #1e3a8a; /* Thicker border for visibility */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
}

#long-term-goals .stairs div:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    width: 2px;
    height: 20px;
    background: #1e3a8a; /* Match border color */
    transform: translateX(-50%);
}

#long-term-goals .stairs div:last-child:after {
    display: none; /* Remove line after the last stair */
}

#long-term-goals .stairs div:nth-child(1) {
    width: 4rem;
    height: 1.5rem; /* Increased height for better visibility */
}

#long-term-goals .stairs div:nth-child(2) {
    width: 5rem;
    height: 1.5rem;
}

#long-term-goals .stairs div:nth-child(3) {
    width: 6rem;
    height: 1.5rem;
}

#long-term-goals .stairs div:nth-child(4) {
    width: 7rem;
    height: 1.5rem;
}

#long-term-goals .stairs div:nth-child(5) {
    width: 8rem;
    height: 1.5rem;
}

/* Short-Term Goals Section */
#short-term-goals {
    margin-top: 2rem;
    padding: 2rem;
    background: #1e3a8a;
    color: white;
    text-align: center;
    border: 2px solid white; /* White border */
    border-radius: 0.5rem;
    max-width: 600px; /* Smaller box compared to Long-Term Goals */
    margin: 0 auto;
    position: relative;
}

#short-term-goals .divider-line {
    position: absolute;
    top: -2rem;
    left: 50%;
    width: 2px;
    height: 2rem;
    background: white;
    transform: translateX(-50%);
}

#short-term-goals .goal {
    margin-top: 1rem;
    padding: 1rem;
    background: white;
    color: #1e3a8a;
    border-radius: 0.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin: 0 auto;
}

/* Connecting Line */
#connecting-line {
    position: absolute;
    top: 100%;
    left: 50%;
    width: 2px;
    height: 100px;
    background: white;
    transform: translateX(-50%);
}

/**Short terms flip card**/
@import url(https://fonts.googleapis.com/css?family=Roboto:400,500|Source+Sans+Pro:400,700,900);

h1,h2,h3,h4,h5,h6{
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 900;
  letter-spacing: 0.25px;
}
.wrapper{
  padding: 15px;
}
.row{
  max-width: 1024px;
  margin: 0px auto;
}
*,*:before,*:after{
  box-sizing: border-box;
}
.cf:before,
.cf:after{
  display: table;
  content: " ";
}
.cf:after{
  clear: both
}
.header{
  text-align: center;
  padding: 0px 15px;
  margin-bottom: 30px;
}
.header h1{
  font-size: 2.8rem;
}
.header p{
  font-size: 1.3rem;
  line-height: 150%;
}
/*fancy card styling*/
.fancy-card{
  background: #eee;
  width: 100%;
  display: block;
  float: left;
  position: relative;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: all 250ms ease-in;
  min-height: 300px;
  background-size: cover;
  background-position: center center;
  margin-bottom: 30px;
}
.fancy-card.one{
  background-image: url("https://docs.google.com/uc?id=0B7UPM0QugWUjQVlzT0VpTmdYbG8");
}
.fancy-card.two{
  background-image: url("https://docs.google.com/uc?id=0B7UPM0QugWUjbkR2Um9YZ2pnNzQ");
}
.fancy-card.three{
  background-image: url("https://docs.google.com/uc?id=0B7UPM0QugWUjNVVVay1vYkRIV1E");
}
.fancy-card .bg-overlay{
  background: rgba(0,0,0,0.25);
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  transition: all 200ms linear;
}
.fancy-card .content{
  padding: 30px 40px;
  color: #fff;
  text-align: center;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  flex-direction: row;
}
.fancy-card .content .primary{
  text-transform: uppercase;
  width: 100%;
  transition: all 250ms ease-out 200ms;
  opacity: 1;
  transform: translate3d(0px, 0px, 1px);
}
.fancy-card .content .secondary{
  position: absolute;
  opacity: 0;
  left: 0px;
  transform: translate3d(0px, 30px, 1px);
  transition: all 200ms linear 0ms;
  padding-left: 35px;
  padding-right: 35px;
}
.fancy-card .button{
  border: solid 1px #fff;
  padding: 8px 12px;
  display: inline-block;
  border-radius: 2px;
  margin: 12px auto;
}
/*horizontal border elements (top & bottom)*/
.fancy-card .v-border{
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
}
.fancy-card .v-border:before,
.fancy-card .v-border:after{
  width: 0%;
  height: 1px;
  left: 50%;
  transition: all 250ms ease-out;
  background: #fff;
}
.fancy-card .v-border:before{
  content: '';
  top: 10%;
  position: absolute;
}
.fancy-card .v-border:after{
  content: '';
  bottom: 10%;
  position: absolute;
}
/*horizontal elements (left & right)*/
.fancy-card .h-border{
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
}
.fancy-card .h-border:before,
.fancy-card .h-border:after{
  height: 0%;
  top: 50%;
  width: 1px;
  transition: all 250ms ease-out;
  background: #fff;
}
.fancy-card .h-border:before{
  content: '';
  left: 10%;
  height: 0%;
  position: absolute;
}
.fancy-card .h-border:after{
  content: '';
  right: 10%;
  position: absolute;
}
/*hover states for interactivity*/
.fancy-card:active .v-border:before,
.fancy-card:active .v-border:after,
.fancy-card:hover .v-border:before,
.fancy-card:hover .v-border:after{
  width: 90%;
  left: 5%;
}
.fancy-card:active .h-border:before,
.fancy-card:active .h-border:after,
.fancy-card:hover .h-border:before,
.fancy-card:hover .h-border:after{
  height: 90%;
  top: 5%;
}
/*hovering over card, shadow effect*/
.fancy-card:active,
.fancy-card:hover{
  box-shadow: 10px 10px 0px 0px rgba(0, 0, 0, 0.3);
}
/*hovering over card, adjust primary element*/
.fancy-card:active .content .primary,
.fancy-card:hover .content .primary{
  opacity: 0;
  transform: translate3d(0px, 20px, 1px);
  transition: all 200ms linear 0ms;
}
/*hoverijng over card, adjust secondary element*/
.fancy-card:active .content .secondary,
.fancy-card:hover .content .secondary{
  opacity: 1;
  transform: translate3d(0px, 0px, 1px);
  transition: all 200ms linear 200ms;
}
/*hovering over card, adjust background overlay*/
.fancy-card:active .bg-overlay,
.fancy-card:hover .bg-overlay{
  background: rgba(0,0,0,0.45);
}
/*medium and large profiles*/
@media screen and (min-width: 768px){
  .fancy-card{
    width: 30%;
    margin: 0% 1.66% 3.33% 1.66%;
  }
}