/*HOME PAGE*/
*{
    margin: 0;
    padding: 0;
}
html {
  scroll-behavior: smooth;
}

.main{
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.5)50%,rgba(0,0,0,0.5)50%),url("images/laser-head-15.jpg");
    background-position: center;
    background-size: cover;
    background-attachment:fixed;
    height: 100vh;
}
.navbar{
    position: fixed;
    width: 100%;
    height: 90px;
    margin: auto;
    display: flex;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
}
.menu-toggle{
    display: none;
}
.icon{
    background-image: url("images/logo4.png");
    width: 360px;
    float: left;
    height: 70px;
    padding-bottom: 20px;
}
.menu{
    width: 100%;
    float: left;
    height: auto;
}
ul{
    float: left;
    display: flex;
    justify-content: center;
    align-items: center;
}
ul li{
    list-style: none;
    margin-left: 200px;
    margin-top: 40px;
    font-size: 14px;

}
ul li a{
    text-decoration: none;
    color: lightblue;
    font-family: Arial, cursive;
    font-weight: bold;
    transition: 0.4s ease-in-out;
}
ul li a:after{
    content: "";
    width: 0%;
    height: 2px;
    background: red;
    display: block;
    margin: auto;
    transition: 0.5s;
}
ul li a:hover::after{
    width: 100%;
    background: red;}
.content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -30%);
    text-align: center;
}
.content h1{
    font-size: 62px;
}
.content p{
    margin: 10px 0 40px;
    font-size: 20px;
    color: white;
}
.hero {
    display: inline-block;
    text-decoration: none;
    color: white;
    border: 1px solid slategray;
    padding: 12px 34px;
    font-size: 30px;
    background: transparent;
    position: relative;
    cursor: pointer;
}
.hero:hover{
    border: 1px solid slategray;
    background-color: slategray;
    transition: 1s;
}
/*ABOUT PAGE*/
.sub-main{
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.5)50%,rgba(0,0,0,0.5)50%),url("images/opt-lasers-7NvkRlTzLZE-unsplash-1200x800.png");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    min-height: 100vh;
    padding-bottom: 1850px;
}
.About{
    width: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -30%);
    text-align: center;
}
.About h1{
    font-size: 62px;
}
.About p{
        margin: 10px 0 1px;
    font-size: 20px;
    color: white;
}
.info{
    width: 90%;
    position: absolute;
    top: 120%;
    left: 50%;
    transform: translate(-50%, -30%);
    text-align: center;
}
.info h1{
    font-size: 62px;
}
.info p{
        margin: 10px 0 1px;
    font-size: 20px;
    color: white;
}
.hero1 {
    display: inline-block;
    text-decoration: none;
    color: white;
    border: 1px solid slategray;
    margin-top: 50px;
    padding: 19px 34px;
    font-size: 30px;
    background: transparent;
    position: relative;
    cursor: pointer;
}
.hero1:hover{
    border: 1px solid slategray;
    background-color: slategray;
    transition: 1s;
}
.team-section {
    position: absolute;
    top: 240%;
    left: 50%;
    transform: translate(-50%, -30%);
  color: white;
  text-align: center;
  backdrop-filter: blur(5px);
  background: rgba(0, 0, 0, 0.5);
  padding: 40px;
  border-radius: 15px;
}
.team-section h2 {
  font-size: 40px;
  color: yellow;
  margin-bottom: 20px;
}
.team {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}
.member {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
  width: 250px;
  backdrop-filter: blur(8px);
}
.advisor {
  margin-top: 50px;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 15px;
  backdrop-filter: blur(8px);
}
.sub-main-1{
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.5)50%,rgba(0,0,0,0.5)50%),url("images/istockphoto-178981530-612x612.jpg");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    min-height: 100vh;
    padding-bottom: 5550px;
}
/* MATERIALS SECTION */
#materials {
    position: absolute;
    top: 280%;
    left: 50%;
    transform: translate(-50%, -30%);
  padding: 60px 20px;
  text-align: center;
  color: white;
  width: 90%;
  margin: 0 auto;
}

#materials h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

/* Material category container */
.material-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 25px;
  margin-bottom: 70px;
text-decoration: none;
}

.material-item h3 {
  font-size: 2rem;
  margin-bottom: 25px;
  color: lightskyblue;
}

/* Sub-items container */
.sub-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

/* Single material card */
.sub-item {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 15px;
  width: 250px;
  padding: 15px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.sub-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
text-decoration: none;
}

