
*{
    margin: 0;
    padding: 0;
    img {
        max-width: 100%;
        height: auto;
      }
      
}
body{
    background-color: rgb(1,1,14);
    font-family: 'Times New Roman', Times, serif;
    color: white;
    box-sizing: border-box;
}
nav{
    position: fixed;
    width: 100%;
    display: flex;
    justify-content: space-between;
    background-color: rgb(1,1,14);
    padding: 22px;
    box-shadow: 0px 2px 6px 2px rgb(31,30,30);
    color: white;
}
nav ul li a{
    margin-inline: 22px;
    text-decoration: none;
    color: white;
}
ul li{
    list-style: none;
}
nav ul{
    margin-right: 63px;
    margin-top: 6px;
}
.logo{
    font-size: 25px;
    margin-left: 33px;
    color: rgb(42,250,42);

}

ul li button{
    width: 100px;
    height: 33px;
    background-color: rgb(4,180,4);
    border: none;
    color: white;
    font-size: 18px;
}
ul li button:hover{
    border: 2px solid white;
    background-color: transparent;
    color: rgb(2o, 251,20);
    cursor: pointer;
}
ul li a:hover{
    color: rgb(2o,251,20);
    border-bottom: 2px solid rgb(20,251,20);
}


/* main */

.home{
    display: flex;
    justify-content: center;
}
.home img{
    width: 60%;
    margin-top: 130px;
    /* margin-left: -174px; */
}
.home .homeText{
    margin-top: 200px;
    margin-left: 44px;

}
.homeText h1{
    font-size: 85px;
    color: grb(55,248,55);
}
.homeText h3{
    margin-top: 22px;
    font-size: 22px;
}
.homeText p{
    margin-top: 22px;
    color: silver;
}

.homeText button{
    margin-top: 22px;
    font-size: 22px;
    width: 140px;
    height: 40px;
    background-color: green;
    color: white;
    border: none;
}
.homeText button:hover{
    border: 2px solid white;
    color: rgb(21, 208, 21);
    background-color: transparent;
}

.head{
    text-align: center;
    padding: 95px;

}
.head span{
    color: rgb(20,251,20);
    
}

.ourProgram{
    display: flex;
    justify-content: center;

}
.ourProgram .card{
    margin-inline: 22px;
    text-align: center;

}
.ourProgram .card img {
    width: 90%;
    height: auto;
  }
  
.ourProgram .card img:hover{
    width: 100%;
    height: 100%;
    transition: 0.7s ease-in-out ;
    cursor: pointer;
    
}

/* Plan */
.ourPlan{
    display: flex;
    justify-content: center;

}
.ourPlan .card{
    width: 300px;
    height: 400px;
    padding: 4px;
    background-color: rgb(36,35,35);
    text-align: center;
    margin-inline: 22px;
}
.card i{
    font-size: 22px;
    margin-top: 22px;
    color: orange;
}
.card h3{
    margin-top: 22px;
    color: rgb(38, 231, 38);

}
.card h1{
    margin-top: 22px;
    color: rgb(38, 231, 38);
}
.card p{
    margin-top: 12px;
    color: silver;
}
.card button{
    margin-top: 22px;
    width: 130px;
    height: 38px;
    background-color: orange;
    border: none;
    color: white;
    font-size: 18px;

}
.card button:hover{
    border:2px solid white ;
    color: rgb(20,251,20);
    cursor: pointer;
    background-color: transparent;
}
.card:hover{
    transition: 0.7s ease;
    width: 290px;
    height: 360px;
    background-color:black;
    font-size: 19px;
    cursor: pointer;
}

/* Blog Section  */
.ourBlog{
    display: flex;
    justify-content: center;
}
.ourBlog .blogCard{
    width: 300px;
    margin-inline: 22px;
    background-color: rgb(42, 41, 41);
    
}
.blogCard img{
    width:100% ;
    
}
.blogCard p{
    margin-top: 22px;

}
.blogText a{
    text-decoration: none;
    width: 90px;
    padding: 11px;
    background-color: green;
    color: white;
    position: absolute;
    margin-top: 22px;
   cursor: pointer;
    

}
.blogText {
    margin-top: 11px;
    margin-left: 6px;
}

