:root {
  --grey: #212121;
  --green: #009660;
  --white: #e9e9e9;
  --black: #0c0c0c;
  --lgrey: #929292;
}

@font-face {
  font-family: man;
  src: url(./Manrope-VariableFont_wght\ \(1\).woff2);
}
@font-face {
  font-family: new;
  src: url(./NeueMachina-Regular.woff2);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: var(--white);
}

html,
body {
  height: 100%;
  width: 100%;
}

body {
  background-color: black;
}
.green {
  color: var(--green);
}
.lgrey {
  color: var(--lgrey);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: monospace;
  font-weight: 100;
  padding: 10px 65px;

  position: fixed;
  z-index: 9999;

  width: 100%;
  /* nav blur effect */
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

}

.nav1 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav1 img {
  height: 25px;
}

.nav1 h6 {
  font-size: 0.8rem;
  font-weight: 100;
  font-family: man;
}

.nav2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 70px;
}
.nav2 h4 {
  font-size: 0.8rem;
  font-weight: 100;
  font-family: man;
}
.nav2 h4 i {
  font-size: 20px;
}
/* hover */
.nav2 h4:hover {
  cursor: pointer;
  color: aqua;
}
.nav2 h4 i:hover {
  color: aqua;
}

.nav3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  display: none;
}
.nav3 h4 {
  font-size: 0.8rem;
  font-weight: 100;
  font-family: man;
}
/* nav3 hover style */
.nav3 h4 i:hover {
  cursor: pointer;
  color: aqua;
}
/* nav bar media query */
@media (max-width: 600px) {
  nav {
    padding: 10px 25px;
  }
  .nav1 img {
    height: 25px;
  }
  .nav2 {
    display: none;
  }
  .nav3 {
    display: flex;
  }
}

/* main section */

main {
  padding-top: 90px;
}
.section1 {
  color: white;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 10px 65px;
  font-family: man;
}
/* left section */
.section1 .left {
  width: 42%;
}

.section1 .left h1 {
  font-size: 36px;
}

.section1 .left .tags {
  display: flex;
  align-items: center;
  gap: 5px 5px;
  flex-wrap: wrap;
  white-space: nowrap;
  margin: 25px 0px;
  border-radius: 4px;
}

.left .price {
  font-size: 25px;
}

.left .price .lgrey {
  font-size: 15px;
  text-decoration: line-through;
}
.section1 .left .tags h4 {
  padding: 10px 20px;
  background-color:rgb(19, 20, 20);
}
/* hover effect */
.left .tags h4:hover {
  box-shadow: 0 0 10px rgba(0, 255, 217, 0.7);
  color: rgba(0, 255, 217, 0.7);
  cursor: pointer;
}
.left .tags h4:active {
  transform: scale(0.95);
  box-shadow: 0 0 5px rgba(0, 255, 217, 0.7);
}


.section1 .left .cta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 10px 0px;
}
.cta button {
  background-color: var(--green);
  padding: 10px 20px;
  border: none;
  font-size: 15px;
  border-radius: 5px;
  /* for hover */
  cursor: pointer;
  transition: 0.3s;
}
.cta button:nth-child(2) {
  background-color: var(--grey);
}
/* hover effect */
.cta button:hover {
  color: #000;
  background: var(--green);
  box-shadow:
    0 0 1px var(--green),
    0 0 5px var(--green),
    0 0 10px var(--green);
}
.cta button.gbutton:hover {
  color: #000;
  background: var(--grey);
  box-shadow:
    0 0 1px var(--grey),
    0 0 5px var(--grey),
    0 0 10px var(--grey);
}

/* right section */

.section1 .right .right-in {
  width: 500px;
  border-radius: 5px;
  overflow: hidden;
}