/* Hover effect: zoom and shadow */
.sub-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 180, 255, 0.5);
}

.sub-item:hover img {
  transform: scale(1.08);
}

/* Material name Amazon link */
.sub-item h4 {
  margin-top: 10px;
  font-size: 1.2rem;
}

.sub-item h4 a {
  color: #ffcc66;
  text-decoration: none;
  transition: color 0.3s, text-decoration 0.3s;
}

.sub-item h4 a:hover {
  color: #00b4ff;
  text-decoration: underline;
}

.sub-item p {
  font-size: 0.9rem;
  color: #ddd;
  margin-top: 5px;
}
/* HOW IT WORKS SECTION */
.how-it-works {
  padding: 100px 50px;
  background: linear-gradient(to top, rgba(0,0,0,0.6)50%,rgba(0,0,0,0.6)50%), url("images/istockphoto-178981530-612x612.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  text-align: center;
}

.how-it-works h1 {
  font-size: 60px;
  margin-bottom: 30px;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.step {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  width: 300px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease;
text-decoration: none;
}

.step:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.2);
}

.step img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.step h2 {
  margin: 15px 0 10px;
  color: #FFD700;
    text-decoration: none;
}

.step p {
  font-size: 16px;
  color: #f5f5f5;
text-decoration: none;
}

/* DESKTOP BREAKPOINTS */

/* 1440px - Large desktops */
@media (max-width: 1440px) {
    /* Add large desktop adjustments here */
}
@media (max-width: 1200px) {
.menu-toggle{
    display: none;
}
.icon{
    background-image: url("images/logo4.png");
    width: 370px;
    float: left;
    height: 70px;
    padding-bottom: 20px;
}
ul{
    float: left;
    display: flex;
    justify-content: center;
    align-items: center;
}
ul li{
    list-style: none;
    margin-left: 100px;
    margin-top: 40px;
    font-size: 20px;}
    .content h1{
    font-size: 62px;
}
.content p{
    margin: 10px 0 40px;
    font-size: 30px;
    color: white;
}
.sub-main{
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.5)50%,rgba(0,0,0,0.5)50%),url("images/opt-lasers-7NvkRlTzLZE-unsplash-1200x800.png");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    min-height: 100vh;
    padding-bottom: 3000px;
}
.About{
    width: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -30%);
    text-align: center;
}
.About h1{
    font-size: 62px;
}
.About p{
        margin: 10px 0 1px;
    font-size: 30px;
    color: white;
}
.info{
    width: 90%;
    position: absolute;
    top: 120%;
    left: 50%;
    transform: translate(-50%, -30%);
    text-align: center;
}
.info h1{
    font-size: 62px;
}
.info p{
        margin: 10px 0 1px;
    font-size: 30px;
    color: white;
}
.hero1 {
    display: inline-block;
    text-decoration: none;
    color: white;
    border: 1px solid slategray;
    margin-top: 50px;
    padding: 19px 34px;
    font-size: 30px;
    background: transparent;
    position: relative;
    cursor: pointer;
}
.hero1:hover{
    border: 1px solid slategray;
    background-color: slategray;
    transition: 1s;
}
.team-section {
    position: absolute;
    top: 220%;
    left: 50%;
    transform: translate(-50%, -30%);
  color: white;
  text-align: center;
  backdrop-filter: blur(5px);
  background: rgba(0, 0, 0, 0.5);
  padding: 40px;
  border-radius: 15px;
}
.team-section h2 {
  font-size: 40px;
  color: yellow;
  margin-bottom: 20px;
}
.team {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}
.member {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
  width: 250px;
  backdrop-filter: blur(8px);
}
.advisor {
  margin-top: 50px;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 15px;
  backdrop-filter: blur(8px);
}
    .sub-main-1{
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.5)50%,rgba(0,0,0,0.5)50%),url("images/istockphoto-178981530-612x612.jpg");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    min-height: 500vh;
    padding-bottom: 100px;
}
/* MATERIALS SECTION */
#materials {
    position: absolute;
    top: 150%;
    left: 50%;
    transform: translate(-50%, -30%);
  padding: 60px 20px;
  text-align: center;
  color: white;
  width: 90%;
  margin: 0 auto;
}

}
@media (max-width: 992px) {
   .main{
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.5)50%,rgba(0,0,0,0.5)50%),url("images/laser-head-15.jpg");
    background-position: center;
    background-size: cover;
    background-attachment:fixed;
    height: 120vh;
}
    .icon{
    background-image: url("images/logo4.png");
    width: 300px;
    float: left;
    height: 70px;
        padding-bottom: 20px;}
    .menu {
        display: none;
        position: fixed;
        top: 70px;
        right: 0;
        width: 70%;
        height: calc(100vh - 70px);
        background: rgba(0,0,0,0.95);
        padding: 20px;
        z-index: 999;
    }
    
    .menu.active {
        display: block;
    }
    
    .menu ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        float: none;
        justify-content: flex-start;
        width: 100%;
    }
    
    .navbar ul li {
        margin: 15px 0;
        margin-left: 0;
        width: 100%;
        text-align: center;
    }
    
    .menu-toggle {
        display: block;
        font-size: 24px;
        cursor: pointer;
        color: white;
        position: absolute;
        right: 20px;
        top: 30px;
    }    
    /* Fix for the button disappearing */
