
    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      padding: 0%;
      box-sizing: border-box;
    }

    :root {
      --gjs-t-color-primary: #cf549e;
      --gjs-t-color-secondary: #b9227d;
      --gjs-t-color-accent: #ffb347;
      --gjs-t-color-success: #28a745;
      --gjs-t-color-warning: #ffc107;
      --gjs-t-color-error: #dc3545;
    }

    body {
      background-color: #ffffff;
      font-family: system-ui, sans-serif;
      margin: 0;
    }


    .container {
      width: 70%; 
      height: auto; 
      max-width: 70%; 
      min-width: 70%; 
      background-color: rgb(255, 255, 255); 
      display: flex; 
      direction:unset; 
      justify-content: flex-start; 
      align-items: start; 
      margin-left: 15%; 
      margin-right: 15%;
    }

   @media screen and (max-width: 480px) {
      .container {
        width: 100%;
        height: auto;
        max-width: 100%;
        min-width: 100%;
        margin: 0%;
        padding: 0%;
        
    }
  }
    

    .logo {
      height: 50px;
      display: block;
      margin: 0 auto;
    }

    .card {
      max-width: 700px;
      padding: 40px 45px;
      background-color: white;
      border-radius: 15px;
      margin: 0 auto;
    }

    .title {
      margin: 0;
      text-align: center;
    }

    


      
        .container5 {
            width: 70%;
            height: auto;
            display: space-around;
            justify-content: center;
            align-items: center;
            background-color: #ffffff;
            margin-inline: 15%;
        }
       
        @media screen and (max-width: 480px) {
            .container5 {
                width: 100%;
                height: auto;
                margin-inline: 0%;
            }
        }



            img.responsive {
            max-width: 100%;
            height: auto;
            margin: 40px;
          }

          @media (max-width: 500px) {
            img.responsive {
              width: 70px;
              margin: 15px;
            }
          }





        #top_site_name_box {
            width: 100%;
            height: 180px;
            background-color: rgb(209, 0, 0);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: row;

        }

        @media screen and (max-width: 480px) {
            #top_site_name_box {
                width: 100%;
                height: 90px;
                
                
            }
        }

      #head_site_name {
        font-size: 55px;
        color: #fff;
        font-weight: bold;
        text-align: start;
        margin-top: 10px;
      }
   
        @media screen and (max-width: 480px) {
            #head_site_name {
                font-size: 25px;
                margin-top: 4px;
            }
        }


        #head_site_name_link {
            font-size: 30px;
            color: #fff;
            text-align: start;
            text-decoration: underline;
            
        }

        @media screen and (max-width: 480px) {
            #head_site_name_link {
                font-size: 12px;
            }
        }


    

    .link {
      color: #af4e8a;
      text-decoration: none;
      font-size: 13px;
    }

   
    .toplink {
        width: 16%;
        max-width: 30%;
        height: 50px; 
        /* margin: 1px;  */
        font-size: 1.1rem; 
        font-family: Arial, sans-serif;
        font-weight: 600; 
        background-color: black; 
        color: rgb(255, 255, 255);
        border-style: none;
    }


   @media screen and (max-width: 480px) {
      .toplink {
        width: 100%;
        height: 20px; 
        /* margin: 1px;  */       
        font-size: 10px;
        margin-bottom: 5px;
        margin-top: 5px;
        border: 0px;
        border-style: none;
        
      }
    }






    .toplink:hover {
        text-decoration: underline;
        transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
        cursor: pointer;
    }
    

    
  
   

  @import url('https://fonts.googleapis.com/css?family=Roboto:700');
    
    #text-flipper-container {
        color: #999;
        text-transform: uppercase;
        font-size: 36px;
        font-weight: bold;
        width: 70%;
        min-width: 70%;
        max-width: 70%;
        margin-inline: 15%;
        height: 100px;
        display: flex;
        /* flex-direction: column; */
        justify-content: center;
        align-items: center;
        text-align: center;
        font-family: 'Roboto', sans-serif;
        position: relative;
        margin-bottom: 0%;
        margin-top: 10px;
        border-width: 1px;
        border-color: black;
        border-style: solid;
    }


    @media screen and (max-width: 480px) {
        #text-flipper-container {
            width: 100%;
            min-width: 100%;
            max-width: 100%;
            margin-inline: 0%;
            height: 27px;
            font-size: 10px;
            border-style: none;
        }
      
    }
    
    #text-flipper-animation {
        height: 50px;
        overflow: hidden;
        margin: 0 10px;
    }

    @media screen and (max-width: 480px) {
        #text-flipper-animation {
            height: 23px;
            margin: 0 4px;
        }
      
    }
    
    #text-flipper-animation > div > div {
        color: #fff;
        padding: 3px 12px;
        height: 45px;
        margin-bottom: 53px;
        display: inline-block;
    }

    @media screen and (max-width: 480px) {
        #text-flipper-animation > div > div {
            height: 20px;
            margin-bottom: 30px;
            padding: 2px 6px;
        }
      
    }
    
    #text-flipper-animation div:first-child {
        animation: flipper-show 5s linear infinite;
    }
    
    #text-flipper-animation div div {
        background: #41ce8e;
    }
    
    #text-flipper-animation div:first-child div {
        background: #21a7d8;
    }
    
    #text-flipper-animation div:last-child div {
        background: #DC143C;
    }
    
    @keyframes flipper-show {
        0% { margin-top: -270px; }
        5% { margin-top: -180px; }
        33% { margin-top: -180px; }
        38% { margin-top: -90px; }
        66% { margin-top: -90px; }
        71% { margin-top: 0px; }
        99.99% { margin-top: 0px; }
        100% { margin-top: -270px; }
    }

    @media screen and (max-width: 480px) {
        @keyframes flipper-show {
            0% { margin-top: -135px; }
            5% { margin-top: -90px; }
            33% { margin-top: -90px; }
            38% { margin-top: -45px; }
            66% { margin-top: -45px; }
            71% { margin-top: 0px; }
            99.99% { margin-top: 0px; }
            100% { margin-top: -135px; }
        }
      
    }
   
   #top_text_details_contianer {
      border-style: solid;
      border-width: 1px;
      margin-top: 20px;
      margin-bottom: 20px;
      border-color: black;

   }

   @media screen and (max-width: 480px) {
      #top_text_details_contianer {
        width: 100%;
        margin-top: 5px;
        margin-bottom: 5px;
        border-style: solid;
        border-inline: 0px;
      }
    
   }


    #top_text_details {
      width: 100%;
      background-color: white;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }




   @media screen and (max-width: 480px) {
      #top_text_details {
        width: 100%;
        height: auto;
        margin-bottom: 5px;
        margin-top: 5px;
        
      }
    
   } 
    


    #top_text_details_h1 {
      margin-top: 0%;
      margin-bottom: 0%;
      justify-content: center;
      align-items: center;
      font-family: sans-serif;
      font-size: 27px;
      font-weight: 700;
      color: rgb(37, 0, 247);
      padding-left: 20px;
      padding-top: 30px;
      text-decoration: underline;
    }

    @media screen and (max-width: 480px) {
        #top_text_details_h1 {
          font-size: 19px;
          padding-inline: 17px;
          padding-top: 9px;
        }

      }

    #top_text_details_h2 {
          font-size: 17px;
          padding-inline: 17px;
          font-family: 'Times', Courier, monospace;
          font-weight: 600;
          color: rgb(31, 30, 30);
          

        }
   
    @media screen and (max-width: 480px) {
      #top_text_details_h2 {
        font-size: 13px;
        padding-inline: 17px;
        padding-top: 4px;
        padding-bottom: 4px;
      }
      
    }

    #whats_teleg_container {
      margin-top: 40px;
      background-color: rgb(255, 255, 255);
      width: 100%;

    }
    
    @media screen and (max-width: 480px) {
      #whats_teleg_container {
        width: 100%;
        margin-top: 20px;
        background-color: rgb(255, 255, 255);
      }
      
    }


      .follow_whatsapp_telegram  {
      
      color: white;
      background-color: #15b300;
      padding: 9px;
      border-radius: 15px;
      display: flex; 
      align-items: center; 
      justify-content: center;
      gap: 5px;
      margin-left: 90px;
      margin-right: 90px;
      
    }

    .whatsapp_link {

      color: white;
      font-size: 18px;
      font-weight: 600;
      text-decoration: none;
      

    }

   
   @media screen and (max-width: 480px) {
      .follow_whatsapp_telegram {
        padding: 4px;
        border-radius: 6px;
        gap: 2px;
        margin-inline: 15px;    
   }
  }

    @media screen and (max-width: 480px) {
      .whatsapp_link {
        font-size: 9px;
        font-weight: 500;
      }
      
    }

  

    #color_box_container {
      flex-direction: column;
      width: 100%;
      height: 100%;
      padding-top: 50px; ;
      padding-bottom: 50px;
    }
    

   @media screen and (max-width: 480px) {
      #color_box_container {
        width: 100%;
        height: 150px;     
        margin-bottom:10px;
        padding-top: 30px;

      }
      
    } 


    .color_box {
      width: 100%;
      height: 81px;
      display: flex;
      justify-content: center;
      flex-direction: row;
      align-items: center;
      background-color: rgb(255, 255, 255);
    }

  
    @media screen and (max-width: 480px) {
      .color_box {
        width: 100%;
        height: 50px;
        margin: 0%;
        
      }
      
    } 



 
   .allbox {
      width: 25%;
      height: 100%;
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      background-color: #f0f0f0;

    }


    @media screen and (max-width: 480px) {
      .allbox {
        width: 25%;
        height: 100%;    
        margin-bottom: 5px;
      }
      
    }



   .allbox {
      color: #cac83c;
      font-family: sans-serif;
      font-size: 1.2rem;
      font-weight: 600;
      text-align: center;
      line-height: 1.1;
      padding: 7px;
      border-width: 2px;
      border-style: solid;
      border-color: #ffffff;
      border-radius: 6px;
      text-decoration: none;
   }




   @media screen and (max-width: 480px) {
      .allbox {
        font-size: 10px;
        padding: 4px;
        border-width: 1px;
        border-radius: 3px;

      }
      
    }
    

   


  #box1 {
    color: white;
    background-color: #81713e;
  }

  #box2 {
    color: white;
    background-color: #ff1414;
  }


  #box3 {
    color: white;
    background-color: #000000;
  }

  #box4 {
    color: white;
    background-color: #a19705;
  }


  #box5 {
    color: white;
    background-color: #0086df;
  }


  #box6 {
    color: white;
    background-color: #028a0d;
  }

  #box7 {
    color: white;
    background-color: #e07008;
  }


  #box8 {
    color: white;
    background-color: #8d0cc0;
  }

 

  
 .big_box_sectio_container {
    width: 76%;
    margin-left: 12%;
    margin-right: 12%;
    height: 1350px;
    background-color: rgb(255, 255, 255);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: start;
    min-width: 76%;
    max-width: 76%;
    margin-bottom: 20px;
  }



  @media screen and (max-width: 480px) {
    .big_box_sectio_container {
      min-width: 100%;
      width: 100%;
      height: 700px;
      margin-left: 0px;
      margin-right: 0px;
      margin-bottom: 30px;
      
    }
    
  }