.section1 .right .right-in .image {
  width: 100%;
  height: 300px;
}
.section1 .right .right-in .image img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.right-in .ibottom {
  padding: 20px;
  padding-top: 20px;
  background-color: var(--grey);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.right-in .ibottom h4:hover {
  cursor: pointer;
}

.right-in .ibottom h4 {
  font-size: 13px;
  padding: 10px 10px;
  background-color: #151515;
  width: 45%;
  border-radius: 5px;
}

@media (max-width: 1400px) {
  .section1 .left h1 {
    font-size: 2.5vw;
  }
}
@media (max-width: 800px) {
  main {
    padding-top: 45px;
  }
  .section1 {
    flex-direction: column-reverse;
    padding: 10px 4vw;
  }
  .section1 .left {
    width: 100%;
    margin-top: 20px;
  }
  .section1 .left h1 {
    font-size: 26px;
  }
  .section1 .right .right-in {
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
  }
  .section1 .right .right-in .image {
    width: 100%;
    height: 50vw;
  }

  .right-in .ibottom {
    padding: 15px;
    padding-top: 10px;
    gap: 10px;
  }

  .right-in .ibottom h4 {
    font-size: 2vw;
    padding: 10px 10px;
    width: 45%;
    border-radius: 5px;
  }

  .left .price {
    font-size: 5vw;
  }

  .left .price .lgrey {
    font-size: 3vw;
    text-decoration: line-through;
  }
  .section1 .left .tags h4 {
    padding: 10px 20px;
    background-color: var(--grey);
  }

  .section1 .left .cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin: 10px 0px;
  }
  .cta button {
    background-color: var(--green);
    padding: 10px 0px;
    width: 50%;
    border: none;
    font-size: 15px;
    border-radius: 5px;
  }
}

@media (max-width: 600px) {
  .section1 .left h1 {
    font-size: 5vw;
  }
}
/* section 2 */

.section2 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 50px 70px;
}
.section2 h1 {
  font-family: man;
  font-size: 100px;
  background-image: url(images/jobready2Rotated.webp);
  background-size: cover;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  position: relative;
}

.section2 h1.bloom {
  position: absolute;
  filter: blur(50px);
}

.section2 h3 {
  font-size: 30px;
  text-transform: capitalize;
  letter-spacing: -1px; /*reducing the space bt letters*/
}

@media (max-width: 900px) {
  .section2 h1 {
    white-space: nowrap;   /*text in 1 line*/
    font-size: 12vw;
  }
  .section2 h3 {
    text-align: center;
    font-size: 3vw;
  }
}

/* section 3 */
.section3 .image1 {
  display: flex;
  justify-content: center;
}
.image1 img {
  width: 82%;
  height: 40%;
  margin-top: -12%;
  filter: drop-shadow(
    0px 0px 25px rgba(198, 199, 193, 0.3)
  ); /* drop-shadow(right down glow) use to give shadow to the image */
}
@media (max-width:600px) {
  .image1{
    width: 100%;

  }
}