.hero {
    display: inline-block;
    text-decoration: none;
    color: white;
    border: 1px solid slategray;
    padding: 12px 34px;
    font-size: 30px;
    background: transparent;
    position: relative;
    cursor: pointer;
}
    
    .content {
        padding-top: 62px;
    }
    .content p{
    margin: 10px 0 40px;
    font-size: 30px;
    color: white;
}
.sub-main{
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.5)50%,rgba(0,0,0,0.5)50%),url("images/opt-lasers-7NvkRlTzLZE-unsplash-1200x800.png");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    min-height: 2500px;
   }
.About{
    width: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -30%);
    text-align: center;
}
.About h1{
    font-size: 62px;
}
.About p{
        margin: 10px 0 1px;
    font-size: 30px;
    color: white;
}
.info{
    width: 90%;
    position: absolute;
    top: 145%;
    left: 50%;
    transform: translate(-50%, -30%);
    text-align: center;
}
.info h1{
    font-size: 62px;
}
.info p{
        margin: 10px 0 1px;
    font-size: 30px;
    color: white;
}
.hero1 {
    display: inline-block;
    text-decoration: none;
    color: white;
    border: 1px solid slategray;
    margin-top: 50px;
    padding: 19px 34px;
    font-size: 30px;
    background: transparent;
    position: relative;
    cursor: pointer;
}
.hero1:hover{
    border: 1px solid slategray;
    background-color: slategray;
    transition: 1s;
}
.team-section {
    top: 250%;
    left: 50%;
    transform: translate(-50%, -30%);
  color: white;
  text-align: center;
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.5);
  padding: 40px;
  border-radius: 15px;
}
.team-section h2 {
  font-size: 40px;
  color: yellow;
  margin-bottom: 20px;
}
.team {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}
.member {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
  width: 250px;
  backdrop-filter: blur(8px);
}
.advisor {
  margin-top: 50px;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 15px;
  backdrop-filter: blur(8px);
}
.sub-main-1{
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.5)50%,rgba(0,0,0,0.5)50%),url("images/istockphoto-178981530-612x612.jpg");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    min-height: 500vh;
    padding-bottom: 700px;
}
/* MATERIALS SECTION */
#materials {
    position: absolute;
    top: 330%;
    left: 50%;
    transform: translate(-50%, -30%);
  padding: 60px 20px;
  text-align: center;
  color: white;
  width: 90%;
  margin: 0 auto;
}

#materials h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

/* Material category container */
.material-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 25px;
  margin-bottom: 70px;
text-decoration: none;
}

.material-item h3 {
  font-size: 2rem;
  margin-bottom: 25px;
  color: lightskyblue;
}

/* Sub-items container */
.sub-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

/* Single material card */
.sub-item {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 15px;
  width: 250px;
  padding: 15px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.sub-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
text-decoration: none;
}

/* Hover effect: zoom and shadow */
.sub-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 180, 255, 0.5);
}

.sub-item:hover img {
  transform: scale(1.08);
}

/* Material name Amazon link */
.sub-item h4 {
  margin-top: 10px;
  font-size: 1.2rem;
}

.sub-item h4 a {
  color: #ffcc66;
  text-decoration: none;
  transition: color 0.3s, text-decoration 0.3s;
}

.sub-item h4 a:hover {
  color: #00b4ff;
  text-decoration: underline;
}

