/* Navbar styles */
body {
  /* margin-top: 120px; */
  font-family: Arial, sans-serif;
  /* margin-bottom: 3rem; */
}

.main-heading{
  font-weight: bold;
}

header {
  background-color: #8ECE19;
  position: fixed;
  top: 0;
  left: 0;
  font-weight: bold;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 10%;
}

header .sticky {
  background: white;
  border-bottom: 1px solid #8ECE19;
  padding: 12px 10%;
}

.logo {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-color);
}

span {
  color: rgb(17, 17, 17);
}

.navlist {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.navlist a {
  color: var(--text-color);
  font-weight: 500;
  padding: 12px 12px;
  text-decoration: none;
  text-transform: uppercase;
}

.navlist a:hover {
  color: var(--hover-color);
  text-shadow: 0 0 10px rgba(5, 138, 38, 0.6),
      0 0 20px rgba(18, 247, 255, 0.6),
      0 0 30px rgba(18, 247, 255, 0.6),
      0 0 40px rgba(18, 247, 255, 0.6),
      0 0 70px rgba(18, 247, 255, 0.6),
      0 0 80px rgba(18, 247, 255, 0.6),
      0 0 100px rgba(18, 247, 255, 0.6),
      0 0 150px rgba(18, 247, 255, 0.6), ;
}

.navlist a.active {
  color: var(--hover-color);
}

#menu-icon {
  font-size: 1.8rem;
  z-index: 1001;
  cursor: pointer;
  background: var(--hover-color);
  border-radius: 3px;
  color: var(--secon-bg-color);
  display: none;
}

.navlist a.active {
  color: var(--hover-color);
}

section {
  padding: 100px 10%;
  /* background-color: rgb(61, 25, 61); */
}






@media (max-width:768px) {

  header,
  header.scticky {
      padding: 15px 5%;
  }

  .navlist a {
      padding: 8px 15px;
  }


  :root {
      --big-font: 2.2rem;
      --normal-font: 1.8rem;
      --neon-box-shadow: 0 0 .8rem #12f7ff;
      --h2-font: 3rem;
  }

  
}

/* drop */
.dropdown-content {
  display: none;
  position: absolute;
  /* background-color: #fff; */
  /* box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2); */
  z-index: 1;
  width: 250px;
  /* border: 2px solid red; */
  height: max-content;
  padding: 0 3px 3px 3px;
  background-color: #f4fdff;
  border-radius: 0 0 20px 20px;
}

.navlist li:hover .dropdown-content {
  display: block;
}

.dropdown-content a {
  color: rgb(14, 4, 4);
  padding: 5px 10px;
  text-decoration: none;
  display: block;
  text-align: left;
  width: 100% ;
  border-radius: 20px;
  transition: background-color 0.3s ease-in-out;
}

.dropdown-content li:hover {
  border-radius: 20px;

  background-color: #f5f4f4;
}

.ull {
  list-style-type: cirlcle !important;
  /* border: 2px solid blue; */
  /* height: 100%; */
  padding: 0;
  width: 100%;
}

* {
  padding: 0;
  /* margin: 0; */
  box-sizing: border-box;
  list-style: none;
  scroll-behavior: smooth;
  text-decoration: none;

}


.listDropdown {
  /* margin: 10px 0; */
  margin: 2px 0;
  width: 100%;
  /* border: 2px solid; */
}

@media (max-width:768px) {
  #menu-icon {
      display: block;
      transition: all .9s ease;
      /* display:block; */
  }

  #menu-icon.bx-x {
      transform: rotate(-180deg);
  }

  .logo {
      font-size: 16px;
  }

  .navlist {
      display: block;
      position: absolute;
      top: -1000px;
      right: 0;
      left: 0;
      flex-direction: column;
      background-color: var(--bg-color);
      text-align: left;
      padding: 10px;
      transition: all .10s ease;
  }

  .navlist a {
      display: block;
      padding-bottom: 1rem;
      font-size: 1rem;
  }

  .navlist.open {
      top: 100%;
  }
  
}

/* heading Animation */
.heading {
  text-align: center;
  padding: 80px 20px;
  background-color: #f2f2f2;
  justify-content: center; 
}

#main-heading {
  font-size: 35px;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: bold;
}

#sub-heading {
  font-size: 25px;
  line-height: 1.6;
  margin-top: 2rem;
  text-transform: lowercase;
  font-weight: lighter;
}



/* info card  */
.container {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 40px;
  margin-top: 120px;
  justify-content: center;
  align-items: center;
  float: center;
  margin-bottom: 3rem;
}