.big_box_sectio_container_div {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: start;
    margin-left: 0px;
    margin-right: 0px;

}

  

  .big_link_boxes {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    background-color: #ffffff;
    border-width: 1px;
    border-style: solid;
    border-color: #cc0c0c;
    margin-left: 10px;
    margin-right: 10px;
  }

  


 @media screen and (max-width: 480px) {
    .big_link_boxes {
      width: 100%;
      height: 100%;
      margin-left: 0px;
      margin-right: 0px;
    }
    
  }
  
 



  .re_ad_job {
    width: 100%;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin: 0;
    height: 45px;
    font-size: 27px;
    /* font-weight: 600; */
    color: #ffffff;
    background-color: #cc0c0c;
    border: none; 
    padding-bottom: 6px;
  }



  @media screen and (max-width: 480px) {
      .re_ad_job {
        height: 20px;
        font-size: 12px;
        padding-bottom: 3px;
      }
      
    }
    
  



  .link_list_all {
    font-size: 18px;
    font-family: Roboto, sans-serif;
    font-weight: 400;
    width: 100%;
    /* font-weight: semi-bold; */
    color: rgb(0, 0, 0);
    line-height: 1.1;
    margin-inline: 10%;
    padding-inline: 10%;
  
  }


  @media screen and (max-width: 480px) {
      .link_list_all {
        font-size: 8px;
        line-height: 1.2;
        margin-left: 0%;
        width: 100%;
        margin-left: 15%;
        padding-left: 15%;
      }
    
  }
  
  .all_link{

   margin-bottom: 10px;
  }
 