.sub-item p {
  font-size: 0.9rem;
  color: #ddd;
  margin-top: 5px;
}
/* HOW IT WORKS SECTION */
.how-it-works {
  padding: 100px 50px;
  background: linear-gradient(to top, rgba(0,0,0,0.6)50%,rgba(0,0,0,0.6)50%), url("images/istockphoto-178981530-612x612.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  text-align: center;
}

.how-it-works h1 {
  font-size: 60px;
  margin-bottom: 30px;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.step {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  width: 300px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease;
text-decoration: none;
}

.step:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.2);
}

.step img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.step h2 {
  margin: 15px 0 10px;
  color: #FFD700;
    text-decoration: none;
}

.step p {
  font-size: 16px;
  color: #f5f5f5;
text-decoration: none;
}
}
@media (max-width: 704px) {
    .main{
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.5)50%,rgba(0,0,0,0.5)50%),url("images/laser-head-15.jpg");
    background-position: center;
    background-size: cover;
    background-attachment:fixed;
    height: 150vh;
}
    .icon{
    background-image: url("images/logo4.png");
    width: 300px;
    float: left;
    height: 70px;
        padding-bottom: 20px;}
    .menu {
        display: none;
        position: fixed;
        top: 70px;
        right: 0;
        width: 70%;
        height: calc(100vh - 70px);
        background: rgba(0,0,0,0.95);
        padding: 20px;
        z-index: 999;
    }
    
    .menu.active {
        display: block;
    }
    
    .menu ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        float: none;
        justify-content: flex-start;
        width: 100%;
    }
    
    .navbar ul li {
        margin: 15px 0;
        margin-left: 0;
        width: 100%;
        text-align: center;
    }
    
    .menu-toggle {
        display: block;
        font-size: 24px;
        cursor: pointer;
        color: white;
        position: absolute;
        right: 20px;
        top: 30px;
    }
    
    .icon {
        text-align: center;
    }
    
    .content h1 {
        font-size: 2rem;
    }
    
    .content .par {
        font-size: 1rem;
    }
    
    /* Fix for the button disappearing */
.hero {
    display: inline-block;
    text-decoration: none;
    color: white;
    border: 1px solid slategray;
    padding: 12px 34px;
    font-size: 30px;
    background: transparent;
    position: relative;
    cursor: pointer;
}
    
    .content {
        padding-top: 40px;
    }
.sub-main{
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.5)50%,rgba(0,0,0,0.5)50%),url("images/opt-lasers-7NvkRlTzLZE-unsplash-1200x800.png");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    min-height: 2500px;
   }
.About{
    width: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -30%);
    text-align: center;
}
.About h1{
    font-size: 62px;
}
.About p{
        margin: 10px 0 1px;
    font-size: 30px;
    color: white;
}
.info{
    width: 90%;
    position: absolute;
    top: 145%;
    left: 50%;
    transform: translate(-50%, -30%);
    text-align: center;
}
.info h1{
    font-size: 62px;
}
.info p{
        margin: 10px 0 1px;
    font-size: 30px;
    color: white;
}
.hero1 {
    display: inline-block;
    text-decoration: none;
    color: white;
    border: 1px solid slategray;
    margin-top: 50px;
    padding: 19px 34px;
    font-size: 30px;
    background: transparent;
    position: relative;
    cursor: pointer;
}
.hero1:hover{
    border: 1px solid slategray;
    background-color: slategray;
    transition: 1s;
}
.team-section {
    top: 270%;
    left: 50%;
    transform: translate(-50%, -30%);
  color: white;
  text-align: center;
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.5);
  padding: 40px;
  border-radius: 15px;
}
.team-section h2 {
  font-size: 40px;
  color: yellow;
  margin-bottom: 20px;
}
.team {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}
.member {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
  width: 250px;
  backdrop-filter: blur(8px);
}
.advisor {
  margin-top: 50px;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 15px;
  backdrop-filter: blur(8px);
}
.sub-main-1{
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.5)50%,rgba(0,0,0,0.5)50%),url("images/istockphoto-178981530-612x612.jpg");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    min-height: 500vh;
    padding-bottom: 1500px;
}
/* MATERIALS SECTION */
#materials {
    position: absolute;
    top: 500%;
    left: 50%;
    transform: translate(-50%, -30%);
  padding: 60px 20px;
  text-align: center;
  color: white;
  width: 90%;
  margin: 0 auto;
}

#materials h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

/* Material category container */
.material-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 25px;
  margin-bottom: 70px;
text-decoration: none;
}

