* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  body {
    background: linear-gradient(to right, #ebeeeb, #9cb1b1);
    color: #333;
    overflow-x: hidden;
    color: #fcf9f9;
  
  }



/* Background Animation */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
  }
  
  .circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(100, 149, 237, 0.1);
    animation: float 15s infinite linear;
  }
  
  .circle:nth-child(1) {
    width: 300px;
    height: 300px;
    top: -50px;
    left: -50px;
    animation-delay: 0s;
  }
  
  .circle:nth-child(2) {
    width: 200px;
    height: 200px;
    top: 20%;
    left: 80%;
    animation-delay: 2s;
    animation-duration: 12s;
  }
  
  .circle:nth-child(3) {
    width: 250px;
    height: 250px;
    top: 60%;
    left: 10%;
    animation-delay: 4s;
    animation-duration: 18s;
  }
  
  .circle:nth-child(4) {
    width: 150px;
    height: 150px;
    top: 80%;
    left: 70%;
    animation-delay: 1s;
    animation-duration: 10s;
  }
  
  .circle:nth-child(5) {
    width: 100px;
    height: 100px;
    top: 30%;
    left: 50%;
    animation-delay: 3s;
    animation-duration: 8s;
  }
  
  @keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
    }
  }



  /* Header Styles */
.header {
  background-color: #2b2b39;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
  from {
      transform: translateY(-100%);
  }
  to {
      transform: translateY(0);
  }
}

.logo h1 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f6fafa;
  cursor: pointer;
  transition: color 0.3s;
}

.logo h1 a:hover {
  color: #386044;
}

.logo h1 a {
  color: #f4efef;
  text-decoration: none;
}























.navbar {
    background: linear-gradient(135deg, #080000, #24394e);
    color: white;
    padding: 1rem 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;

}

.navbar-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: rgb(180, 226, 219);
    text-decoration: none;
    transition: all 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.navbar-search {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 0.3rem 0.5rem;
    transition: all 0.3s ease;
}

.navbar-search:focus-within {
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.4);
}

.search-input {
    border: none;
    background: transparent;
    padding: 0.5rem 1rem;
    color: white;
    width: 200px;
    outline: none;
    font-size: 1rem;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.search-button {
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-button:hover {
    transform: scale(1.1);
}

.navbar-menu {
    display: flex;
    list-style: none;
}

.navbar-item {
    margin-left: 1.5rem;
}

.navbar-link {
    color: rgb(231, 222, 222);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.navbar-link:hover {
    opacity: 0.8;
}

.navbar-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: white;
    transition: width 0.3s ease;
}

.navbar-link:hover::after {
    width: 100%;
}

.navbar-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
}

.toggle-bar {
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}
.lol {
  color: #efdede;
  gap: 20px;
  
}
/* Mobile Styles */
@media (max-width: 600px) {
  .navbar-container {
      flex-wrap: wrap;
      padding: 0rem 0rem; 
  }
  
  .navbar-search {
      order: 3;
      width: 100%;
      margin-top: 1rem;
      display: none;
  }
  
  .navbar-menu {
      flex-direction: column;
      width: 100%;
      background: rgba(0, 0, 0, 0.1);
      border-radius: 10px;
      padding: 1rem;
      margin-top: 1rem;
      display: none;
  }
  
  .navbar-menu.active {
      display: flex;
  }
  
  .navbar-search.active {
      display: flex;
  }
  
  .navbar-item {
      margin: 0.5rem 0;
      text-align: center;
  }
  
  .navbar-toggle {
      display: flex;
  }
  
  .navbar-toggle.active .toggle-bar:nth-child(1) {
      transform: translateY(9px) rotate(45deg);
  }
  
  .navbar-toggle.active .toggle-bar:nth-child(2) {
      opacity: 0;
  }
  
  .navbar-toggle.active .toggle-bar:nth-child(3) {
      transform: translateY(-9px) rotate(-45deg);
  }
}




  



/*assam*/

.ami {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
  margin: 10px auto 50px auto;
  max-width: 1000px;
  padding: 0rem;
  border-radius: 0px;
  text-align: center;
}



.par {
 /* background-color: #050303;*/
  padding: 20px;
  color: #213a3e;
}






/*table*/


.sem {
  background-color: #13442f;
  text-align: center;
}







.container {
  max-width:800px;
  margin: 0 auto;
  background-color: rgb(146, 238, 223);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.section-bar {
  background-color: #3498db;
  color: rgb(244, 232, 232);
  padding: 8px 10px;
  text-align: center;
}

.section-bar h2 {
  margin: 0;
  font-size: 1.5em;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 10px 0;
}

th, td {
  padding: 10px 50px;
  text-align: left;
  border-bottom: 1px solid #070404;
  color: #170c0c;
}

th {
  background-color: #161212;
  font-weight: bold;
}

.tr {
  color: #000;
}

tr:hover {
  background-color: #f9f9f9;*/
}

.button-container {
  text-align: center;
  padding: 20px;
  display: block;
}

.click-button {
  position: relative;
  gap: 20PX;
  padding: 10px 49.3px;
  background-color: #356be9;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.click-button:hover {
  background-color: #27ae60;
}


.click-button1:hover {
  background-color: #aac658;
}


.click-button1 {
  position: relative;
  gap: 20PX;
  padding: 10px 49.3px;
  background-color: #8241cc;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: background-color 0.3s;
}
.click-button1:hover {
  background-color: #437257;
}




.click-button2 {
  position: relative;
  gap: 20PX;
  padding: 10px 49.3px;
  background-color: #2e9dcc;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: background-color 0.3s;
}
.click-button2:hover {
  background-color: #d07a3e;
}










/* Footer Styles */
footer {
    color: rgb(244, 243, 248);
    padding: 4rem 4rem 0;
    background-color: #050111;
  }
  
  .footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 2rem;
  }
  
  .footer-section {
    width: 30%;
    margin-bottom: 2rem;
    
  }
  
  .footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #f5f4f7;
    text-decoration: underline;
  }
  
  .footer-section ul li {
    margin-bottom: 0.8rem;
    list-style: none;
  }
  
  .footer-section ul li a {
    text-decoration: none;
    color: #51ac9e;
    transition: all 0.3s;
  }
  
  .footer-section ul li a:hover {
    color: #f8f9fe;
    padding-left: 5px;
  }
  
  .footer-section p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    color: #bacff8;
  }
  
  .footer-section p i {
    margin-right: 10px;
    color: rgb(248, 246, 246);
  }
 
  .social-icons a:hover {
    background-color: #5458d2;
    transform: translateY(-3px);
    color: white;
  }
  
  .footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    color: rgba(239, 240, 238, 0.7);
    font-size: 0.9rem;
    background-color: #050303;
    height: 100%;
    margin: 100;
    padding: 100;
  
  }





  /* Responsive Styles */