.info-card {
  background-color: #fff;
  box-shadow: 0 4px 8px #8ECE19;
  border: 1px solid #9bebac;
  border-radius: 8px;
  overflow: hidden;
}

.info-card-header {
  background-color: #8ECE19;
  color: black;
  padding: 10px;
  text-align: center;
}

.info-card-body {
font-family: Poppins, sans-serif;
padding: 20px;
text-align: justify-center;
}

.login-button {
  background-color: #8ECE19;
  color: white;
  /* width: 80px; */
  font-weight: 300px;
  padding: 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
  text-decoration: none;
}

.login-button:hover {
  background-color: #0b3b0d;
}

@media (max-width: 768px) {
  .container{
    justify-content: center;
    margin-left: 4rem;
    margin-right: 2rem;
  }
  .info-card {
    padding: 10px;
    width: 300px; 
    justify-content: center;
    margin-left: rem;
  }

  .info-card-header h3 {
    font-size: 1.2rem;
  }

  .info-card-body p {
    font-size: 0.9rem;
  }

  .info-card-body a {
    font-size: 0.9rem;
  }
}

/* form  */

.container2 {
  width: 100%;
  max-width: 400px;
  /* width: 600px; */
  margin-top: 30px;
  margin: 50px auto;
  
  padding: 20px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2 {
  text-align: center;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 15px;
}

label {
  display: block;
  margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #5c5959;
  border-radius: 5px;
}

button {
  width: 100%;
  padding: 10px;
  background-color: #8ECE19;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #074201;
}

.hidden {
  display: none;
}

#success-message {
  text-align: center;
  background-color: #5cb85c;
  color: #fff;
  padding: 10px;
  border-radius: 5px;
}

/* footer */

.footer {
  background-color: #77d65a;
  color: #8ECE19;
  padding-top: 50px;
}

.container3 {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-content: space-between;
}

.footer-content{
  margin-top: 40px;
  width: 33.3%;
}


h3{
  font-size: 20px;
  margin-bottom: 15px;
  text-align: center;
}

.footer-content p{
 width: 190px;
 margin: auto;
 padding: 7px;
}

.footer-content ul{
  text-align: center;
}

.list{
  padding: 0;
  color: black;
}

.list li{
  width: auto;
  color: black;
  text-align: center;
  text-decoration: none;
  list-style-type: none;
  padding: 7px;
  position: relative;
}

.list li::before{
  content: '';
  position: absolute;
  transform: translate(-50%,-50%);
  left: 50%;
  top: 100%;
  width: 0;
  height: 2px;
  /* background: #f3f7f3; */
  transition-duration: .5s;
}

.social-icons{
  color: white;
  font-size: 25px;
}

a{
  text-decoration: none;
}

a:hover{
  color: #0df00d;
}

.social-icons i:hover{
  color: #0df00d;
}

.bottom-bar{
  background: #0df00d;
  text-align: center;
  padding: 10px 0;
  margin-top: 50px;
}

.bottom-bar{
  color: #0df00d;
  margin: 0;
  font-size: 16px;
  padding: 7px;
}

.social-icons img {
  height: 40px;
  width: 50px;
}

/* .logo img {
  height: 50px;
  width: 50px;
  display: flexbox;
  flex-direction: row;
  margin-left: 3rem;
  margin-bottom: 2rem;
}

.social-icons a {
  display: flex;
  flex-direction: row;
  margin-left: 900px;
}

.social-icons img {
  height: 40px;
  width: auto;
  
} */

 /* @media screen and (max-width: 768px) {
  .footer-content {
      flex-direction: column;
      align-items: flex-start;
  }

  .social-icons {
      margin-top: 10px;
      
  }

  .social-icons a {
      margin-left: 0;
      margin-right: 10px;
  }
}  */

/* Media query for mobile responsiveness */
/* @media (max-width: 768px) {
  .footer-content {
    margin-left: 1rem;
    flex: 1 1 calc(25.33% - 20px); 
    max-width: calc(33.33% - 20px);
}
} */

.container3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.footer-content {
  flex: 1 1 33.33%;
  max-width: 33.33%;
  padding: 20px;
  box-sizing: border-box;
}

.social-icons {
  display: flex;
  justify-content: center;
}

.social-icons li {
  margin: 0 10px;
}

/* Media query for mobile responsiveness */
@media screen and (max-width: 768px) {
  .container3 {
      flex-direction: column;
      align-items: center;
  }

  .footer-content {
      flex: 1 1 100%;
      max-width: 100%;
      margin-bottom: 20px;
      margin-left: 3rem;
  }
}


   
   