.material-item h3 {
  font-size: 2rem;
  margin-bottom: 25px;
  color: lightskyblue;
}

/* Sub-items container */
.sub-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

/* Single material card */
.sub-item {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 15px;
  width: 250px;
  padding: 15px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.sub-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
text-decoration: none;
}

/* Hover effect: zoom and shadow */
.sub-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 180, 255, 0.5);
}

.sub-item:hover img {
  transform: scale(1.08);
}

/* Material name Amazon link */
.sub-item h4 {
  margin-top: 10px;
  font-size: 1.2rem;
}

.sub-item h4 a {
  color: #ffcc66;
  text-decoration: none;
  transition: color 0.3s, text-decoration 0.3s;
}

.sub-item h4 a:hover {
  color: #00b4ff;
  text-decoration: underline;
}

.sub-item p {
  font-size: 0.9rem;
  color: #ddd;
  margin-top: 5px;
}
/* HOW IT WORKS SECTION */
.how-it-works {
  padding: 100px 50px;
  background: linear-gradient(to top, rgba(0,0,0,0.6)50%,rgba(0,0,0,0.6)50%), url("images/istockphoto-178981530-612x612.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  text-align: center;
}

.how-it-works h1 {
  font-size: 60px;
  margin-bottom: 30px;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.step {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  width: 300px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease;
text-decoration: none;
}

.step:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.2);
}

.step img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.step h2 {
  margin: 15px 0 10px;
  color: #FFD700;
    text-decoration: none;
}

.step p {
  font-size: 16px;
  color: #f5f5f5;
text-decoration: none;
}
}
@media (max-width: 480px) {
         .icon {
    background-image: url("images/logo4.png");
           width: 300px;}
    .menu-toggle {
        font-size: 20px;
        top: 35px;
    right: 11px;}
 .sub-main{
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.5)50%,rgba(0,0,0,0.5)50%),url("images/opt-lasers-7NvkRlTzLZE-unsplash-1200x800.png");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    min-height: 100vh;
     padding-bottom: 2450px;}
.About{
    width: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.About h1{
    font-size: 62px;
}
.About p{
    font-size: 14px;
    color: white;
}
.info{
    width: 90%;
    position: absolute;
    top: 120%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.info h1{
    font-size: 62px;
}
.info p{
    font-size: 14px;
    color: white;
}
.hero1 {
    display: inline-block;
    text-decoration: none;
    color: white;
    border: 1px solid slategray;
    margin-top: 50px;
    padding: 19px 34px;
    font-size: 20px;
    background: transparent;
    position: relative;
    cursor: pointer;
}
.hero1:hover{
    border: 1px solid slategray;
    background-color: slategray;
    transition: 1s;
}
.team-section {
    position: absolute;
    top: 240%;
    left: 50%;
    transform: translate(-50%, -30%);
  color: white;
  text-align: center;
  backdrop-filter: blur(5px);
  background: rgba(0, 0, 0, 0.5);
  padding: 40px;
  border-radius: 15px;
}
.team-section h2 {
  font-size: 40px;
  color: yellow;
  margin-bottom: 20px;
}
.team {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}
.member {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
  width: 250px;
  backdrop-filter: blur(8px);
}
.advisor {
  margin-top: 50px;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 15px;
  backdrop-filter: blur(8px);
}
    .main{
        height: 1000px;}
    .menu{
   display: none;
}
    ul{
   display: none;
}
/* MATERIALS SECTION */
    .sub-main-1{
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.5)50%,rgba(0,0,0,0.5)50%),url("images/istockphoto-178981530-612x612.jpg");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    min-height: 500vh;
    padding-bottom: 6900px;
}
#materials {
    position: absolute;
    top: 490%;
    left: 50%;
    transform: translate(-50%, -30%);
  padding: 60px 20px;
  text-align: center;
  color: white;
  width: 90%;
  margin: 0 auto;
}

#materials h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

/* Material category container */
.material-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 25px;
  margin-bottom: 70px;
text-decoration: none;
}

.material-item h3 {
  font-size: 2rem;
  margin-bottom: 25px;
  color: lightskyblue;
}

/* Sub-items container */
.sub-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

/* Single material card */
.sub-item {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 15px;
  width: 250px;
  padding: 15px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.sub-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
text-decoration: none;
}

/* Hover effect: zoom and shadow */
.sub-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 180, 255, 0.5);
}

.sub-item:hover img {
  transform: scale(1.08);
}