@media screen and (max-width: 480px) {
    .all_link {
      margin-bottom: 5px;
      width: 100%;
      margin-left: 0%;
    }
    
  }
  



 .text_link_a {
  color: rgb(1, 30, 196);
  font-weight: semi-bold;
  font-family: sans-serif;
  word-spacing: 3px;
  
 }


 @media screen and (max-width: 480px) {
    .text_link_a {
      width: 100%;
      word-spacing: 1px;
      margin-left: 0%;
    }
    
  }
  
 


.text_link_a:hover {
  text-decoration: underline;
  color: rgb(252, 0, 0);
  transition: color 0.1s;
}

.know_more {
  font-size: 15px;
  color: rgb(255, 255, 255);
  font-weight: 600;
  font-family: sans-serif;
  word-spacing: 0px;
  text-decoration: none;
  background-color: rgb(120, 120, 255);
  border-radius: 12px; 
  padding: 9px;
  margin: 20px;
}



@media screen and (max-width: 480px) {
  .know_more {
    font-size: 6px;
    padding: 4px;
    margin: 8px;
    border-radius: 5px; 
    margin: 15px;
  }
  
}


.know_more:hover {
  text-decoration: underline;
  color: rgb(255, 255, 255);
  background-color: rgb(0, 0, 0);
  transition: background-color 0.3s ease, color 0.3s ease;
}



