body{
    margin: 0;
    padding:0;
    box-sizing: border-box;
    background-color: white
}




                                                                                    /* For Navbar */
.flexing{
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: space-evenly;
    align-content: space-between;
    background-color: #4e99c5
}
.navbar{
    width: 100%;
    height:50px;
    background-color: #4e99c5;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.logo{
    background-color: #4e99c5;
}
.menu{
    background-color: #4e99c5;
}
.searchbar{
    background-color: #4e99c5;
    margin-top: -5px;
    margin-right: -20px;
}

#logo_image{
    height:50px;
    width:50px;
    margin-top:5px;
    margin-left:-100px;
    border-radius: 2px;
}

#names{
    display:flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-content:center;
    list-style: none;
    margin-top: 15px;
    background-color:  #4e99c5;
    gap: 50px;
}

.search-input {
    padding: 10px;
    border: none;
    border-radius: 5px 0 0 5px;
    outline: none;
    width: 300px;
}

.search-button {
    padding: 10px 15px;
    background-color: #0056b3;
    color: white;
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}

.search-button:hover {
    background-color: #004494;
}

.search-form{
    margin-top: 15px;
    background-color:  #4e99c5;
    display: flex;

}

#names a {
    text-decoration: none; 
    color: black; 
    background-color: #4e99c5; 
    font-size: x-large; 
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif; 
    font-weight: 200;
    padding: 10px; 
    transition: background-color 0.3s, color 0.3s; 
}

#names a:hover {
    background-color: #3a7a95;
    color: white; 
    border-radius: 5px;
}







                                                                                    /* for main content */
.card_wrap{
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0 auto;
    width:90%;
    height: fit-content;

}
.card{
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: row;
    border-radius: 2%;
    margin-bottom: 40px;
    gap:40px;
}
.card img{
    margin-top:10px;
    margin-left: 10px;
    margin-bottom: 10px;
    border-radius: 25px;
    filter: brightness(1.2);
    filter: contrast(1.3);
    /* mask-image: radial-gradient(ellipse at center, rgb(255, 255, 255) 50%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse at center, rgb(255, 255, 255) 50%, transparent 100%); */
  background: radial-gradient(ellipse at center, rgba(0,0,0,0) 10%, rgba(255,255,255,0.7) 100%);
}
.infor{
    margin-right: 15px;
}
.card p{
    font-size: 17px;
    text-align: justify;
    font-style: initial;
    /* font-weight: 500; */
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
.poster{
    display: flex;
    flex-direction:column;
    height:"550px";
    width:"600px";
}




                                                                                    /* for brochures */
.brochure-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.download-btn {
    display: inline-block;
    padding: 14px 28px;
    background-color: #28a745;
    color: white;
    font-size: 28px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.download-btn:hover {
    background-color: #218838;
}



                                                                                        /* for footer */
.foot{
    margin-top: 40px;
    background-color: rgb(27, 28, 30);
    height: 250px;
    width: 100%;
    position: relative;
}

.footerr{
    display: flex;
    flex-direction: row;
    gap: 100px;
    justify-content: space-evenly;
}

#divi{
    width:1px;
    height:70%;
    background-color:rgba(245, 245, 245, 0.692);
    position: absolute;
    margin-top: 30px;
}

#address{
    color:rgba(245, 245, 245, 0.692);
    margin-top: 30px;
    font-size: 17px;
    line-height: 7px;
    font-style: normal;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
#copywrite{
    color:rgba(245, 245, 245, 0.692);
    text-align: center;
    margin: 40px;
}




.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
    padding: 10px;

}




/* ========================= */
/*  Mobile (max-width: 768px) */
/* ========================= */

/* for navbar */
@media screen and (max-width: 768px) {
  .flexing{
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content:space-evenly;
    align-content:center;
    background-color:#4e99c5;
}

   .hamburger {
    display: block;
    width:50%;
  }

  .menu {
    display: none;
    width: 100%;
  }

  .menu.active {
    display: block;
    position: absolute;
    z-index: 10;
  }

  #names {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 0;
  }

  #names li {
    width: 100%;
    text-align: center;
  }

  #names a {
    display: block;
    width: 100%;
  }

  .searchbar{
     display: none;
  }
  .logo{
      background-color: #4e99c5;
      width: 50%
  }

#logo_image{
    width:25%;
     margin-left:10%;
     margin-top: 12px;
     height: 37.6px;
    border-radius: 2px;
}

  #hamb{
     width:25%;
    border-radius: 2px;
    margin-left:85%;

  }

}

/* For Main Content   */

@media screen and (max-width: 768px) {

  .card_wrap {
    width: 95%;
  }

  .card {
    flex-direction: column;
    gap: 15px;
  }

  .card img {
    margin-top:0px;
    margin-left: 0px;
    margin-bottom: 0px;
    padding: 10px;
    width: 95%;
    max-width: 100%;
    max-height: 250px;
    object-fit: cover;
    
  }
  .poster {
    width: 100%;
  }

  .poster img {
    width: 95%;
  }

  .card p {
    font-size: 15px;
  }

  h1 {
    font-size: 22px;
    padding: 0 10px;
  }
  .infor{
    margin-right: 7px;
    margin-left: 7px;
}
}



/* for download brochure  */
@media screen and (max-width: 768px) {

  .brochure-container {
    padding: 0 15px;
  }

  .download-btn {
    font-size: 18px;
    padding: 10px 20px;
    text-align: center;
    width: 100%;        /* full width button */
  }
}



/* for footer*/

@media screen and (max-width: 768px) {

  .foot{
    height: auto;
    width: auto;
  }
  .footerr{
    flex-direction: column;   /* stack */
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  #divi {
    display: none;
  }

  .address {
    width: 90%;
  }

  #copywrite {
    margin: 20px;
    font-size: 14px;
  }
}