@media (max-width: 992px) {

   
      
      .nav-links {
          gap: 1rem;
      }
      
      .footer-section {
          width: 45%;
      }
    }

   






    @media (max-width: 992px) {
        .header {
            padding: 1.5rem;
        }
        
        .logo h1 {
            font-size: 1.5rem;
        }
        
        h2 {
            font-size: 2rem;
        }
        
        h3 {
            font-size: 1.5rem;
        }
        
        .footer-content {
            flex-direction: column;
            gap: 1.5rem;
        }
        
        .footer-section {
            width: 100%;
        text-align: center;
        }
      
        .footer-section p {
          text-align: center;
        }
        .grid-item {
            width: 700px;
            height: 80px;
    
        }
    

    
    }
  }


    @media (max-width: 787px) {

      .click-button {
        position: relative;
        
        padding: 10px 35px;
    
      }



    }
  


    @media (max-width: 721px) {
      .grid-item {
        width: 500px;
        height: 80px;

    }

    .text{
      text-align: center;
      text-decoration: underline;
      font-size: 20%;
    }
  


  .click-button {
    position: relative;
    gap: 20PX;
    padding: 10px 20px;

  }




  .click-button1 {
    position: relative;
    gap: 20PX;
    padding: 10px 20px;

  }

}





    
@media (max-width: 600px) {
    .header {
        padding: 1.5rem;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-section {
        width: 100%;
    text-align: center;
    }
  
    .footer-section p {
      text-align: center;
    }
    .grid-item {
        width: 400px;
        height: 80px;

    }
    .text{
      text-align: center;
      text-decoration: underline;
      font-size: x-large;
    }


  .click-button {
    position: relative;

    padding: 10px 28px;
  }

    .click-button1 {
      position: relative;
  
      padding: 10px 28px;
    }


    .click-button2 {
      position: relative;
      gap: 20PX;
      padding: 10px 10px;
  }
  .nav-links {
    display: flex;
    gap: 1rem;
  }

  .nav-link {
    text-decoration: none;
    color: #9de2e8;
    font-weight: 300;
    position: relative;
    padding: 0.1rem 0;
    transition: color 0.3s;
  }

  .container {
  max-width:800px;
  margin: 0 auto;
  background-color: rgb(251, 233, 233);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
  .ami {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 50px;
  margin: 10px auto 50px auto;
  max-width: 10000px;
  padding: 0rem;
  border-radius: 0px;
  text-align: center;
}



.par {
 /* background-color: #050303;*/
  padding: 10px;
  color: #213a3e;
}

}






@media (max-width: 560px) {

  .nav-links {
    display: none;
    gap: 0.5rem;
  }
  .nav-link {
    text-decoration: none;
    color: #9de2e8;
    font-weight: 100;
    position: relative;
    padding: 0.1rem 0;
    transition: color 0.3s;
  }

  .click-button {
    position: relative;

    padding: 8px 5px;
  }

    .click-button1 {
      position: relative;
  
      padding: 7px 5px;
    }


    .click-button2 {
      position: relative;
      gap: 20PX;
      padding: 7px 5px;
  }
}



















@media (max-width: 377px) {

  .nav-links {
    display: none;
    gap: 0.5rem;
  }
  .nav-link {
    text-decoration: none;
    color: #9de2e8;
    font-weight: 100;
    position: relative;
    padding: 0.1rem 0;
    transition: color 0.3s;
  }

  .click-button {
    position: relative;

    padding: 7px 5px;
  }

    .click-button1 {
      position: relative;
  
      padding: 7px 5px;
    }


    .click-button2 {
      position: relative;
      gap: 20PX;
      padding: 7px 5px;
  }
}


@media (max-width: 321px) {

  .nav-links {
    display: none;
    gap: 0.5rem;
  }
  .nav-link {
    text-decoration: none;
    color: #9de2e8;
    font-weight: 100;
    position: relative;
    padding: 0.1rem 0;
    transition: color 0.3s;
  }

  .click-button {
    position: relative;

    padding: 10px 5px;
  }

    .click-button1 {
      position: relative;
  
      padding: 10px 5px;
    }


    .click-button2 {
      position: relative;
      gap: 20PX;
      padding: 10px 5px;
  }
}




















  




.wer {

  text-align: center;
  color: #1e5f6a;
  padding: 7px;

}