body {
  background-color: #f4f4f4;
  margin: 0;
  width: 100%;
  overflow-x: hidden;
}

/** ==================  Navbar =================-*/

.navbarContainer {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}

.navInnerContainer {
  width: 70%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logoHref {
  height: 50px;
}
.logoIconNav {
  height: 100%;
}
li a {
  color: #a31404 !important;
  font-weight: bold;
}

.applyNowButton {
  margin: 0;
  width: 140px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 18px;
  background-color: #a31404;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition: 0.2s;
}
.applyNowButton:hover {
  color: #fff;
  box-shadow: 1px 4px 10px #9c9595;
  transform: scale(1.03);
  transition: 0.2s;
}

@media screen and (max-width: 1660px) {
  .navInnerContainer {
    width: 80%;
  }
}
@media screen and (max-width: 1280px) {
  .navInnerContainer {
    width: 90%;
  }
}
@media screen and (max-width: 990px) {
  .logoHref {
    height: 40px;
  }
  .applyNowButton {
    height: 40px;
    width: 130px;
  }
}

@media screen and (max-width: 768px) {
  .logoHref {
    height: 40px;
    width: 360px;
  }
  .logoIconNav {
    width: 100%;
  }
}

@media screen and (max-width: 600px) {
  .navInnerContainer {
    width: 97%;
  }
  .logoHref {
    height: 40px;
    width: 280px;
  }
  .applyNowButton {
    height: 40px;
    width: 100px;
    font-size: 14px;
    font-weight: 500;
  }
}

/* =============Blog Hero section====================== */
.blogHeroSection {
  width: 100%;
  /* height: 510px; */
}
.webimg {
  display: block;
  width: 100%;
}
.mobimg {
  display: none;
}
/* ===============Blogs List Container Start================= */
.blogsList {
  width: 100%;
  margin: 6rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 1.5rem;
}
.blogsList .card {
  width: 32%;
  height: auto;
  border-radius: 0.6rem;
  border: 1px solid #959595;
}

.blogsList .card-img-box {
  width: 100%;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px 10px 0px 0px;
  overflow: hidden;
}
.blogsList .card img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.blogsList .card .card-body .hrefTitle {
  margin: 0;
  font-weight: 500;
  line-height: 23px;
  font-size: 20px;
  color: #000;
  text-decoration: none;
}

.blogsList .card .card-body .para {
  margin: 0;
  font-size: 16px;
  color: #2b2b2b;
  text-decoration: none;
}

.blogsList .card .card-body {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
  gap: 0.5rem;
}

.blogsList .card .card-body .btnDate {
  width: 100px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  font-size: 0.8rem;
  background-color: #0000001f;
  border-color: #e8e8e8;
}

.blogsList .card .card-body .redemoreBtn {
  position: absolute;
  height: 25px;
  bottom: 0.5rem;
  left: 1rem;
  margin: 0;
  width: 150px;
  font-weight: 600;
  font-size: 16px;
  color: #a31404;
  text-decoration: none;
  transition: 0.2s;
}

.blogsList .card:hover {
  background-color: #a31404;
  box-shadow: 0px 4px 10px #2b2b2b;
}
.blogsList .card:hover .hrefTitle,
.blogsList .card:hover .redemoreBtn {
  color: #fff;
}
.blogsList .card:hover .btnDate {
  background-color: #fff;
  color: #a31404;
}
.blogsList .card:hover .para {
  color: #eee;
}
.blogsList .card .redemoreBtn:hover {
  text-decoration: underline;
  transform: scale(1.03);
  transition: 0.2s;
}

p a {
  color: #a31404;
  font-weight: bold;
}
@media screen and (max-width: 1440px) {
  .blogsList {
    gap: 1rem;
  }
  .blogsList .card {
    width: 30%;
  }
}
@media screen and (max-width: 1200px) {
  .blogsList {
    gap: 2rem;
  }
  .blogsList .card {
    width: 48%;
  }
}

@media screen and (max-width: 990px) {
  .blogsList {
    gap: 1rem;
    justify-content: space-between;
  }
  .blogHeroSection {
    width: 100%;
    height: 450px;
  }
  .webimg {
    display: none;
  }
  .mobimg {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media screen and (max-width: 768px) {
  .blogsList {
    gap: 1.5rem;
  }
  .blogsList .card {
    width: 100%;
  }
  .blogHeroSection {
    width: 100%;
    height: 350px;
  }

  .web_menu {
    text-align: center !important;
  }

  a.btn_menu.m1 {
    padding: 6px;
    text-align: center;
  }
  .btn_menu {
    height: unset;
  }
}
@media screen and (max-width: 450px) {
  .blogHeroSection {
    width: 100%;
    height: 300px;
  }
}
/* ===============Blog List Container End With Media Quary================ */

/* ================Fotter section Start==================== */

.footerContainer {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  background-color: #000;
}
.footerInnerContainer {
  width: 56%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  /* justify-content: space-around; */
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.footerContainerItemBox {
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footerContainerItemBox .itemBox {
  display: flex;
  flex-direction: column;
}

.footerContainerItemBox .itemBox .linkHead {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.7rem;
}
.footerContainerItemBox .itemBox .hrefLink {
  margin: 0;
  margin: 6px 0;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  transition: 0.2s;
}
.footerContainerItemBox .itemBox .hrefLink:hover {
  font-weight: 500;
  color: #eee;
  text-decoration: underline;
  transition: 0.2s;
}

.footerContainerItemBox .itemBox .iconsBox {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footerContainerItemBox .itemBox .hrefIcon {
  width: 35px;
  height: 35px;
  background-color: #2b2b2b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

/* Facebook Button */
.facebook:hover {
  background-color: #3b5998 !important; /* Facebook color */
}

/* Instagram Button */
.instagram:hover {
  background-color: #e1306c !important; /* Instagram color */
}

/* YouTube Button */
.youtube:hover {
  background-color: #ff0000 !important; /* YouTube color */
}

/* Twitter Button */
.twitter:hover {
  background-color: #1da1f2 !important; /* Twitter color */
}

/* Blogs Button */
.blogs:hover {
  background-color: #ff9900 !important; /* Common blog color (can be adjusted as per specific blog brand) */
}

.footerContainerItemBox .itemBox .hrefIcon i {
  color: #fff;
  font-size: 14px;
}

.footerContainerItemBox .itemBoxbtn {
  display: flex;
  gap: 1rem;
}

.footerContainerItemBox .itemBoxbtn .buttonhref {
  background-color: rgb(46, 92, 122);
  padding: 6px 16px;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  text-decoration: none;
  border-radius: 2px;
}

.footerContainerItemBox .itemBoxbtn .buttonhref i {
  font-size: 18px;
  color: #fff;
}

.midBoxHeaderContainer {
  width: 100%;
  height: 120px;
  position: relative;
}
.midBoxHeaderContainer .bgImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.midBoxHeaderContainer .innerItem {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.5rem;
  background-color: #00000052;
}
.midBoxHeaderContainer .collegeItemBox {
  width: 100%;
  display: flex;
  height: calc(100% - 40px);
  align-items: flex-start;
  gap: 6px;
}

.midBoxHeaderContainer .collegeItemBox img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}
.midBoxHeaderContainer .collegeItemBox .textBox {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.midBoxHeaderContainer .clgBtnBox {
  width: 100%;
  height: 40px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.footerContainerItemBox .innerItem .clgBtnBox .buttonhref {
  background-color: #fff;
  padding: 4px 10px;
  color: #2b2b2b;
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  text-decoration: none;
  border-radius: 2px;
}

.footerContainerItemBox .innerItem .clgBtnBox .buttonhref i {
  font-size: 16px;
  color: #2b2b2b;
}

.midBoxButtomContainer {
  margin-top: -1rem;
  padding: 0.5rem;
  width: 100%;
  height: 200px;
  overflow: auto;
  scroll-behavior: smooth;
  background-color: #eee;
}

.footerCopyRightBox {
  border-top: 1px solid #e8e8e8;
  width: 60%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 1660px) {
  .footerInnerContainer {
    width: 70%;
  }
  .footerCopyRightBox {
    width: 70%;
  }
}

@media screen and (max-width: 1440px) {
  .footerInnerContainer {
    width: 80%;
  }
  .footerCopyRightBox {
    width: 80%;
  }
}

@media screen and(max-width: 1080px) {
  .footerInnerContainer {
    width: 90%;
  }
  .footerCopyRightBox {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  .footerInnerContainer {
    gap: 2rem;
  }
  .footerInnerContainer .footerContainerItemBox {
    width: 100%;
  }
}

/* ================Fotter section End==================== */

/* ==================Blog Details Page============== */

.blogDetailsContainer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blogDetailsInnerContainer {
  width: 70%;
  margin: 4rem 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.blogItemDetailsContainer {
  width: 69%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.blogItemDetailsContainer title {
  margin: 0;
  font-size: 2.5rem;
  color: #2b2b2b;
}

.blogItemDetailsContainer .date-span {
  color: #959595;
  font-size: 0.9rem;
}

.blogDetailsContainer .featured-img-anchor {
  width: 100%;
}

.blogDetailsContainer .featured-img-anchor .featured-img {
  width: 100%;
}

.latestPostSection {
  width: 28%;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 1px 4px 10px #eee;
}
.latestPostSection .latestPostSectionText {
  width: 100%;
  background-color: #a31404;
}

.latestPostSection h5 {
  margin: 0;
  padding: 1rem;
}

.latestPostSectionContainer {
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 1.5rem 0;
}
.latestPostSectionContainer .recentPostItem {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 100px;
}

.latestPostSectionContainer .recentPostItem .cardImgBox {
  width: 45%;
  height: 100%;
  border-radius: 4px;
  overflow: hidden;
}

.latestPostSectionContainer .recentPostItem .cardImgBox img {
  width: 100%;
  object-fit: fill;
  height: 100%;
}

.latestPostSectionContainer .recentPostItem .recentPostText {
  width: 53%;
}
.latestPostSectionContainer .recentPostItem .recentPostText span {
  font-size: 14px;
  margin: 0;
  color: #959595;
}

.latestPostSectionContainer .recentPostItem .recentPostText a {
  margin: 0;
  width: 100%;
  padding: 0;
  font-size: 15px;
  text-decoration: none;
  color: #2b2b2b;
}

@media screen and (max-width: 1660px) {
  .blogDetailsInnerContainer {
    width: 80%;
  }
}

@media screen and (max-width: 1280px) {
  .blogDetailsInnerContainer {
    width: 90%;
  }
  .recentPostItem {
    flex-direction: column;
    gap: 8px;
    height: auto !important;
  }
  .cardImgBox {
    height: 100px !important;
    width: 100% !important;
  }
  .recentPostText {
    height: auto !important;
    width: 100% !important;
  }
}

@media screen and (max-width: 768px) {
  .blogDetailsInnerContainer {
    flex-direction: column;
    gap: 2rem;
  }
  .blogItemDetailsContainer {
    width: 100%;
  }
  .latestPostSection {
    width: 100%;
  }
  .recentPostItem {
    flex-direction: row;
  }
  .cardImgBox {
    height: 100px !important;
    width: 48% !important;
  }
  .recentPostText {
    height: auto !important;
    width: 50% !important;
  }
}

/* ========End Blog Details ================= */

/**  -----------------------------------------------------  Footer section --------------------------------------------------------------------------*/

.footer {
  /* background-color: #a31404; */
  background-image: url("https://dook8hgmmt8xh.cloudfront.net/images/footer.webp");
}

.footer ul {
  list-style-type: none;
}
.footer ul li a {
  color: white;
  text-decoration: none;
}
/**  -----------------------------------------------------  Footer section --------------------------------------------------------------------------*/