/* Material name Amazon link */
.sub-item h4 {
  margin-top: 10px;
  font-size: 1.2rem;
}

.sub-item h4 a {
  color: #ffcc66;
  text-decoration: none;
  transition: color 0.3s, text-decoration 0.3s;
}

.sub-item h4 a:hover {
  color: #00b4ff;
  text-decoration: underline;
}

.sub-item p {
  font-size: 0.9rem;
  color: #ddd;
  margin-top: 5px;
}
/* HOW IT WORKS SECTION */
.how-it-works {
  padding: 100px 50px;
  background: linear-gradient(to top, rgba(0,0,0,0.6)50%,rgba(0,0,0,0.6)50%), url("images/istockphoto-178981530-612x612.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  text-align: center;
}

.how-it-works h1 {
  font-size: 60px;
  margin-bottom: 30px;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.step {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  width: 300px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease;
text-decoration: none;
}

.step:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.2);
}

.step img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.step h2 {
  margin: 15px 0 10px;
  color: #FFD700;
    text-decoration: none;
}

.step p {
  font-size: 16px;
  color: #f5f5f5;
text-decoration: none;
    }}
@media (max-width: 431px) {
         .icon {
    background-image: url("images/logo4.png");
           width: 300px;}
    .menu-toggle {
        font-size: 20px;
        top: 35px;
    right: 11px;}
 .sub-main{
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.5)50%,rgba(0,0,0,0.5)50%),url("images/opt-lasers-7NvkRlTzLZE-unsplash-1200x800.png");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    min-height: 100vh;
     padding-bottom: 2700px;}
.About{
    width: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.About h1{
    font-size: 62px;
}
.About p{
    font-size: 14px;
    color: white;
}
.info{
    width: 90%;
    position: absolute;
    top: 120%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.info h1{
    font-size: 62px;
}
.info p{
    font-size: 14px;
    color: white;
}
.hero1 {
    display: inline-block;
    text-decoration: none;
    color: white;
    border: 1px solid slategray;
    margin-top: 50px;
    padding: 19px 34px;
    font-size: 20px;
    background: transparent;
    position: relative;
    cursor: pointer;
}
.hero1:hover{
    border: 1px solid slategray;
    background-color: slategray;
    transition: 1s;
}
.team-section {
    position: absolute;
    top: 240%;
    left: 50%;
    transform: translate(-50%, -30%);
  color: white;
  text-align: center;
  backdrop-filter: blur(5px);
  background: rgba(0, 0, 0, 0.5);
  padding: 40px;
  border-radius: 15px;
}
.team-section h2 {
  font-size: 40px;
  color: yellow;
  margin-bottom: 20px;
}
.team {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}
.member {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
  width: 250px;
  backdrop-filter: blur(8px);
}
.advisor {
  margin-top: 50px;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 15px;
  backdrop-filter: blur(8px);
}
    .main{
        height: 1000px;}
    .menu{
   display: none;
}
    ul{
   display: none;
}
/* MATERIALS SECTION */
    .sub-main-1{
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.5)50%,rgba(0,0,0,0.5)50%),url("images/istockphoto-178981530-612x612.jpg");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    min-height: 502vh;
    padding-bottom: 6900px;
}
#materials {
    position: absolute;
    top: 500%;
    left: 50%;
    transform: translate(-50%, -30%);
  padding: 60px 20px;
  text-align: center;
  color: white;
  width: 90%;
  margin: 0 auto;
}

#materials h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

/* Material category container */
.material-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 25px;
  margin-bottom: 70px;
text-decoration: none;
}

.material-item h3 {
  font-size: 2rem;
  margin-bottom: 25px;
  color: lightskyblue;
}

/* Sub-items container */
.sub-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

/* Single material card */
.sub-item {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 15px;
  width: 250px;
  padding: 15px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.sub-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
text-decoration: none;
}

/* Hover effect: zoom and shadow */
.sub-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 180, 255, 0.5);
}

.sub-item:hover img {
  transform: scale(1.08);
}

/* Material name Amazon link */
.sub-item h4 {
  margin-top: 10px;
  font-size: 1.2rem;
}

.sub-item h4 a {
  color: #ffcc66;
  text-decoration: none;
  transition: color 0.3s, text-decoration 0.3s;
}

.sub-item h4 a:hover {
  color: #00b4ff;
  text-decoration: underline;
}

