*{
    margin: 0;
    padding: 0;
}
body {
    font-size: 15pt;
}

#cover{
   display: flex;
   align-items: center;
   justify-content: center;
   flex-direction: column;
   position: fixed;
   z-index: 10;
   width: 100%;
   height: 100%;
  position: fixed;
   background-color: #FAFAFA;
  
 }
 
 
 #cover-from-hammidagroup{
   text-align: center;
   position: absolute;
   color: black ;
   
   bottom: 40px;
 }
.header{
    width: 100%;
    height: 80px;
    background-color: #5260FF;
    text-align: center;
    /* display: fixd; */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 0;
}
#nav-btn{
    display: flex;
    gap: 10px;
 justify-content: center;
 align-items: center;
    padding: 10px 0px;
    width: 100%;
    overflow-x: scroll;
    scrollbar-width: none;
    /* background: #000; */
}
#nav-btn button{
    height: 40px;
    white-space: nowrap;
    
    border-radius: 5px;
padding: 5px;

    background: #5260FF;
}
#btn-box{
    width: 100%;
    display: flex;
    justify-content: space-between;
    
}
.btns{
    height: 50px;
    width: 60px;
    border-radius: 5px;
    background-color: #5260FF;

    
    cursor: pointer;
}
main{
    height: 100%;
    width: 100%;
    position: relative;
}
#menu-btn{
    height: 30px;
    width: 30px;
     /* position: relative; */
     position: absolute;
     left: 0px;
     top: 10px;
     cursor: pointer;
     box-shadow: 4px 2px 2px 2px #5260FF;
}
#menu-div{
    height: 100vh;
}


  /* Navbar Styling */
        .header {
          
          position: relative;
            z-index: 9;
        }
        
        /* Menu Section */
#menu-box {
    position: fixed; /* Menu को फिक्स रखने के लिए */
    top: 0;
    left: -250px; /* Menu को initially छिपाने के लिए */
    height: 100%;
    width: 250px;
    background-color: #fff;
    border-right: 2px solid #ddd;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    overflow-y: auto;
    transition: left 0.3s ease-in-out; /* Smooth transition effect */
   
}

#menu-box.open {
    left: 0; /* Menu को दिखाने के लिए */
}

#menu-box h2 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 20px;
    padding-left: 20px;
}

#menu-box ul {
    padding: 0;
    margin: 0;
    list-style: none;
    width: 100%;
}

#menu-box ul li {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

#menu-box ul li:hover {
    background-color: #f4f4f4;
}

#menu-box ul li div {
    display: flex;
    align-items: center;
    width: 100%;
}

#menu-box ul li img.menu-btn {
    height: 24px;
    width: 24px;
    margin-right: 15px;
}

#menu-box ul li span {
    font-size: 1.1em;
    color: #333;
    font-weight: 500;
}

/* Main Content Section */
/* Main Content Section */
main {
    margin-left: 0; /* Default margin जब मेनू बंद हो 
    flex-wrap: wrap; /* Content को Wrap करें */
    
    transition: margin-left 0.3s ease-in-out; /* Smooth transition */
}

main.menu-open {
    margin-left: 250px; /* जब मेनू खुला हो */

}

#buisness-finance , #spots , #films , #politics , #technology{
    color: red;
}
#box{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    padding: 10px;
}

   .content-box {
  flex: 1 1 250px;
  max-width: 300px;
  width: 300px;
  border: 2px solid #333;
  padding: 15px;
  margin: 20px auto;
  border-radius: 10px;
  text-align: center;
  box-sizing: border-box;
  overflow-wrap: break-word;
  box-shadow: 0 0 30px rgba(82, 96, 255, 0.6); 
}
/* .content-box :hover{
    width: 400px;
    padding: 20px;

 } */

    .content-box img {
      width: 100%;         /* image box ke width ke hisab se fit hogi */
      height: auto;        /* ratio maintain hoga */
      border-radius: 8px;
      margin-bottom: 10px;
      /* box-shadow: 4px 2px 2px 2px #5260FF; */
    }

    .content-box h2 {
      font-size: 20px;
      margin: 10px 0;
    }

    .content-box p {
      font-size: 14px;
      line-height: 1.4;
    }
    .content-box a{
        
    display: inline-block;   /* inline se block ban gaya */
    padding: 10px 20px;      /* andar ka space */
    background:  #5260FF;        /* button ka color */
    color: white;            /* text ka color */
    border-radius: 8px;      /* gol corner */
    text-decoration: none;   /* underline hat gayi */
    font-size: 13px;
    font-weight: bold;
      box-shadow: 0 0 30px rgba(82, 96, 255, 0.6); 
  

}
  a:hover {
    background: darkblue;    /* hover effect */

    
    }
#shareBtn{
    height: 30px;
    width: 30px;
    position: fixed;
    top: 50vh;
    right: 10px;
    cursor: pointer;
  filter: brightness(0) saturate(100%) invert(12%) sepia(97%) saturate(7480%) hue-rotate(0deg) brightness(101%) contrast(108%);   ;
}
    .footer {
    background-color: #5260FF; /* अपने theme के हिसाब से color */
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 14px;
    position: relative; /* पहले वाला position हटा दे */
}