/* section 4 */
.section4 .container {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 0px 15px 15px 15px;
}
.container .card {
  font-family: man;
  width: 210px;
  aspect-ratio: 1/1;
  border-radius: 40px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.8);

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 2px solid rgba(0, 200, 255, 0.5);

  box-shadow: 0 0 25px rgba(240, 22, 22, 0.248);

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card h1{
  font-size: clamp(35px, 6vw, 70px); 
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(images/jobready2Rotated.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.card p{
  margin-top: -13px;
  padding: 0px 3px 0px 0px;
  font-size: clamp(16px, 3vw, 30px);
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(images/jobready2Rotated.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width:600px) {
  .container{
    padding: 0px 15px 15px 15px;
    gap: 10%;
  }
  .container .card{
    flex: 1;
    width: 29vw;
    aspect-ratio: 1/1;
    border-radius: 20px;
  }
}
/* section4 hover */
.container .card:hover{
   transform: scale(1.05) translateY(-10px);
   box-shadow: 0 10px 40px rgba(240, 22, 22, 0.248);
}
.card:active {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 10px 40px rgba(240, 22, 22, 0.248);
}

/* section5 */
.section5{
  margin-top: 30px;
  position: relative;
  z-index: 1;
}

.section5 .blimage img{
  width: 100vw;
  height: 50vw;
  filter: blur(10px);
  
}
.section5 .text {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section5 .text h1{
  font-size: 3.5em;
  font-family: new;
  text-align:center;
  top: 50%;
  left:1%;
  transform: translateY(30%);
  line-height: 1;
  width: 100%;
}
.text .s{
  background-color: rgba(0, 255, 255, 0.071);
  padding: 0px 10px;
  border: 2px solid  rgb(0, 66, 66);
  line-height: 1.5;
  border-radius: 10px;
}
.text .buybt{
  font-size: 20px;
  margin-top: 90px;
  padding: 10px 30px;
  background-color: rgba(0, 234, 255, 0.038);
  border: 1px solid rgb(0, 255, 255);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

@media (max-width:600px) {
  .section5{
  margin-top: 50px;
  }
  .section5 .text h1{
    font-size: 1em;
  }
  .text .buybt{
    font-size:12px;
    margin-top: 30px;
    padding: 4px 7px;
  }
}
.buybt:hover{
  cursor: pointer;
  box-shadow: 0 0 10px rgb(0, 255, 255);
  filter: drop-shadow(0 0 10px rgb(0, 255, 255));
} 

.buybt:active{
  cursor: pointer;
  box-shadow: 0 0 20px rgb(0, 255, 255);
   filter: drop-shadow(0 0 20px rgb(0, 255, 255));
} 

/* footer section */
/* footer left */
.footer-container{
  position: relative;
  z-index: 5;
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  padding: 10px 65px;
  padding-bottom: 150px;

}
.footer-container .footer-left img{
  height: 3vw;
  padding-bottom: 10px;
}
.footer-left .left-icon{
  display: flex;
  flex-direction: row;
  gap: 8%;
  
  font-size: 2vw;
}
/* footer right */
.footer-right{
  margin-right: 20px;
  
  display: flex;
  justify-content: space-between;
  gap: 15px;
}
.footer-col{
  display: flex;
  flex-direction: column;
  gap: 10%;
}
.footer-col h3{
  font-family: man;
  color: white;
  margin-bottom: 10px;
  font-weight: 400;
}
.footer-col a {
  white-space: nowrap;
  font-size: 14px;
  color: #686868;
  font-family: man;
  text-decoration:none;
}
.footer-col p{
   color: #ffffff;
}

/* footer hover */
.footer-left i:hover{
  cursor: pointer;
}
.footer-col a:hover{
  color: rgba(6, 252, 252, 0.649);
}

/* footer media query */
@media (max-width:600px) {
  .footer-container{

    display: flex;
    flex-direction: column;
    padding: 10px 25px;
    margin-top: 60px;
    padding-bottom: 50px;
  }
  .footer-left{
    margin-bottom: 50px;
  }
  .footer-container .footer-left img{
    height: 8vh;
    margin-bottom: 30px;

  }
  .footer-left .left-icon{
  display: flex;
  flex-direction: row;
  gap: 4%;
  font-size: 3vh;
  }
  /* right footer */
  .footer-right{
  display: flex;
  flex-direction: column;
  gap: 20px;
  }

  .footer-col a {
    margin-bottom: 10px;
}
}

/* CSS scroll animation + stagger effect */
/* scroll reveal base */

.reveal {
  opacity: 1;
  transform: translateY(0);
}

/*Only apply animation if browser supports it */
@supports (animation-timeline: view()) {

  .reveal {
    opacity: 0;
    transform: translateY(60px);

    animation: fadeUp 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
  }

  /* stagger support */
  .reveal {
    --i: 0;
    animation-delay: calc(var(--i) * 0.15s);
  }

}

/* ✅ animation define */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