.sub-item p {
  font-size: 0.9rem;
  color: #ddd;
  margin-top: 5px;
}
/* HOW IT WORKS SECTION */
.how-it-works {
  padding: 100px 50px;
  background: linear-gradient(to top, rgba(0,0,0,0.6)50%,rgba(0,0,0,0.6)50%), url("images/istockphoto-178981530-612x612.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  text-align: center;
}

.how-it-works h1 {
  font-size: 60px;
  margin-bottom: 30px;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.step {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  width: 300px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease;
text-decoration: none;
}

.step:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.2);
}

.step img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.step h2 {
  margin: 15px 0 10px;
  color: #FFD700;
    text-decoration: none;
}

.step p {
  font-size: 16px;
  color: #f5f5f5;
text-decoration: none;
    }}
@media (max-width: 380px) {
         .icon {
    background-image: url("images/logo4.png");
           width: 300px;}
    .menu-toggle {
        font-size: 20px;
        top: 35px;
    right: 11px;}
 .sub-main{
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.5)50%,rgba(0,0,0,0.5)50%),url("images/opt-lasers-7NvkRlTzLZE-unsplash-1200x800.png");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    min-height: 100vh;
     padding-bottom: 2700px;}
.About{
    width: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.About h1{
    font-size: 62px;
}
.About p{
    font-size: 14px;
    color: white;
}
.info{
    width: 90%;
    position: absolute;
    top: 120%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.info h1{
    font-size: 62px;
}
.info p{
    font-size: 14px;
    color: white;
}
.hero1 {
    display: inline-block;
    text-decoration: none;
    color: white;
    border: 1px solid slategray;
    margin-top: 50px;
    padding: 19px 34px;
    font-size: 20px;
    background: transparent;
    position: relative;
    cursor: pointer;
}
.hero1:hover{
    border: 1px solid slategray;
    background-color: slategray;
    transition: 1s;
}
.team-section {
    position: absolute;
    top: 270%;
    left: 50%;
    transform: translate(-50%, -30%);
  color: white;
  text-align: center;
  backdrop-filter: blur(5px);
  background: rgba(0, 0, 0, 0.5);
  padding: 40px;
  border-radius: 15px;
}
.team-section h2 {
  font-size: 40px;
  color: yellow;
  margin-bottom: 20px;
}
.team {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}
.member {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
  width: 250px;
  backdrop-filter: blur(8px);
}
.advisor {
  margin-top: 50px;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 15px;
  backdrop-filter: blur(8px);
}
    .main{
        height: 1000px;}
    .menu{
   display: none;
}
    ul{
   display: none;
}
/* MATERIALS SECTION */
    .sub-main-1{
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.5)50%,rgba(0,0,0,0.5)50%),url("images/istockphoto-178981530-612x612.jpg");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    min-height: 502vh;
    padding-bottom: 6700px;
}
#materials {
    position: absolute;
    top: 500%;
    left: 50%;
    transform: translate(-50%, -30%);
  padding: 60px 20px;
  text-align: center;
  color: white;
  width: 90%;
  margin: 0 auto;
}

#materials h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

/* Material category container */
.material-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 25px;
  margin-bottom: 70px;
text-decoration: none;
}

.material-item h3 {
  font-size: 2rem;
  margin-bottom: 25px;
  color: lightskyblue;
}

/* Sub-items container */
.sub-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

/* Single material card */
.sub-item {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 15px;
  width: 250px;
  padding: 15px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.sub-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
text-decoration: none;
}

/* Hover effect: zoom and shadow */
.sub-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 180, 255, 0.5);
}

.sub-item:hover img {
  transform: scale(1.08);
}

/* Material name Amazon link */
.sub-item h4 {
  margin-top: 10px;
  font-size: 1.2rem;
}

.sub-item h4 a {
  color: #ffcc66;
  text-decoration: none;
  transition: color 0.3s, text-decoration 0.3s;
}

.sub-item h4 a:hover {
  color: #00b4ff;
  text-decoration: underline;
}

.sub-item p {
  font-size: 0.9rem;
  color: #ddd;
  margin-top: 5px;
}
/* HOW IT WORKS SECTION */
.how-it-works {
  padding: 100px 50px;
  background: linear-gradient(to top, rgba(0,0,0,0.6)50%,rgba(0,0,0,0.6)50%), url("images/istockphoto-178981530-612x612.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  text-align: center;
}

.how-it-works h1 {
  font-size: 60px;
  margin-bottom: 30px;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.step {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  width: 300px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease;
text-decoration: none;
}

.step:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.2);
}