.sarkari_information_section {

  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  background-color: #ffffff;
  border-width: 1px;
  border-style: solid;
  border-color: #000000;
  
}


@media screen and (max-width: 480px) {
  .sarkari_information_section {
    align-items: center;
    justify-content: center;
    width: 100%;

  }
  
}

#infromation_section_id {
  margin-top: 20px;
  height: auto;

}



.information_heading {
  

  width: 100%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #9c0000;
  color: #ffffff;
  font-size: 24px;
  font-weight: bold;
  font-family: sans-serif;
  margin: 0px;
  
}


@media screen and (max-width: 480px) {
  .information_heading {
    width: 100%;
    height: 35px;
    font-size: 13px;
    display: flex;
    padding-left: 10px;
    padding-right: 10px;
    justify-content: center;
    align-items: center;


  }
  
}


.information_passege {
 
  margin-inline: 20px;  
  font-size: 18px;
  font-weight: 500;
  font-family: sans-serif;
  color: #000000;
  line-height: 1.4;
}

@media screen and (max-width: 480px) {
  .information_passege {
    font-size: 13px; 
    line-height: 1.2;
    margin-inline: 10px;
  }
  
}






.footer {
  background: #1e1e1e;
  color: #fff;
  padding: 40px 20px 10px;
  font-family: 'Segoe UI', sans-serif;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}
.footer-about, .footer-links, .footer-info, .footer-social {
  flex: 1 1 220px;
  margin: 20px 0;
}
.footer h2 {
  font-size: 24px;
  margin-bottom: 10px;
}
.footer h3 {
  font-size: 18px;
  margin-bottom: 10px;
  border-bottom: 2px solid #555;
  display: inline-block;
  padding-bottom: 5px;
}
.footer p, .footer a {
  color: #ccc;
  font-size: 14px;
  text-decoration: none;
}
.footer a:hover {
  color: #fff;
}
.footer ul {
  list-style: none;
  padding: 0;
}
.footer li {
  margin-bottom: 8px;
}
.footer-social .social-icons a {
  margin-right: 10px;
}
.footer-social img {
  width: 24px;
  height: 24px;
  transition: 0.3s;
}
.footer-social img:hover {
  filter:none ;
}
.footer-bottom {
  text-align: center;
  border-top: 1px solid #444;
  padding-top: 15px;
  font-size: 13px;
  color: #aaa;
}
.footer-bottom a {
  color: #ccc;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .footer-social .social-icons {
    justify-content: center;
  }
}