/* Contact Us section */
.contactPage{
    display: flex;
    justify-content: center;
}
.contactText{
    margin-right: 90px;
    color: rgb(33, 212, 33);
    margin-top: 200px;
    font-size: 32px;


}
.contactPage img{
    width: 700px;
    height: 600px;
}

.contactUs{
    text-align: center;
    margin-top: 22px;
}
.contactUs input{
    width: 330px;
    height: 30px;
    border-radius: 2px;
    padding: 8px;
    border: none;
    font-size: 22px;
    margin-top: 18px;

}
.contactUs button{
    width: 360px;
    height: 45px;
    color: white;
    background-color: rgb(86, 225, 86);
    font-size: 22px;
    border-radius: 2px;
    margin-top: 22px;
}
.contactUs button:hover{
    border: 2px solid white ;
    background-color: transparent;
    color: rgb(7, 147, 7);
}

.footer{
    display: flex;
    justify-content: center;
    margin-top: 33px;
    padding: 22px;
    box-shadow: 0px 2px 6px 4px rgb(48, 47, 47);

}
.footer .footerText{
    margin-inline: 53px;
    margin-top: 33px;
}
.footer .footerText p{
margin-top: 11px;
color: silver;
}

/* ---------- Responsive Styles ---------- */

/* For tablets and small laptops */
@media (max-width: 992px) {
    nav ul li a {
      margin-inline: 10px;
      font-size: 14px;
    }
  
    .home {
      flex-direction: column;
      text-align: center;
    }
  
    .home img {
      width: 80%;
      margin-top: 40px;
    }
  
    .homeText h1 {
      font-size: 48px;
    }
  
    .ourProgram, .ourPlan, .ourBlog, .footer {
      flex-wrap: wrap;
    }
  
    .card {
      margin: 20px;
    }
  
    .contactPage {
      flex-direction: column;
      align-items: center;
    }
  
    .contactPage img {
      width: 80%;
      height: auto;
    }
  
    .contactText {
      margin-top: 60px;
      text-align: center;
    }
  }
  
  /* For mobile phones */
  @media (max-width: 600px) {
    nav {
      flex-direction: column;
      align-items: center;
    }
  
    nav ul {
      display: flex;
      flex-direction: column;
      text-align: center;
    }
  
    nav ul li a {
      display: block;
      padding: 10px;
    }
  
    .homeText h1 {
      font-size: 36px;
    }
  
    .homeText h3 {
      font-size: 18px;
    }
  
    .ourProgram, .ourPlan, .ourBlog {
      flex-direction: column;
      align-items: center;
    }
  
    .card {
      width: 90%;
    }
  
    .footer {
      flex-direction: column;
      text-align: center;
    }
  
    .footer .footerText {
      margin-inline: 0;
      margin-bottom: 20px;
    }
  
    .contactUs input,
    .contactUs button {
      width: 90%;
    }
  }

  

  /* ---------- Hamburger Menu ---------- */
.menu-icon {
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
    margin-right: 20px;
  }
  
  @media (max-width: 768px) {
    .menu-icon {
      display: block;
    }
    nav ul {
        transition: all 0.3s ease-in-out;
      }
      
  
    nav ul {
      display: none;
      flex-direction: column;
      width: 100%;
      background-color: rgb(1, 1, 14);
      text-align: center;
    }
  
    nav ul li {
      display: flex;
      flex-direction: column;
    }
  
    nav ul li a {
      padding: 15px 0;
      font-size: 18px;
    }
  
    nav ul li button {
      margin: 10px auto;
    }
  
    nav ul.active {
      display: flex;
    }
  }
  