.step img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.step h2 {
  margin: 15px 0 10px;
  color: #FFD700;
    text-decoration: none;
}

.step p {
  font-size: 16px;
  color: #f5f5f5;
text-decoration: none;
    }}
@media (max-width: 320px) {
        .main{
        height: 1000px;}
    .menu{
   display: none;
}
    ul{
   display: none;
}
    .icon {
    background-image: url("images/logo4_320.png");
    width: 250px;  /* Smallest size */
}
      .menu-toggle {
        font-size: 20px;
        top: 35px;
    right: 11px;}
 .sub-main{
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.5)50%,rgba(0,0,0,0.5)50%),url("images/opt-lasers-7NvkRlTzLZE-unsplash-1200x800.png");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    min-height: 100vh;
    padding-bottom: 2450px;
       .icon {
    background-image: url("images/logo4_320.png");
           width: 240px;}
        .menu-toggle {
        font-size: 20px;
        top: 35px;
    right: 33px;}
}
.About{
    width: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.About h1{
    font-size: 62px;
}
.About p{
    font-size: 14px;
    color: white;
}
.info{
    width: 90%;
    position: absolute;
    top: 120%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.info h1{
    font-size: 62px;
}
.info p{
    font-size: 14px;
    color: white;
}
.hero1 {
    display: inline-block;
    text-decoration: none;
    color: white;
    border: 1px solid slategray;
    margin-top: 50px;
    padding: 19px 34px;
    font-size: 20px;
    background: transparent;
    position: relative;
    cursor: pointer;
}
.hero1:hover{
    border: 1px solid slategray;
    background-color: slategray;
    transition: 1s;
}
.team-section {
    position: absolute;
    top: 240%;
    left: 50%;
    transform: translate(-50%, -30%);
  color: white;
  text-align: center;
  backdrop-filter: blur(5px);
  background: rgba(0, 0, 0, 0.5);
  padding: 40px;
  border-radius: 15px;
}
.team-section h2 {
  font-size: 40px;
  color: yellow;
  margin-bottom: 20px;
}
.team {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}
.member {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
  width: 250px;
  backdrop-filter: blur(8px);
}
.advisor {
  margin-top: 50px;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 15px;
  backdrop-filter: blur(8px);
}

.sub-main-1{
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.5)50%,rgba(0,0,0,0.5)50%),url("images/istockphoto-178981530-612x612.jpg");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    min-height: 500vh;
    padding-bottom: 6500px;
}
#materials {
    position: absolute;
    top: 520%;
    left: 50%;
    transform: translate(-50%, -30%);
  padding: 60px 20px;
  text-align: center;
  color: white;
  width: 90%;
  margin: 0 auto;
}

#materials h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

/* Material category container */
.material-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 25px;
  margin-bottom: 70px;
text-decoration: none;
}

.material-item h3 {
  font-size: 2rem;
  margin-bottom: 25px;
  color: lightskyblue;
}

/* Sub-items container */
.sub-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

/* Single material card */
.sub-item {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 15px;
  width: 250px;
  padding: 15px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.sub-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
text-decoration: none;
}

/* Hover effect: zoom and shadow */
.sub-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 180, 255, 0.5);
}

.sub-item:hover img {
  transform: scale(1.08);
}

/* Material name Amazon link */
.sub-item h4 {
  margin-top: 10px;
  font-size: 1.2rem;
}

.sub-item h4 a {
  color: #ffcc66;
  text-decoration: none;
  transition: color 0.3s, text-decoration 0.3s;
}

.sub-item h4 a:hover {
  color: #00b4ff;
  text-decoration: underline;
}

.sub-item p {
  font-size: 0.9rem;
  color: #ddd;
  margin-top: 5px;
}
/* HOW IT WORKS SECTION */
.how-it-works {
  padding: 100px 50px;
  background: linear-gradient(to top, rgba(0,0,0,0.6)50%,rgba(0,0,0,0.6)50%), url("images/istockphoto-178981530-612x612.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  text-align: center;
}

.how-it-works h1 {
  font-size: 60px;
  margin-bottom: 30px;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.step {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  width: 300px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease;
text-decoration: none;
}

.step:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.2);
}

.step img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.step h2 {
  margin: 15px 0 10px;
  color: #FFD700;
    text-decoration: none;
}

.step p {
  font-size: 16px;
  color: #f5f5f5;
text-decoration: none;
    }}