html,
body {
  scroll-behavior: smooth;
}

html {
  overflow-x: hidden;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #ffffff;
  overflow-x: hidden;
}

ol,
ul {
  padding: 0;
}

p {
  margin: 0;
  font-family: "Poppins", sans-serif;
}

/* =============================
          Default Css
============================== */
a {
  text-decoration: none;
  outline: 0 !important;
}

a:hover {
  text-decoration: none;
}

:focus {
  outline: 0 !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

img {
  max-width: 100%;
  height: auto;
}

/* =============================
            button
============================== */
.btn-primary {
  color: #ffffff;
  background-color: var(--btn-primary);
  border-color: var(--btn-primary);
  min-width: 180px;
  border-radius: 0px;
  font-size: 16px;
  position: relative;
  font-family: "Rethink Sans", sans-serif;
  font-weight: 400;
  min-height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
}

.btn-primary:hover {
  color: #fff;
  background-color: #0a94c2;
  border-color: #0a94c2;
}

.btn-book {
  display: inline-block;
  font-weight: 600;
  color: #0dbdf6;
  text-align: center;
  padding: 0.375rem 0.75rem;
  font-size: 14px;
  border-radius: 0.25rem;
  transition: color 0.15s, background-color 0.15s, border-color 0.15s,
    box-shadow 0.15s;
  background-color: transparent;
  border-color: #0dbdf6;
  height: 45px;
  width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-book:hover {
  color: #fff;
  background-color: #0dbdf6;
  border-color: #0dbdf6;
}

/* =============================
        Scroll Top
================================*/
#topbtn {
  display: inline-block;
  background-color: #0170CC;
  width: 45px;
  height: 45px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 180px;
  right: 30px;
  transition: all ease-in-out 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

#topbtn.show {
  bottom: 20px;
}

#topbtn::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 1em;
  line-height: 30px;
  color: var(--font-light);
}
#topbtn:hover {
  cursor: pointer;
  background-color: var(--topbar-bg);
}

#topbtn:active {
  background-color: #555;
}

#topbtn.show {
  opacity: 1;
  visibility: visible;
}

/* button search */

.btn-search {
  position: absolute;
  right: 0;
  background: #65a1a2;
  padding: 5px 10px;
  border: 2px solid #65a1a2;
  top: 0;
  color: #fff;
}

.nav-searchinput .btn:hover {
  color: #65a1a2;
  text-decoration: none;
  background: transparent;
}

/* =================================
            Bradcrumbs
==================================== */
.hero-content-upper h2 {
  font-weight: 400;
  font-size: 36px;
}

.breadcumb {
  position: relative;
  width: 100%;
  height: 50vh;       /* Default height (desktop ~ half screen) */
  min-height: 200px;
  overflow: hidden;
}

.breadcumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;  /* Keeps aspect ratio, fills nicely */
}

/* Center text inside */
.breadcumb .hero-content {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;       /* white text on dark image */
}

.breadcumb .hero-content h2 {
  font-size: 3rem;
  font-weight: 700;
}

/* Tablet */
@media (max-width: 992px) {
  .breadcumb {
    height: 40vh;
  }
  .breadcumb .hero-content h2 {
    font-size: 2.2rem;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .breadcumb {
    height: 30vh;
    min-height: 150px;
  }
  .breadcumb .hero-content h2 {
    font-size: 1.6rem;
  }
}
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #fff;
  transform: translate(-50%, -50%);
}

#overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(180deg, #4766a0bd, #0000004f);
  /* background: #00000096; */
  cursor: pointer;
}

.align_items_center {
  align-items: center;
}

ul.breadcumb_link {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 15px;
}

.breadcumb_link li {
  position: relative;
  padding-left: 21px;
}

.breadcumb_link li::before {
  position: absolute;
  content: "\f054";
  font-family: "fontawesome";
  color: var(--menu-color);
  left: 0;
  top: 3px;
  font-size: 12px;
}

.breadcumb_link li:first-child {
  padding-left: 0;
}

.breadcumb_link li:first-child::before {
  display: none;
}

.breadcumb_link li a {
  color: var(--menu-color);
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
}

.breadcumb_link li.active a {
  color: var(--menu-color);
  font-weight: 500;
}

/* social menu */
.social-menu {
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: flex-start;
}

.social-menu ul {
  padding: 0;
  margin: 0;
  display: flex;
  gap: 5px;
}

.social-menu ul li {
  list-style: none;
}

.social-menu ul li a img {
  height: 22px;
}

.social-menu ul li a {
  position: relative;
  display: block;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: transparent;
  text-align: center;
  transition: 0.6s;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* =============================
            top bar
============================== */
section.top-bar {
  
  background: #093D81;
  padding: 4px 8px;
}

.topbar_mob .topmob_down {
  display: none;
}

.topbar_right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
}

.topbar_left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-bar p {
  color: var(--topbar-con);
  font-size: 12px;
  font-weight: 300;
}

.topmob_down span {
  color: var(--topbar-con);
  font-size: 13px;
}

.lang_box.topr_single .dropdown button {
  background: transparent;
  border: 0;
  color: var(--topbar-con);
}

.topbar_right a {
  color: var(--topbar-con);
}

.topr_single {
  position: relative;
  padding-left: 10px;
  display: flex;
  gap: 11px;
}
.topr_single p {
	color: #fff;
	font-size: 13px;
	font-weight: 300;
	padding: 0px 15px;
}

.lightcard {
  margin: 0px 0px;
  padding: 6px 6px;
  position: relative;
  background: #FCFF67;
  color: #16007E;
  font-size: 11px;
  border-radius: 3px;
}

.darkcard {
  margin: 0px 0px;
  padding: 6px 6px;
  position: relative;
  background: transparent;
  color: #ffffff;
  font-size: 11px;
  border-radius: 3px;
}

.topbar_left p {
  margin: 0px 9px 0px 0px;
  padding: 0px 15px 0px 0px;
  position: relative;
  color: #fff;
  font-size: 13px;
  border-right: #fff 1px solid;
  display: flex;
  align-items: center;
  gap: 9px;
  }
.topbar_left p a {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 3px;
  }
.topbar_left p.last {
  border-right: #fff 0px solid;
  }
.topr_single::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 48px;
  background: #05234A;
  left: 0;
  top: -15px;
  bottom: 0;
}

.topbar_right .lang_box ul {
  background: var(--bg-primary);
}

.topbar_right .lang_box ul li a {
  color: var(--font-color);
}

.dropdown-item:focus,
.dropdown-item:hover {
  background-color: var(--select-color);
}

.theme-dark .lang_box.topr_single .dropdown button span img {
  filter: invert(100%) sepia(0%) saturate(13%) hue-rotate(235deg) brightness(99%) contrast(105%);
}
.header_middle {
  text-align: center;
}

section.header_sec {
  margin: 0px 0px;
  padding: 0px 0px;
  background: #ffffff;
  position: relative;
  width: 100%;
  min-height: 70px;
  border: #ccc 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-right: 210px;
}
.header_logo {
  margin: 4px auto;
  padding: 0px 0px;
  width: 169px;
  position: relative;
   }
.header_logo img {
  width: 100%;
  }
.header_sec h2 {
  margin: 8px 0px 0px 0px;
  padding: 0px 0px;
  position: relative;
  font-family: "Anek Bangla", sans-serif;
  color: #093D81;
  font-size: 20px;
  font-weight: 700;
  line-height: 14px;
  text-align: center;
  
}
.header_img01 {
  position: absolute;
  left: 0px;
  bottom: -14px;
  /* width: 128px; */
    width: 150px;

  top: 2%;
}
.header_img01 img {
  width: 100%;
  height: 100%;
  }
.header_img02 {
  position: absolute;
  left: 17%;
  top: 21%;
  width: 42px;
}
.header_img02 img {
  width: 100%;
  height: 100%;
  }
.header_img03 {
  position: absolute;
  right: 0px;
  bottom: -9px;
  /* width: 165px; */
  width: 185px;
  top: 2%;
  }
.header_img03 img {
  width: 100%;
  height: 100%;
  }

.headerr_logotext {
  margin: 0px 0px;
  padding: 0px 0px;
  position: relative;
  width: auto;
}

/* stellarnav */
/* .nav_bar {
  margin: 0px 0px;
  padding: 0px 0px;
  position: relative;
  background: #0170CC;
}

.stellarnav.light li a {
  padding: 7px 17px;
  color: #fff;
  font-weight: 500;
  font-family: "Anek Bangla", sans-serif;
  font-size: 18px !important;
}
.stellarnav.light li a:hover {
  background: #093d81;
  color: #fff;
}
.signin_mobbox {
  display: none;
} */
/* .stellarnav.light li > ul > li > a {
	color: #3a2b2f;
	font-size: 16px !important;
} */

/* .nav-bar.scroll-navbar {
  background: #fff;
  box-shadow: 4px 5px 15px 3px #cfcfcf69;
  padding: 13px;
}

.stellarnav li a {
  padding: 15px;
  display: block;
  text-decoration: none;
  color: #777;
  font-size: 14px;
  box-sizing: border-box;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.stellarnav.dark li a {
  color: #252525;
  font-weight: 500;
  font-size: 14px;
}

.stellarnav>ul>li>a {
  padding: 8px 5px 5px;
}

.stellarnav.light>ul>li.nav-hover.active>a i {
  color: #093d81;
}

.stellarnav.light>ul>li.nav-hover.active>a.home_icon {
  background: transparent;
}

.stellarnav.light>ul>li.nav-hover.active>a {
  background: #093d81;
  color: #fff;
}

.navr-single .dropdown .dropdown-toggle {
  background: transparent;
  border: none;
  width: 25px;
}

.stellarnav li.has-sub>a:after {
  content: "\f078";
  font-family: "fontawesome";
  border: 0;
  margin-left: 5px;
  font-size: 13px;
}

.nav-menu .stellarnav {
  width: auto;
}

.stellarnav ul {
  margin: 0px 0px;
  padding: 0px 0px;
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navr-singlebtn {
  gap: 12px;
  display: flex;
  position: relative;
  align-items: center;
}

.nav-rightbox .navr-single::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background: #707070;
  right: 33px;
  top: 0;
}

.nav-rightbox .navr-single:first-child::before {
  display: none;
}

.nav-rightbox .dropdown-toggle::after {
  border-top: 0.3em solid #aaaaaa;
  margin-left: 0;
}

.nav-rightbox .navr-single {
  margin-left: 18px;
}

.nav-rightbox .social-menu {
  justify-content: flex-end;
} */

.nav-bar-logo {
  width: 100px;
}

.eneuiry_btn {
  font-family: "Rethink Sans", sans-serif;
  color: #fff;
  background: #e3660b;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 300;
  margin-right: 16px;
}

.eneuiry_btn:hover {
  border: 1px solid #e3660b;
  background: transparent;
  color: #e3660b;
}

.nav-rightbox .social-menu ul li a:hover {
  background: #81270b;
}

.nav-rightbox .social-menu ul li a:hover img {
  filter: invert(120%) sepia(3%) saturate(0%) hue-rotate(262deg) brightness(155%) contrast(103%);
}

.nav-rightbox .social-menu ul li:hover a {
  color: #81270b;
}

section.hero_sec {
    margin-top: -9px !important;
  margin: 0px 0px;
  padding: 0px 0px;
  position: relative;
  width: 100%;

 }
.owl-stage-outer{
 margin: 0px 0px;
 padding: 0px 0px;
 position: relative;
 width: 100%;

}
@media screen and (min-width: 1200px) {
    .department-carousel .heros_img img {
        object-fit: contain;  /* Increase height for large screens */
    }
}

@media screen and (min-width: 1600px) {
    .department-carousel .heros_img img {
       object-fit: contain;  /* Further increase height for ultra-wide screens */
    }
}

@media screen and (min-width: 1920px) {
    .department-carousel .heros_img img {
      object-fit: contain;  /* Adjust for full HD screens */
    }
}
.owl-stage-outer img {
	height: 100% !important;
  width: 100% !important;
    /*object-fit: cover;  Crops excess parts to fit the container */
  
}
.blur-image {
  filter: blur(4px); /* adjust the value for more or less blur */
  width: 100%;
  height: auto;
}
.hero_sec .owl-carousel .owl-nav {
  display: none;
}

.hero_sec .owl-dots {
  display: none;
}

.herocard-text {
  left: 18%;
  top: 25%;
  position: absolute;
  z-index: 99;
}

.herocard-text h2 {
  margin: 0px 0px 10px 0px;
  padding: 0px 0px;
  font-family: "Anek Bangla", sans-serif;
  color: #ffffff;
  font-size: 57px;
  font-weight: 700;
  line-height: 58px;
  text-transform: uppercase;
  width: 60%;
}
.herocard-text p {
  margin: 0px 0px;
  padding: 0px 0px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 300;
  line-height: 27px;
  width: 46%;
}
.tenders-section {
  margin: 0px 0px;
  padding: 0px 0px;
  position: relative;
  width: 100%;
  background: transparent;
  height: auto;
  z-index: 9;
}
.usefulgst-top {
 margin: 0;
  padding: 6px 10px;
  background: #093D81;
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  z-index: 99;
 
}

.usefulgst-top .container1 {
  color: #fff;
  font-size: 16px;
  line-height: 1.3;
  white-space: normal;   /* ✅ allow wrapping */
  word-wrap: break-word; /* ✅ break long words if needed */
  overflow: visible;
  text-overflow: unset;
  min-height: 20px;
}

/* Tablet */
@media (max-width: 768px) {
  .usefulgst-top .container1 {
    font-size: 10px;
    line-height: 1.4;
    
  }
}

/* Mobile */
@media (max-width: 480px) {
  .usefulgst-top {
    padding: 8px 10px; /* little more space for two lines */
  
  }
  .usefulgst-top .container1 {
    font-size: 12px;
    line-height: 1.4;
    
  }
}
.flashtext {
  margin: 0;
  padding: 6px 11px;
  background: #FFC800;
  position: relative;
  font-size: 16px; /* Default for big screens */
  color: white;
  width: 160px;
  clip-path: polygon(14% 0%, 100% 0%, 87% 100%, 0% 100%);
  text-align: center;
  font-weight: 600;
  font-style: italic;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
}

/* 📱 Tablet */
@media (max-width: 768px) {
  .flashtext {
    font-size: 14px;
    width: 170px;
  }
}

/* 📱 Mobile */
@media (max-width: 480px) {
  .flashtext {
    font-size: 12px;  /* Shrink text */
    width: 120px;     /* Reduce width so polygon looks neat */
    padding: 4px 8px; /* Adjust spacing */
  }
}

.usefulgst-card {
  display: flex;
  align-items: center;
  justify-content: start;
  color: #fff;
  font-size: 15px;
}
.usefulgst-card p {
  color: #fff;
  font-size: 15px;
  }
  .usefulgst-card p a{
    color: #fff;
    font-size: 15px;
    }
/* .tenderscard-sect {
  margin-top: -6%;
} */

.tenderscard {
  margin: 0px 0px;
  padding: 39px 25px;
  position: relative;
  background: #fff;
  min-height: 166px;
  overflow: hidden;
  border-radius: 16px;
  border-bottom: #093D81 13px solid;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 2px 15px 0px; 
}

.tenderscard02 {
  border-bottom: #138ED2 13px solid;
}
.tenderscard02.tenderscard p a .fa {
	background: #138ED2;
  }
  .tenderscard02 .noticecard {
    background: #138ED226;
  }
.tenderscard03 {
  border-bottom: #2260DF 13px solid;
}
.tenderscard03.tenderscard p a .fa {
	background: #2260DF;
  }
.tenderscard03 .noticecard {
    background: #2260DF1F;
  }
.tenderscard04 {
    border-bottom: #FFC800 13px solid;
  }
.tenderscard04.tenderscard p a .fa {
  background: #FFC800;
  }
.tenderscard04 .noticecard {
    background: #FFC80026;
  }
.tenderscard h2 {
  margin: 5px 0px 12px 0px;
  padding: 0px 14px;
  color: #000;
  font-size: 20px;
  font-weight: 600;
  line-height: 21px;
  font-family: "Anek Bangla", sans-serif;
  width: 100%;
  text-align: center;
  min-height: 33px;
}
.tenderscard p {
  margin: 0px 0px;
  padding: 0px 0px;
  color: #2f2c2c;
  font-size: 15px;
  text-align: center;
  font-weight: 400;
  line-height: 18px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tenderscard p a {
  color: #2f2c2c;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 7px
  }
.tenderscard p a .fa {
	background: #093D81;
	color: #fff;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	text-align: center;
	font-size: 11px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.tenders-section {
  margin: 0px 0px;
  /* margin-top: 250px; */
  padding: 53px 0px 131px 0px;
  position: relative;
  width: 100%;
  }
.tendersbg01{
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  width: 100%;
  }
.tendersbg01 img{
  width: 100%;
  height: 100%;
  }
.tenders-section h3 {
  margin: 77px 0px 12px 0px;
  padding: 0px 14px;
  color: #000000;
  font-size: 32px;
  font-weight: 700;
  line-height: 21px;
  font-family: "Anek Bangla", sans-serif;
  width: 100%;
  text-align: center;
  min-height: 33px;
}
.tenders-section h3 span {
	color: #0170CC;
  }  
.tenders-section h6 {
    margin: 0px 0px 20px 0px;
    padding: 0px 5%;
    position: relative;
    font-size: 16px;
    color: #2f2c2c;
    text-align: center;
    line-height: 24px;
  }
.noticecard {
  position: absolute;
  background: #093d810d;
  width: 90px;
  right: -15px;
  top: -16px;
  border-radius: 68px;
  height: 84px;
  padding: 34px 16px 18px 9px;
  text-align: center;
}
.noticecard img{
  width: 28px;
}
.tendersbg {
  left: 0px;
  bottom: 0px;
  position: absolute;
  width: 100%;
}
.tendersbg img {
  width: 100%;
  height: 100%;
}
.visionmission-section{
  margin: 0px 0px;
  padding: 0px 0px;
  background: #093D81;
  position: relative;
  width: 100%;
  }
.visionmission-left{
  margin: 0px 0px;
  padding: 55px 5% 0px 18%;
  position: relative;
  width: 100%;
  }
.visioncard{
  margin: 0px 0px 40px 0px;
  padding: 0px 0px;
  position: relative;
  width: 100%;
  display: flex;
  justify-self: start;
  gap: 17px;
  }
.visioncard-icon{
  margin: 0px 0px;
  padding: 0px 0px;
  position: relative;
  width: 79px;
  height: 66px;
}
.visioncard-text {
	width: 100%;
}
.visioncard-text h3 {
  margin: 0px 0px 8px 0px;
  padding: 0px 0px;
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  line-height: 21px;
  font-family: "Anek Bangla", sans-serif;
  width: 100%;
  text-align: left;
  }
.visioncard-text p {
  margin: 0px 0px;
  padding: 0px 0px;
  position: relative;
  font-size: 15px;
  color: #fff;
  text-align: left;
  line-height: 21px;
  font-weight: 300
  }
.visionmission-img {
  margin: 0px 0px;
  padding: 0px 0px;
  position: relative;
  width: 100%;
  height: 100%;
  }
.visionmission-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    }
.latestcampus-section{
  margin: 0px 0px;
  padding: 35px 0px;
  position: relative;
  width: 100%;
  background: #fff;
   }
.latestcampus-section h2 {
  margin: 12px 0px 37px 0px;
  padding: 0px 0px;
  color: #000000;
  font-size: 32px;
  font-weight: 700;
  line-height: 21px;
  font-family: "Anek Bangla", sans-serif;
  width: 100%;
  text-align: left;
  }
.campuscard{
  margin: 0px 0px;
  padding: 0px 0px;
  position: relative;
  width: 100%;
  min-height: 510px;
  background: #fff;
  border-radius: 12px 12px 7px 7px;
  box-shadow: rgba(50, 50, 93, 0.18) 0px 20px 35px -12px, rgba(0, 0, 0, 0.24) 0px 18px 26px -18px;
  }
.campushead {
  margin: 0px 0px;
  padding: 15px 24px;
  background: #0170CC;
  position: relative;
  font-family: "Anek Bangla", sans-serif;
  font-size: 24px;
  color: #fff;
  width: 100%;
  font-weight: 600;
  border-radius: 12px 12px 0px 0px;
  }
.campushead2 {
  background: #138ED2;
  }
.campushead3 {
  background: #093D81;
  }
.campuscard-cont {
  margin: 0px 0px;
  padding: 16px 18px;
  position: relative;
   }
.campuscard-cont02 {
    margin: 0px 0px;
    padding: 16px 18px;
    position: relative;
    width: 100%;
     }
   .campuscard-text02{
    margin: 0px 0px 13px 0px;
    padding: 0px 0px 12px 0px;
    position: relative;
    width: 100%;
    border-bottom: #D8D8D8 1px solid;
     }
  .campuscard-text02 p {
    margin: 0px 0px;
    padding: 0px 0px;
    position: relative;
    width: 100%;
    font-size: 15px;
    color: #444444;
    text-align: left;
    line-height: 23px;
    font-weight: 400;
    }

.campuscard-text{
  margin: 0px 0px 13px 0px;
  padding: 0px 0px 12px 0px;
  position: relative;
  border-bottom: #D8D8D8 1px solid;
   }
.campuscard-text p {
  margin: 0px 0px;
  padding: 0px 0px;
  position: relative;
  font-size: 15px;
  color: #444444;
  text-align: left;
  line-height: 23px;
  font-weight: 400;
  }
.explore-btn {
  margin: 32px auto -34px auto;
  padding: 12px 25px;
  background: #fff;
  border: #0170CC 1px solid;
  color: #0170CC;
  font-size: 16px;
  font-weight: 500;
  border-radius: 30px;
  position: relative;
  width: 184px;
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  }
.explore-btn:hover {
  background: #0170CC;
  border: #0170CC 1px solid;
  color: #fff;
  }
.chooseprogram-section {
	margin: 0px 0px;
	padding: 35px 0px 79px 0px;
	position: relative;
	width: 100%;
	background: #fff;
}
.chooseprogram-section h2 {
	margin: 12px 0px 37px 0px;
	padding: 0px 0px;
	color: #000000;
	font-size: 32px;
	font-weight: 700;
	line-height: 21px;
	font-family: "Anek Bangla", sans-serif;
	width: 100%;
	text-align: center;
}
.chooseprogram{
  margin: 0px 0px 23px 0px;
  padding: 0px 0px;
  background: #fff;
  position: relative;
  border-radius: 15px;
  width: 100%;
  border: #CCE2F5 1px solid;
  min-height: 200px;
  display: flex;
  justify-content: start;
  gap: 31px;
  align-items: center;
  z-index: 9;
  }
.choosecardleft{
  margin: 0px 0px;
  padding: 0px 0px;
  background: #0170CC;
  position: relative;
  border-radius: 15px;
  width: 79%;
  min-height: 281px;
  }
.choosecardleft h3 {
  margin: 0px 0px;
  padding: 50px 4px 10px 4px;
  color: #fff;
  font-size: 25px;
  font-weight: 700;
  line-height: 26px;
  font-family: "Anek Bangla", sans-serif;
  width: 100%;
  text-align: center;
  }
.choosecardleft h6 {
  margin: 0px 0px;
  padding: 0px 0px;
  position: relative;
  font-size: 14px;
  color: #fff;
  text-align: center;
  line-height: 19px;
  font-weight: 300;
  }
.chooseprogramfooter {
  margin: 29px 0px 0px 0px;
  padding: 16px 6px 22px 6px;
  width: 100%;
  position: absolute;
  border-top: #fff 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  bottom: 0px;
  }
.choosecardleft h5 {
    margin: 0px 0px;
    padding: 0px 0px;
    position: relative;
    font-size: 14px;
    color: #fff;
    text-align: left;
    line-height: 19px;
    font-weight: 600;
    }
.choosecardright{
 margin: 0;
    padding: 0;
    position: relative;
    width: 420px;
    height: 150px; /* Set the desired height */
    overflow: hidden; /* Hide overflowing content */
  
   }
.choosecardright ul{
  margin: 0px 0px 15px 0px;
  padding: 0px 0px;
  position: relative;
  width: 100%;
  }
.choosecardright li {
  margin: 0px 0px;
  padding: 0px 0px;
  position: relative;
  font-size: 16px;
  color: #000000;
  text-align: left;
  line-height: 29px;
  font-weight: 400;
  }
.choosecardright p {
  margin: 0px 0px;
  padding: 0px 0px;
  color: #2f2c2c;
  font-size: 16px;
  text-align: center;
  font-weight: 400;
  line-height: 18px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: left;
  }
.choosecardright p a {
  color: #093d81;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 9px;
  }
.choosecardright p a .fa {
  background: #093D81;
  color: #fff;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  text-align: center;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  }
.program-icon01 {
  position: absolute;
  right: 0px;
  top: 8px;
  width: 60px;
  }
  .chooseprogram02  {
    border: #FFF1BF 1px solid;
    }
.chooseprogram02 .choosecardleft {
	background: #FFC800;
  }
.chooseprogram02 .choosecardleft h3 {
    color: #000;
  }
.chooseprogram02 .choosecardleft h6 {
  color: #000;
  }
.chooseprogram02 .choosecardleft h5 {
  color: #000;
  }
.viewmore-btn {
    margin: 3% 0px 0px 0px;
    padding: 14px 25px;
    background: #fff;
    border: #0170CC 1px solid;
    color: #0170CC;
    font-size: 16px;
    font-weight: 500;
    border-radius: 30px;
    position: relative;
    width: auto;
    display: block;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    z-index: 9;
    }
.viewmore-btn:hover {
    background: #0170CC;
    border: #0170CC 1px solid;
    color: #fff;
    }
.programbg {
    position: absolute;
    bottom: -150px;
    left: 0px;
    right: 0px;
    width: 100%;
    }
.exploreacademic-section {
    margin: 0px 0px;
    padding: 35px 0px;
    background: transparent;
    position: relative;
    width: 100%;
    min-height: 500px; 
    overflow: hidden;
    }
.exploreacademicbg{
  position: absolute;
  left: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.9;
  }
.exploreacademicbg img{
    width: 100%;
    height: 100%;
    }
.exploreacademic-section h2 {
  margin: 91px 0px 20px 0px;
  padding: 0px 0px;
  color: #ffffff;
  position: relative;
  font-size: 32px;
  font-weight: 700;
  line-height: 21px;
  font-family: "Anek Bangla", sans-serif;
  width: 100%;
  text-align: center;
  }
.exploreacademic-section p {
  margin: 0px 0px 20px 0px;
  padding: 0px 2%;
  position: relative;
  font-size: 15px;
  color: #ffffffe8;
  text-align: center;
  line-height: 20px;
  }
.relatedcourse {
  margin: 58px 0px;
  padding: 0px 0px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  }
  .coursecard {
    margin: 0px 0px;
    padding: 39px 25px;
    position: relative;
    background: #fff;
    min-height: 166px;
    overflow: hidden;
    border-radius: 16px;
    border-bottom: #093D81 13px solid;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 2px 15px 0px;
    width: 300px;
  }
  .coursecard02 {
    border-bottom: #FFC800 13px solid;
  }
  .coursecard03 {
    border-bottom: #2260DF 13px solid;
  }

  .coursecard h2 {
    margin: 5px 0px 12px 0px;
    padding: 0px 14px;
    color: #000;
    font-size: 23px;
    font-weight: 600;
    line-height: 26px;
    font-family: "Anek Bangla", sans-serif;
    width: 100%;
    text-align: center;
  }
  .coursecard p {
    margin: 0px 0px;
    padding: 0px 0px;
    color: #2f2c2c;
    font-size: 15px;
    text-align: center;
    font-weight: 400;
    line-height: 18px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .coursecard p a {
    color: #2f2c2c;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 7px
    }
  .coursecard p a .fa {
    background: #093D81;
    color: #fff;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    text-align: center;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
  }


/* ============== Testimonials Css ============== */
.testimonials {
	margin: 0px 0px;
	padding: 40px 0px;
	position: relative;
	width: 100%;
}
.testimonials h2 {
	margin: 12px 0px 37px 0px;
	padding: 0px 0px;
	color: #000000;
	font-size: 32px;
	font-weight: 700;
	line-height: 21px;
	font-family: "Anek Bangla", sans-serif;
	width: 100%;
	text-align: center;
}
.testimonials .shadow-effect {
  background: #fff;
  margin: 0px 0px;
  padding: 0px 0px;
  border-radius: 4px;
  width: 100%;
  height: 300px;
  text-align: center;
  border:1px solid #ECECEC;
  box-shadow: 0 19px 38px rgba(0,0,0,0.10), 0 15px 12px rgba(0,0,0,0.02);
}
.testimonials .shadow-effect #overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0;
  right: 0;
  bottom: 0;
  cursor: pointer;
  background: #3771C873;
  display: flex;
  align-items: center;
  justify-content: center;
}
.overlaylogo{
  margin: 0px 0px;
  padding: 0px 0px;
  position: relative;
  width: 209px;
  height: 58px;
}
.overlaylogo img{
  width: 100%;
  height: 100%;
}
.testimonials .shadow-effect img {
  width: 100%;
  height: 100%;
  }
.testimonials #customers-testimonials .shadow-effect p {
  font-family: inherit;
  font-size: 17px;
  line-height: 1.5;
  margin: 0 0 17px 0;
  font-weight: 300;
}
.testimonials .testimonial-name {
  margin: -17px auto 0;
  display: table;
  width: auto;
  background: #3190E7;
  padding: 9px 35px;
  border-radius: 12px;
  text-align: center;
  color: #fff;
  box-shadow: 0 9px 18px rgba(0,0,0,0.12), 0 5px 7px rgba(0,0,0,0.05);
}
.testimonials #customers-testimonials .item {
  text-align: center;
  padding: 0px;
  margin-bottom:36px;
  opacity: .6;
  -webkit-transform: scale3d(0.8, 0.8, 1);
  transform: scale3d(0.8, 0.8, 1);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.testimonials #customers-testimonials .owl-item.active.center .item {
  opacity: 1;
  -webkit-transform: scale3d(1.0, 1.0, 1);
  transform: scale3d(1.0, 1.0, 1);
}
.testimonials .owl-carousel .owl-item img {
  max-width: 100%;
   

}
.testimonials #customers-testimonials.owl-carousel .owl-dots .owl-dot.active span,
.testimonials #customers-testimonials.owl-carousel .owl-dots .owl-dot:hover span {
  background: #3190E7;
  border-radius: 50%;  
}
.testimonials #customers-testimonials.owl-carousel .owl-dots{
display: inline-block;
width: 100%;
text-align: center;
}
.testimonials #customers-testimonials.owl-carousel .owl-dots .owl-dot{
display: inline-block;
}
.testimonials #customers-testimonials.owl-carousel .owl-dots .owl-dot span {
  background: #c0d2e2;
  display: inline-block;
  transition: all 250ms ease-out 0s;
  margin: 0 3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

/*===================== Inner Page Vision & Mission =====================*/
/* .breadcumb {
	margin: 0px 0px;
	position: relative;
    }
.breadcumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;

  } */
.hero-content {
  position: absolute;
  color: #ffffff;
  top: 50%;
  left: 50%;
  width: 100%;
  right: 50%;
}
.hero-content h2 {
  margin: 8px 0px 10px 0px;
  padding: 0px 0px;
  font-family: "Anek Bangla", sans-serif;
  color: #ffffff;
  font-size: 50px;
  font-weight: 700;
  line-height: 58px;
  text-align: center;
}
.vision-section {
	margin: 0px 0px;
	padding: 60px 0px;
	position: relative;
	width: 100%;
	background: #fff;
  }
.visicard-img {
	margin: 0px 0px;
	padding: 0px 0px;
  background: #fff;
	position: relative;
	width: 370px;
  height: 370px;
  overflow: hidden;	
  border-radius: 50%;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 2px 15px 0px;
  }
.visicard-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  }
.visicard-text {
  margin: 0px 0px;
  padding: 80px 0px;
  position: relative;
  width: 100%;
  }
.visicard-text h2 {
  margin: 0px 0px 16px 0px;
  padding: 0px 0px;
  color: #000000;
  font-size: 39px;
  font-weight: 700;
  line-height: 21px;
  font-family: "Anek Bangla", sans-serif;
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 5px;
  }
 .visicard-text h2 span img {
    width: 57px;
    }
.visicard-text h5 {
  margin: 0px 0px 8px 0px;
  padding: 0px 0px;
  color: #0170CC;
  font-size: 23px;
  font-weight: 600;
  line-height: 30px;
  font-family: "Anek Bangla", sans-serif;
  width: 100%;
  text-align: left;
  }
.visicard-text p {
  margin: 0px 0px;
  padding: 0px 0px;
  position: relative;
  font-size: 15px;
  color: #000000;
  text-align: left;
  line-height: 21px;
  font-weight: 300;
  }
.mission-section {
  margin: 0px 0px;
  padding: 60px 0px;
  background: #d5d5d55c;
  position: relative;
  width: 100%;
  }
.missicard-img {
  margin: 0px auto;
  padding: 0px 0px;
  background: #fefeff;
  position: relative;
  width: 370px;
  height: 370px;
  overflow: hidden;	
  border-radius: 50%;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 2px 15px 0px;
  }
.missicard-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  }
.missicard-text {
  margin: 0px 0px;
  padding: 12px 0px;
  position: relative;
  width: 100%;
  }
.missicard-text ul {
  margin: 0px 0px 15px 0px;
  padding: 0px 2px;
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  }
.missicard-text ul li {
  background-image: url(../../assets/images/red-circle.png);
  background-repeat: no-repeat;
  padding-left: 20px;
  color: #646161;
  background-size: 12px;
  padding-bottom: 6px;
  background-position: 0 20px;
  font-size: 14px;
  padding-top: 9px;
  width: 100%;
  min-height: 33px;
}

.missicard .heading h3::before {
    background-position: -11px -64px;
}
.missicard-text h2 {
  margin: 0px 0px 16px 0px;
  padding: 0px 0px;
  color: #000000;
  font-size: 39px;
  font-weight: 700;
  line-height: 21px;
  font-family: "Anek Bangla", sans-serif;
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 5px;
  }
.missicard-text h2 span img {
  width: 57px;
  }
.missicard-text h5 {
  margin: 0px 0px 8px 0px;
  padding: 0px 0px;
  color: #0170CC;
  font-size: 23px;
  font-weight: 600;
  line-height: 30px;
  font-family: "Anek Bangla", sans-serif;
  width: 100%;
  text-align: left;
  }
.missicard-text p {
  margin: 0px 0px;
  padding: 0px 0px;
  position: relative;
  font-size: 15px;
  color: #000000;
  text-align: left;
  line-height: 21px;
  font-weight: 300;
  }
.calues-section {
    margin: 0px 0px 60px 0px;
    padding: 0px 0px;
    background: #093D81;
    position: relative;
    width: 100%;
  }
.calueimg{
  margin: 0px 0px;
  padding: 0px 0px;
  position: relative;
  width: 100%;
  height: 100%;
  }
.calueimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  }
.caluestext {
  margin: 0px 0px;
  padding: 34px 14px;
  position: relative;
  width: 90%;
  }
.caluestext h2 {
  margin: 0px 0px 16px 0px;
  padding: 0px 0px;
  color: #ffffff;
  font-size: 39px;
  font-weight: 700;
  line-height: 21px;
  font-family: "Anek Bangla", sans-serif;
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 5px;
  }
.caluestext h2 span img {
  width: 57px;
  }
.caluestext h5 {
  margin: 0px 0px 8px 0px;
  padding: 0px 0px;
  color: #ffffff;
  font-size: 23px;
  font-weight: 600;
  line-height: 30px;
  font-family: "Anek Bangla", sans-serif;
  width: 100%;
  text-align: left;
  }
.caluestext ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
  }
.caluestext ul li {
  background-image: url(../../assets/images/red-circle.png);
  background-repeat: no-repeat;
  padding-left: 20px;
  color: #fff;
  background-size: 12px;
  padding-bottom: 6px;
  background-position: 0 20px;
  font-size: 16px;
  padding-top: 15px;
   }
.missicard .heading h3::before {
  background-position: -11px -64px;
  }

.chancellormessage-section {
    margin: 0px 0px;
    padding: 60px 0px;
    background: #ffffff;
    position: relative;
    width: 100%;
    }
.chancellormessag {
  margin: 0px 0px 33px 0px;
  padding: 30px 35px;
  background: linear-gradient(to right, #3997e314 , #fdfeff0f);
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 34px;
  border: #92b2cc dashed 1px;
  border-radius: 11px;
  box-shadow: rgba(167, 167, 179, 0.2) 0px 0px 30px 0px;
  }
.chancellormessag02 {
  background: linear-gradient(to right, #fdfeff0f , #3997e314);
  justify-content: space-between;
  }
.chancellor-img {
  margin: 0px 0px;
  padding: 0px 0px;
  background: #fff;
  position: relative;
  width: 250px;
  height: 250px;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 2px 15px 0px;
  }
.chancellor-img img {
    width: 100%;
    height: 100%;
    }
.chancellor-text {
  margin: 0px 0px;
  padding: 0px 0px;
  position: relative;
  width: 65%;
  }
.chancellor-text h2 {
  margin: 0px 0px 23px 0px;
  padding: 0px 0px;
  color: #000000;
  font-size: 39px;
  font-weight: 700;
  line-height: 21px;
  font-family: "Anek Bangla", sans-serif;
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 5px;
  }
.chancellor-text h5 {
  margin: 0px 0px 8px 0px;
  padding: 0px 0px;
  color: #0170CC;
  font-size: 23px;
  font-weight: 400;
  line-height: 30px;
  font-family: "Anek Bangla", sans-serif;
  width: 100%;
  text-align: left;
  font-style: italic;
  }

.vicechancellor-section {
  margin: 0px 0px;
  padding: 60px 0px;
  background: #ffffff;
  position: relative;
  width: 100%;
  }
.vicechancellorcard{
  margin: 0px 0px 33px 0px;
  padding: 30px 35px;
  background: linear-gradient(to right, #8dc8f914 , #fdfeff);
  border: #92b2cc dashed 1px;
  border-radius: 11px;
  box-shadow: rgba(167, 167, 179, 0.2) 0px 0px 30px 0px;
  }
.vicechancellorcard p {
  margin: 0px 0px 20px 0px;
  padding: 0px 0px;
  position: relative;
  font-size: 15px;
  color: #444343;
  text-align: left;
  line-height: 27px;
  }
.viceccard {
  margin: 0px 0px 33px 0px;
  padding: 0px 0px;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 34px;
  }
.viceccard-img {
    margin: 0px 0px;
    padding: 0px 0px;
    background: #fff;
    position: relative;
    width: 250px;
    height: 250px;
    overflow: hidden;
    border-radius: 50%;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 2px 15px 0px;
    }
.viceccard-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  }
.viceccard-text {
  margin: 0px 0px;
  padding: 0px 0px;
  position: relative;
  width: 65%;
  }
.viceccard-text h2 {
  margin: 0px 0px 23px 0px;
  padding: 0px 0px;
  color: #000000;
  font-size: 39px;
  font-weight: 700;
  line-height: 21px;
  font-family: "Anek Bangla", sans-serif;
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 5px;
  }
.viceccard-text h5 {
  margin: 0px 0px 8px 0px;
  padding: 0px 0px;
  color: #0170CC;
  font-size: 23px;
  font-weight: 400;
  line-height: 30px;
  font-family: "Anek Bangla", sans-serif;
  width: 100%;
  text-align: left;
  font-style: italic;
  }
.accountsofficer {
  margin: 0px 0px 33px 0px;
  padding: 41px 35px;
  background: #0170CC;
  display: flex;
  align-items: center;
  justify-content: center;
  border: #92b2cc dashed 1px;
  border-radius: 11px;
  box-shadow: rgba(167, 167, 179, 0.2) 0px 0px 30px 0px;
  font-family: "Anek Bangla", sans-serif;
  font-size: 35px;
  font-weight: 600;
  color: #fff;
}
.explorecard{
  margin: 0px 0px;
  padding: 0px 0px;
  position: relative;
  width: 100%;
  background: #FFC800;
  }
.explorecard h3 {
  margin: 0px 0px;
  padding: 15px 0px;
  color: #000;
  font-size: 25px;
  font-weight: 500;
  line-height: 26px;
  font-family: "Anek Bangla", sans-serif;
  width: 100%;
  text-align: center;
  letter-spacing: 1px;
  }
.explorecard h3 a {
  color: #000;
  text-decoration: none;
  }
.partnership-section{
  margin: 0px 0px;
  padding: 60px 0px;
  background: #fff;
  position: relative;
  width: 100%;
  }
.partnership-section h2 {
  margin: 0px 0px 16px 0px;
  padding: 0px 0px;
  color: #000000;
  font-size: 32px;
  font-weight: 700;
  line-height: 21px;
  font-family: "Anek Bangla", sans-serif;
  width: 100%;
  text-align: center;
  }
.partnership-section h6 {
  margin: 0px 0px 38px 0px;
  padding: 0px 15%;
  position: relative;
  font-size: 15px;
  color: #464444;
  text-align: center;
  line-height: 21px;
  }
.partner-footer{
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  width: 100%;
  height: 90px;
  border-top: #FFC800 8px solid;
  z-index: 9;
  background: #fffffff5;
  }
.partner-footerimg {
  margin: 11px auto;
  padding: 0px 0px;
  width: 210px;
  }
.partner-footerimg img {
  width: 100%;
  }
  
.partnerscard {
  margin: 0px 0px 33px 0px;
  padding: 30px 35px;
  background: linear-gradient(to right, #b9e1ff14 , #2f94f933);
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 34px;
  border: #128ef2 dashed 1px;
  border-radius: 11px;
  box-shadow: rgba(167, 167, 179, 0.2) 0px 0px 30px 0px;
  }
.partnerscard-img {
  margin: 0px 0px;
  padding: 0px 0px;
  background: #fff;
  position: relative;
  width: 250px;
  height: 250px;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 2px 15px 0px;
  }
.partnerscard-img img {
  width: 100%;
  height: 100%;
  }
.partnerscard-text {
  margin: 0px 0px;
  padding: 0px 0px 0px 21px;
  position: relative;
  width: 65%;
  }
.partnerscard-text .fa.fa-quote-left {
  font-size: 33px;
  color: #0b86ec;
  margin-left: -37px;
  }
.partnerscard-text h2 {
  margin: 0px 0px 23px 0px;
  padding: 0px 0px;
  color: #000000;
  font-size: 39px;
  font-weight: 700;
  line-height: 21px;
  font-family: "Anek Bangla", sans-serif;
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 5px;
  }
.partnerscard-text h5 {
  margin: 0px 0px 8px 0px;
  padding: 0px 0px;
  color: #0170CC;
  font-size: 23px;
  font-weight: 400;
  line-height: 30px;
  font-family: "Anek Bangla", sans-serif;
  width: 100%;
  text-align: left;
  font-style: italic;
  }
.partnerscard-text p {
  margin: 0px 0px;
  padding: 0px 0px;
  position: relative;
  font-size: 15px;
  color: #444444;
  text-align: left;
  line-height: 23px;
  font-weight: 400;
  }
.contactpage-section {
  margin: 0px 0px;
  padding: 60px 0px ;
  background: #fff;
  position: relative;
  width: 100%;
  }
.contactpage-section h2 {
  margin: 0px 0px 54px 0px;
  padding: 0px 0px;
  color: #000000;
  font-size: 32px;
  font-weight: 700;
  line-height: 21px;
  font-family: "Anek Bangla", sans-serif;
  width: 100%;
  text-align: center;
  }
.contactpage-section h6 {
  margin: 0px 0px 38px 0px;
  padding: 0px 0%;
  position: relative;
  font-size: 15px;
  color: #757272;
  text-align: center;
  line-height: 22px;
  }
.contactleft {
  margin: 0px 0px;
  padding: 0px 0px;
  background: #fff;
  position: relative;
  width: 100%;
  }
.contactleft h3 {
  margin: 0px 0px;
  padding: 15px 0px 30px 0px;
  position: relative;
  font-family: "Anek Bangla", sans-serif;
  color: #093D81;
  font-size: 30px;
  font-weight: 700;
  line-height: 29px;
  text-align: left;
  }
.contactForm {
  margin: 0px 0px;
  padding: 0px 0px;
  background: #fff;
  position: relative;
  width: 100%;
  }
.contactForm .form-group {
  margin-bottom: 27px;
  }
 .contactForm .form-control {
    display: block;
    width: 100%;
    padding: 10px 18px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #a0a9b3;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #dee3e8;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 5px;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  }
.submitbtn{
  margin: 0px 0px;
  padding: 12px 50px;
  position: relative;
  background: #093d81;
  font-family: "Anek Bangla", sans-serif;
  font-size: 19px;
  color: #ffffff;
  font-weight: 600;
  border-radius: 58px;
  border: #093d81 0px solid;
  }
.submitbtn:hover{
	background: #0170CC;
	border: #0170CC 0px solid;
	color: #fff;
}
.contactright{
  margin: 0px 0px;
  padding: 0px 0px 0px 21px;
  background: #fff;
  position: relative;
  width: 100%;
  }
.address-text{
  margin: 0px 0px 18px 0px;
  padding: 22px 20px;
  background: #fff;
  position: relative;
  width: 100%;
  border: #7597ff 1px dashed;
  border-radius: 8px;
  min-height: 120px;
  }
.address-text h4 {
  margin: 0px 0px 8px 0px;
  padding: 0px 0px;
  color: #093D81;
  font-size: 23px;
  font-weight: 700;
  line-height: 21px;
  font-family: "Anek Bangla", sans-serif;
  width: 100%;
  text-align: left;
  }
.address-text h6 {
  margin: 0px 0px;
  padding: 0px 0px;
  position: relative;
  font-size: 15px;
  color: #868686;
  text-align: left;
  line-height: 23px;
  font-weight: 400;
  width: 76%;
  }
.contactmap-section {
  margin: 0px 0px 70px 0px;
  padding: 60px 0px;
  background: #093D81;
  position: relative;
  width: 100%;
  }
.contactmap-section .address-text {
  margin: 0px 0px 18px 0px;
  padding: 22px 20px;
  background: #eef6ff26;
  position: relative;
  width: 100%;
  border: #7597ff 1px dashed;
  border-radius: 8px;
  min-height: 194px;
}
.contactmap-section .address-text h4 {
  font-weight: 500;
  color: #fff;
  }
.contactmap-section .address-text h6 {
  font-weight: 300;
  color: #fff;
  }
.contactmap-section .address-text h6 a{
  font-weight: 300;
  color: #fff;
  text-decoration: none;
  }
.contactmap-section .address-text h6 a:hover{
  color: #fff;
  text-decoration: underline;
  }
.maps{
  margin: 17px 0px 0px 0px;
  padding: 0px 0px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  height: 443px;
  }

.getlatestupdate-section {
  margin: 0px 0px;
  padding: 0px 0px 37px 0px;
  background: #fff;
  position: relative;
  width: 100%;
  }

.getlatest-updates {
  margin: 0px 0px 0px 0px;
  padding: 60px 90px;
  background-image: linear-gradient(rgba(213, 246, 255, 0.78), rgb(30, 176, 248));
  position: relative;
  width: 100%;
  border-radius: 23px;
  }
.getlatest-updates h2 {
  margin: 0px 0px 40px 0px;
  padding: 0px 0px;
  color: #000000;
  font-size: 32px;
  font-weight: 600;
  line-height: 21px;
  font-family: "Anek Bangla", sans-serif;
  width: 100%;
  text-align: center;
  }
.getlatest-updates .form-control {
    display: block;
    padding: 15px 32px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #9ee0fc;
    appearance: none;
    border-radius: 27px !important;
  }
.getlatest-updates .btn {
    display: inline-block;
    font-weight: 600;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: #0170CC !important;
    border: 1px solid transparent;
    padding: 14px 21px;
    font-size: 17px;
    border-radius: 27px;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    letter-spacing: 1px;
  }
.getlatest-updates .input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    margin-left: 20px;
  }
.career-section {
    margin: 0px 0px;
    padding: 60px 0px;
    background: #ffffff;
    position: relative;
    width: 100%;
  }
.career-section .nav-tabs {
    border-bottom: 0px solid #dee2e6;
    display: flex;
    align-items: center;
    gap: 6px;
  }
.career-section .nav-tabs .nav-link.active {
    color: #fff;
    background-color: #093D81;
    border-color: #093D81 #093D81 #fff;
    border: 13px solid;
  }
.career-section .nav-tabs .nav-link:hover {
    color: #fff;
    background-color: #138ED2;
    border-color: #138ED2 #138ED2 #fff;
    border: 13px solid;
  }
.career-section #myTabContent {
  border: #138ED2 1px solid;
  margin: 0px 0px;
  padding: 21px 20px;
  min-height: 400px;
  border-radius: 0px 0px 13px 13px;
  }
.career-section #myTabContent h3 {
    margin: 8px 0px 24px 0px;
    padding: 0px 0px;
    color: #000000;
    font-size: 25px;
    font-weight: 700;
    line-height: 21px;
    font-family: "Anek Bangla", sans-serif;
    width: 100%;
    text-align: left;
  }
.career-section .nav-tabs .nav-link {
    margin-bottom: -1px;
    background: 0 0;
    border: 1px solid transparent;
    border-top-left-radius: 13px;
    border-top-right-radius: 13px;
  }
.career-section .nav-link {
    display: block;
    padding: 6px 29px;
    color: #0d6efd;
    text-decoration: none;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out;
    border: #138ED2 1px solid !important;
    font-weight: 600;
    font-size: 21px;
    font-family: "Anek Bangla", sans-serif;
  }
.table-dark2 {
    text-align: center !important;
    vertical-align: middle !important;
  background: #093D81;
  color: #fff;
  border-color: #093D81;
  }
.career-section #myTabContent thead th {
  font-size: 14px;
  font-weight: 600;
  vertical-align: middle;
  }
.career-section #myTabContent tbody td {
  font-size: 13px;
  font-weight: 300;
  }
.career-section #myTabContent .table > tbody {
  vertical-align: middle;
  }
.viewbtn {
  margin: 0px 0px;
  padding: 8px 17px;
  background: #2260DF;
  color: #fff;
  border-radius: 6px;
  font-weight: 500;
  }
 .viewbtn:hover {
  background: #138ED2;
  color: #fff;
  }


.curriculum-section{
  margin: 0px 0px;
  padding: 22px 15px;
  position: relative;
  background: #f6f6f6;
  width: 100%;
  min-height: 300px;
  overflow: hidden;
  }
.curriculum-section h2 {
  margin: 31px 0px;
  padding: 0px 0px;
  color: #000000;
  font-size: 32px;
  font-weight: 700;
  line-height: 21px;
  font-family: "Anek Bangla", sans-serif;
  width: 100%;
  text-align: center;
  }
.curriculum-section .tab {
  float: left;
  border: 0px solid #ccc;
  background-color: #f1f1f1;
  width: 23%;
  min-height: 336px;
  }
.curriculum-section .tab button {
  background-color: #fff8e9;
  color: black;
  padding: 18px 28px;
  width: 100%;
  border: none;
  outline: none;
  text-align: left;
  cursor: pointer;
  transition: 0.3s;
  font-size: 27px;
  font-family: "Anek Bangla", sans-serif;
  font-weight: 600;
  line-height: 30px;
  border: #e8dcc3 2px solid;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: start;
  min-height: 127px;
  border-radius: 8px;
}
.curriculum-section .tab button:hover {
  background-color: #FFC800;
  color: #000;
  border: #FFC800 2px solid;
  }

.curriculum-section .tab button.active {
  background-color: #FFC800;
  color: #000;
  border: #FFC800 2px solid
}
.curriculum-section .tabcontent {
  float: left;
  padding: 0px 0px 0px 21px;
  border: 0px solid #ccc;
  width: 77%;
  border-left: none;
  min-height: 336px;
}
.coursesbanner {
	margin: 0px 0px;
	padding: 0px 0px;
  width: 100%;
	height: 190px;
	position: relative;
	border-radius: 8px;
	overflow: hidden;
}
.coursesbanner img {
  width: 100%;
	height: 100%;
  object-fit: cover ;
}
.coursesbanner h3 {
  top: 39px;
  padding: 0px 0px;
  position: absolute;
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  line-height: 38px;
  font-family: "Anek Bangla", sans-serif;
  width: 22%;
  text-align: center;
  z-index: 9;
  left: 12px;
  }
.tabcontent ul {
    padding: 0px;
    margin: 0px;
    position: relative;
    column-count: 2;
  }
.tabcontent ul {
  list-style-type: none;
  padding: 33px 0px;
  margin: 0px 0px;
  }  
.tabcontent ul li {
  color: #282828;
  font-size: 15px;
  padding: 0px;
  margin: 0px;
  font-weight: 400;
  line-height: 28px;
  }  
.tabcontent ul li a:hover {
  color: #68a3fb;
  }  
.tabcontent ul li::before {
  font: normal normal normal 6px/1 FontAwesome;
  content: "\f061";
  height: auto;
  width: auto;
  position: relative;
  margin-right: 8px;
  color: #FFC800;
  top: 0px;
  font-size: 12px;
  }
.curricularcard-section{
  margin: 60px 0px;
  padding: 0px 0px;
  position: relative;
  width: 100%;
  }
.curricularcard-section h2 {
  margin: 31px 0px;
  padding: 0px 0px;
  color: #000000;
  font-size: 32px;
  font-weight: 700;
  line-height: 21px;
  font-family: "Anek Bangla", sans-serif;
  width: 100%;
  text-align: center;
  }
.curricularcard-section p {
  margin: 0px 0px 38px 0px;
  padding: 0px 0%;
  position: relative;
  font-size: 15px;
  color: #757272;
  text-align: center;
  line-height: 23px;
  }
.curricularcard-section h6 {
  margin: 53px 0px 31px 0px;
  padding: 0px 0px;
  color: #000000;
  font-size: 25px;
  font-weight: 500;
  line-height: 21px;
  width: 100%;
  text-align: center;
  }
.domaincard{
  margin: 0px 0px;
  padding: 33px 36px;
  background: #093D81;
  position: relative;
  width: 100%;
  min-height: 300px;
  border-radius: 8px;
  }
.domaincard h3 {
  margin: 0px 0px 24px 0px;
  padding: 0px 0px;
  color: #ffffff;
  font-size: 28px;
  font-weight: 600;
  line-height: 30px;
  font-family: "Anek Bangla", sans-serif;
  width: 100%;
  text-align: left;
  }
.domaincard p {
  margin: 0px 0px;
  padding: 0px 0px;
  position: relative;
  font-size: 16px;
  color: #ffffff;
  text-align: left;
  line-height: 23px;
  }
.domaincard02{
  background: #0170CC;
  }
.domaincard03{
  background: #FFC800;
  }

.curriccard-text{
  margin: 110px 0px 0px 0px;
  padding: 0px 0px;
  position: relative;
  width: 100%;
  }
.curriccard-text h2 {
  margin: 0px 0px 8px 0px;
  padding: 0px 0px;
  color: #8a8787;
  font-size: 24px;
  font-weight: 600;
  line-height: 21px;
  width: 100%;
  text-align: left;
  }
.curriccard-text h6 {
  margin: 0px 0px 38px 0px;
  padding: 0px 0%;
  position: relative;
  font-size: 18px;
  color: #8c8c8c;
  text-align: left;
  line-height: 21px;
  font-weight: 400;
  }

.curriccard-text02{
  margin: 177px 0px 0px 0px;
  }
.curriccard-text02 h2 {
  margin: 0px 0px 8px 0px;
  color: #000;
  font-size: 24px;
  line-height: 28px;
  }
.curriccard-text03{
  margin: 110px 0px 0px 0px;
  }
.curriccard-text03 h2 {
  margin: 0px 0px 8px 0px;
  padding: 0px 0px;
  color: #8a8787;
  font-size: 24px;
  font-weight: 600;
  line-height: 21px;
  width: 100%;
  text-align: right;
  }
.curriccard-text03 h6 {
  margin: 0px 0px 38px 0px;
  padding: 0px 0%;
  position: relative;
  font-size: 18px;
  color: #8c8c8c;
  text-align: right;
  line-height: 21px;
  font-weight: 400;
  }
.curriccard-text04{
  margin: 177px 0px 0px 0px;
  }
.curriccard-text04 h2 {
  margin: 0px 0px 8px 0px;
  color: #000;
  font-size: 24px;
  line-height: 28px;
  text-align: right;
  }
.curriccard-footer{
  margin: 0px 0px;
  padding: 33px 0px;
  position: relative;
  width: 100%;
  }
.curriccard-footer h6 {
  margin: 0px 0px 38px 0px;
  padding: 0px 22%;
  position: relative;
  font-size: 20px;
  color: #8c8c8c;
  text-align: center;
  line-height: 26px;
  font-weight: 400;
  }

.faculty-section {
	margin: 0px 0px;
	padding: 60px 0px;
	background: #fff;
	position: relative;
	width: 100%;
}
.faculty-section h2 {
	margin: 0px 0px 16px 0px;
	padding: 0px 0px;
	color: #000000;
	font-size: 32px;
	font-weight: 700;
	line-height: 21px;
	font-family: "Anek Bangla", sans-serif;
	width: 100%;
	text-align: center;
}
.faculty-section h6 {
  margin: 0px 0px 11% 0px;
  padding: 0px 15%;
  position: relative;
  font-size: 16px;
  color: #464444;
  text-align: center;
  line-height: 21px;
  }
.facultycard {
  margin: 89px 0px 10px 0px;
  /* padding: 10px 21px; */
  background: linear-gradient(to right, #3997e314 , #fdfeff0f);
  border: #eaebec solid 1px;
  border-radius: 11px;
  box-shadow: rgba(167, 167, 179, 0.2) 0px 0px 30px 0px;
  min-height: 285px;
  border-bottom: #FFC800 13px solid;
  }
.facultycard-img {
  margin: -74px auto 0px auto;
  padding: 0px 0px;
  background: #fff;
  position: relative;
  width: 115px;
  height: 115px;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 2px 15px 0px;
  }
.facultycard-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  }
.facultycard-text {
  margin: 14px 0px;
  padding: 20px 0px 1px 0px;
  position: relative;
  width: 100%;
  }
.facultycard-text h3 {
  margin: 0px 0px 14px 0px;
  padding: 0px 0px;
  color: #000000;
  font-size: 23px;
  font-weight: 600;
  line-height: 21px;
  font-family: "Anek Bangla", sans-serif;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
}
.facultycard-text h5 {
  margin: 0px 0px 9px 0px;
  padding: 0px 3%;
  position: relative;
  font-size: 17px;
  color: #1f1e1e;
  text-align: center;
  line-height: 22px;
  font-weight: 400;
  }

.facultycard-text p {
  margin: 0px 0px 38px 0px;
  padding: 0px 3%;
  position: relative;
  font-size: 15px;
  color: #6c6b6b;
  text-align: center;
  line-height: 21px;
  font-weight: 400;
  }
.pedagogypage-section h5 {
  margin: 0px 0px 14px 0px;
  padding: 0px 0px;
  color: #000000;
  font-size: 28px;
  font-weight: 500;
  line-height: 33px;
  font-family: "Anek Bangla", sans-serif;
  width: 100%;
  text-align: center;
  }

.internship-section {
  margin: 0px 0px;
  padding: 0px;
  background: #fff;
  position: relative;
  width: 100%;
  }
.internship-section h2 {
  margin: 0px 0px 40px 0px;
  padding: 0px 0px;
  color: #000000;
  font-size: 35px;
  font-weight: 700;
  line-height: 21px;
  font-family: "Anek Bangla", sans-serif;
  width: 100%;
  text-align: left;
  }
.internship-section h6 {
  margin: 0px 0px 38px 0px;
  padding: 0px 15%;
  position: relative;
  font-size: 15px;
  color: #464444;
  text-align: center;
  line-height: 21px;
}
.internship-section .ag-format-container {
  width: 100%;
  margin: 0 auto;
}

.internship-section .ag-photo-gallery_list {
  display: -ms-grid;
  display: grid;
  grid-gap: 28px;
  -ms-grid-columns: 1fr .9375rem 1fr .9375rem 1fr .9375rem 1fr .9375rem 1fr .9375rem 1fr .9375rem 1fr .9375rem 1fr .9375rem 1fr .9375rem 1fr .9375rem 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  -ms-grid-rows: 22.125rem .9375rem 22.125rem .9375rem 22.125rem .9375rem 22.125rem .9375rem 22.125rem .9375rem 22.125rem .9375rem 22.125rem .9375rem 22.125rem .9375rem 22.125rem .9375rem 22.125rem .9375rem 22.125rem .9375rem 22.125rem;
  grid-template-rows: 22.125rem 22.125rem 22.125rem 22.125rem 22.125rem 22.125rem 22.125rem 22.125rem 22.125rem 22.125rem 22.125rem 22.125rem;
  margin-bottom: 65px;
}
.internship-section .ag-photo-gallery_item {
  -ms-grid-column-span: 4;
  grid-column-end: span 4;
  cursor: pointer;
  overflow: hidden;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  position: relative;
 }
.internship-section .ag-photo-gallery_item__wide {
  -ms-grid-column-span: 7;
  grid-column-end: span 7;
}
.internship-section .ag-photo-gallery_item__middle {
  -ms-grid-column-span: 5;
  grid-column-end: span 5;
}
.internship-section .ag-photo-gallery_item__narrow {
  -ms-grid-column-span: 3;
  grid-column-end: span 3;
}
.internship-section .ag-photo-gallery_figure {
  width: 100%;
  height: 100%;

  overflow: hidden;
}
.internship-section .ag-photo-gallery_img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
}


@media only screen and (max-width: 767px) {
.internship-section .ag-format-container {
    width: 96%;
  }
.internship-section .ag-photo-gallery_list {
  grid-gap: 10px;
  -ms-grid-rows: 14rem .9375rem 14rem .9375rem 14rem .9375rem 14rem .9375rem 14rem .9375rem 14rem .9375rem 14rem .9375rem 14rem .9375rem 14rem .9375rem 14rem .9375rem 14rem .9375rem 14rem;
  grid-template-rows: 14rem 14rem 14rem 14rem 14rem 14rem 14rem 14rem 14rem 14rem 14rem 14rem;
  }
}

@media (min-width: 768px) and (max-width: 979px) {
.internship-section .ag-format-container {
  width: 750px;
  }

}

@media (min-width: 980px) and (max-width: 1161px) {
.internship-section .ag-format-container {
  width: 960px;
  }

}


.prominent-section {
	margin: 0px 0px;
	padding: 0px;
	background: #fff;
	position: relative;
	width: 100%;
}
.prominent-section .owl-carousel .owl-dots .owl-dot.active span,
.prominent-section .owl-carousel .owl-dots .owl-dot:hover span {
  background: #3190E7;
  border-radius: 50%;  
}
.prominent-section .owl-carousel .owl-dots{
display: inline-block;
width: 100%;
text-align: center;
}
.prominent-section .owl-carousel .owl-dots .owl-dot{
display: inline-block;
}
.prominent-section.owl-carousel .owl-dots .owl-dot span {
  background: #c0d2e2;
  display: inline-block;
  transition: all 250ms ease-out 0s;
  margin: 0 1px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
}
.prominent-section h2 {
  margin: 0px 0px 22px 0px;
  padding: 0px 0px;
  color: #000000;
  font-size: 35px;
  font-weight: 700;
  line-height: 21px;
  font-family: "Anek Bangla", sans-serif;
  width: 100%;
  text-align: left;
}
.prominent-section h6 {
  margin: 0px 0px 17px 0px;
  padding: 0px 0%;
  position: relative;
  font-size: 15px;
  color: #666;
  text-align: left;
  line-height: 22px;
}

.ourgraduates{
  margin: 40px 0px;
  padding: 30px 35px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 7px;
  border: #128ef2 dashed 1px;
  border-radius: 11px;
  box-shadow: rgba(167, 167, 179, 0.2) 0px 0px 24px 0px;
}
.ourgraduates h4 {
  margin: 0px 0px;
  padding: 0px 0px;
  color: #000000;
  font-size: 27px;
  font-weight: 600;
  line-height: 37px;
  font-family: "Anek Bangla", sans-serif;
  width: 57%;
  text-align: left;
}
.graduateright h5 {
  margin: 0px 0px 9px 0px;
  padding: 0px 0%;
  position: relative;
  font-size: 28px;
  color: #000;
  text-align: right;
  line-height: 22px;
}
.graduateright h6 {
	margin: 0px 0px 17px 0px;
	padding: 3px 0%;
	position: relative;
	font-size: 15px;
	color: #999999;
	text-align: right;
	line-height: 22px;
}
.graduateright h6 a {
	color: #797979;
  text-decoration: none;
  }
.callback-btn {
  margin: 0px 0px;
  padding: 8px 16px;
  position: relative;
  background: #138ED2;
  border:#138ED2 1px solid;
  color: #fff;
  font-weight: 500;
  border-radius: 7px;
  font-size: 15px;
  }
.callback-btn:hover {
  background: transparent;
  color: #138ED2;
  border:#138ED2 1px solid;
  }
.prominent-section h3 {
  margin: 84px 0px 33px 0px;
  padding: 0px 0px;
  color: #000000;
  font-size: 40px;
  font-weight: 700;
  line-height: 21px;
  font-family: "Anek Bangla", sans-serif;
  width: 100%;
  text-align: left;
  }
.recruitergsv-sect {
  border: #e8e8e8 1px solid;
  margin: 0px 0px 20px 0px;
  padding: 7px 31px;
  position: relative;
  overflow: hidden;
  height: 116px;
  object-fit: contain;
  }
.recruitergsv-sect img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  
  }
.learning-exper{
  margin: 27px 0px;
  padding: 0px 0px;
  background: linear-gradient(to right, #1b5aac , #3fa8ff);
  border: #92b2cc dashed 1px;
  border-radius: 11px;
  box-shadow: rgba(167, 167, 179, 0.2) 0px 0px 30px 0px;
  min-height: auto;
  overflow: hidden;
  }
.learning-experimg{
  margin: 0px 0px;
  padding: 0px 0px;
  position: relative;
  width: 100%;
  height: 100%;
  }
.learning-experimg img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  }
.learning-experimg02{
  margin: 0px 0px;
  padding: 0px 0px;
  background: #fff;
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  }
.learning-experimg02 img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  }
.learning-expertext {
  margin: 0px 0px;
  padding: 50px 21px;
  width: 100%;
  position: relative;
  }
.learning-expertext h3 {
  margin: 0px 0px 9px 0px;
  padding: 0px 0px;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  line-height: 30px;
  font-family: "Anek Bangla", sans-serif;
  width: 100%;
  text-align: left;
  position: relative;
  }
.learning-expertext p {
  margin: 0px 0px 8px 0px;
  padding: 0px 0px;
  position: relative;
  font-size: 15px;
  color: #fff;
  text-align: left;
  line-height: 23px;
  }
.learning-expertext p a {
  color: #95e1ff;
  text-decoration: none;
  }
.learning-expertext p a:hover {
  text-decoration: underline;
  }
.specialization-text{
  margin: 0px 0px;
  padding: 40px 0px;
  position: relative;
  width: 100%;
  }
.specialization-text h4 {
  margin: 0px 0px 22px 0px;
  padding: 0px 0px;
  color: #0170CC;
  font-size: 32px;
  font-weight: 700;
  line-height: 36px;
  font-family: "Anek Bangla", sans-serif;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  }
.specialization-text h5 {
  margin: 0px 0px;
  padding: 0px 4%;
  position: relative;
  font-size: 15px;
  color: #797777;
  text-align: center;
  line-height: 23px;
  }
.admissionproces-section{
  margin: 0px 0px;
  padding: 60px 0px;
  position: relative;
  width: 100%;
}
.admissionproces-section h4 {
  margin: 0px 0px 71px 0px;
  padding: 0px 0px;
  color: #0170CC;
  font-size: 32px;
  font-weight: 700;
  line-height: 21px;
  font-family: "Anek Bangla", sans-serif;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  }

.admissionproces-right {
  margin: 0px 0px;
  padding: 0px 0px;
  position: relative;
  }
.procescard {
  margin: 0px 0px 38px 0px;
  padding: 0px 0px;
  position: relative;
  display: flex;
  align-items: center;
  justify-self: start;
  gap: 12px;
  }
.procescard-icon {
  margin: 0px 0px;
  padding: 0px 0px;
  width: 70px;
  height: 70px;
  border: #cccccc5c 3px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  }
.procescard-icon img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  }
.procescard-text {
  margin: 0px 0px;
  padding: 0px 0px;
  width: 80%;
  position: relative;
  }
.procescard-text h3 {
  margin: 0px 0px 8px 0px;
  padding: 0px 0px;
  color: #0170CC;
  font-size: 26px;
  font-weight: 600;
  line-height: 21px;
  width: 100%;
  text-align: left;
  text-transform: uppercase;
  }
.procescard-text p {
  margin: 0px 0px;
  padding: 0px 0px;
  position: relative;
  font-size: 15px;
  color: #4d4b4b;
  text-align: left;
  line-height: 22px;
  }
.clickhere-btn {
  margin: 13px 0px;
  padding: 9px 19px;
  background: #fff;
  border: #0170CC 1px solid;
  color: #0170CC;
  font-size: 16px;
  font-weight: 500;
  border-radius: 30px;
  position: relative;
  width: 155px;
  text-align: center;
  display: block;
  }
.clickhere-btn:hover {
  background: #0170CC;
  border: #0170CC 1px solid;
  color: #fff;
  }
.aboutadmission-section{
  margin: 0px 0px;
  padding: 50px 0px;
  position: relative;
  background: #FFC800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 29px;
  }
.aboutadmission-section h5 {
  margin: 0px 0px;
  padding: 0px 0px;
  color: #000000;
  font-size: 25px;
  font-weight: 300;
  line-height: 21px;
  }
.aboutadmission-section h6 {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  position: relative;
  }
.aboutadmission-section h6 a {
  padding: 10px 27px;
  background: #0170CC;
  border: #0170CC 1px solid;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  }
 .aboutadmission-section h6 a:hover {
  background: #014f8f;
  border: #014f8f 1px solid;
  color: #fff;
  }

.learningexperience-section{
  margin: 0px 0px;
  padding: 60px 0px 0px 0px;
  position: relative;
  width: 100%;
  }
.learningexperience-section h2 {
  margin: 0px 0px 20px 0px;
  padding: 0px 0px;
  color: #0170CC;
  font-size: 32px;
  font-weight: 700;
  line-height: 21px;
  font-family: "Anek Bangla", sans-serif;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  }
.learningexperience-section p {
  margin: 0px 0px 27px 0px;
  padding: 0px 19%;
  position: relative;
  font-size: 15px;
  color: #797777;
  text-align: center;
  line-height: 23px;
  }
.differ-exp ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  }
.differ-exp ul li {
  width: 32%;
  padding: 30px 35px 0px;
  height: 290px;
  border-radius: 10px;
  margin: 2px 2px;
  }
.differ-exp ul li:nth-child(3) {
  width: 34%;
  }
.differ-exp ul li:nth-child(6) {
  width: 34%;
  }
.differ-exp ul li h2 {
  font-size: 32px;
  color: #fff;
  text-align: left;
  }

.differ-exp-img1 {
  background-image: url(../images/course-list-1.png);
  background-repeat: no-repeat;
  background-size: cover;
  }
.differ-exp-img2 {
  background-image: url(../images/course-list-2.png);
  background-repeat: no-repeat;
  background-size: cover;
  }
.differ-exp-img3 {
  background-image: url(../images/course-list-3.png);
  background-repeat: no-repeat;
  background-size: cover;
  }
.differ-exp-img4 {
  background-image: url(../images/course-list-4.png);
  background-repeat: no-repeat;
  background-size: cover;
  }
.differ-exp-img5 {
  background-image: url(../images/course-list-5.png);
  background-repeat: no-repeat;
  background-size: cover;
  }
.differ-exp-img6 {
  background-image: url(../images/course-list-6.png);
  background-repeat: no-repeat;
  background-size: cover;
  }
.differ-exp ul li p {
  margin: 0px 0px;
  padding: 0px 0px;
  font-size: 15px;
  color: #fff;
  text-align: left;
  }
.foundationcourses{
  margin: 0px 0px;
  padding: 0px 0px;
  position: relative;
  width: 100%;
  }
.foundationcourses .table > :not(caption) > * > * {
  padding: 10px 15px;
  }
.foundationcourses .table thead th {
  font-size: 14px;
  font-weight: 600;
  vertical-align: middle;
  }
.foundationcourses .table tbody td {
  font-size: 14px;
  font-weight: 300;
  }
.foundationcourses .table > tbody {
  vertical-align: middle;
  }
.studenttestimonial-section{
  margin: 0px 0px 100px 0px;
  padding: 138px 0px;
  position: relative;
  width: 100%;
  background: #011735;
  }
.studenttestibg {
  top: 0px;
  left: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0.1;
  }
.studenttestibg img{
  width: 100%;
  height: 100%;
  }
.studenttestimonial-section h3 {
  margin: 0px 0px 62px 0px;
  padding: 0px 0px;
  position: relative;
  color: #fff;
  font-size: 46px;
  font-weight: 700;
  line-height: 21px;
  font-family: "Anek Bangla", sans-serif;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  }
.studenttesti-sect{
  margin: 0px 0px;
  padding: 0px 0px;
  position: relative;
  width: 100%;
}
.studenttesti-sect p {
  margin: 0px 0px 35px 0px;
  padding: 0px 0px;
  position: relative;
  font-size: 17px;
  color: #dfdede;
  text-align: center;
  line-height: 26px;
}
.studenttesti-sect h5 {
  margin: 0px 0px;
  padding: 0px 0px;
  position: relative;
  font-family: "Poppins", sans-serif;
  color: #fff;
  font-size: 27px;
  font-weight: 400;
  line-height: 21px;
  text-decoration: unset;
  width: 100%;
  text-align: center;
  }
.understanding-section {
  margin: 0px 0px;
  padding: 60px 0px;
  background: #ffffff;
  position: relative;
  width: 100%;
  }
.understanding-section h2 {
  margin: 0px 0px 40px 0px;
  padding: 0px 0px;
  color: #000000;
  font-size: 35px;
  font-weight: 700;
  line-height: 21px;
  font-family: "Anek Bangla", sans-serif;
  width: 100%;
  text-align: center;
  }
.understanding-section .table > :not(caption) > * > * {
  padding: 10px 15px;
  }
.understanding-section .table thead th {
  font-size: 14px;
  font-weight: 600;
  vertical-align: middle;
  }
.understanding-section .table tbody td {
  font-size: 14px;
  font-weight: 300;
  }
.understanding-section .table > tbody {
  vertical-align: middle;
  }
.antennadesignlab-section {
    margin: 0px 0px;
    padding: 60px 0px;
    background: #ffffff;
    position: relative;
    width: 100%;
    }
.antennadesignlab-section h2 {
    margin: 0px 0px 40px 0px;
    padding: 0px 0px;
    color: #000000;
    font-size: 35px;
    font-weight: 700;
    line-height: 21px;
    font-family: "Anek Bangla", sans-serif;
    width: 100%;
    text-align: center;
    }
.antennadesignlab-section p {
  margin: 0px 0px 38px 0px;
  padding: 0px 0%;
  position: relative;
  font-size: 15px;
  color: #757272;
  text-align: center;
  line-height: 22px;
  }
.designlabcard{
  margin: 0px 0px 17px 0px;
  padding: 0px 0px;
  width: 100%;
  height: 400px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  }
.designlabcard img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    }
/* .designlabcard .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #FFB300D4;
  overflow: hidden;
  width: 100%;
  height: 12px;
  transition: .5s ease;
  }
.designlabcard:hover .overlay {
  height: 10%;
  } */

.objectiveslab{
  margin: 0px 0px;
  padding: 14px 0px 26px 0px;
  position: relative;
  width: 100%;
  }
 .objectiveslab h3 {
  margin: 0px 0px 22px 0px;
  padding: 0px 0px;
  color: #000000;
  font-size: 32px;
  font-weight: 600;
  line-height: 21px;
  font-family: "Anek Bangla", sans-serif;
  width: 100%;
  text-align: left;
  }
.objectiveslab ol {
  margin: 0px 0px;
  padding: 0px 14px;
  position: relative;
  width: 100%;
  }
.objectiveslab ol li {
  margin-top: 0;
  margin-bottom: 8px;
  color: #403e3e;
  font-size: 15px;
  font-weight: 400;
  line-height: 21px;
  }

.newsevent-section {
  margin: 0px 0px;
  padding: 46px 0px 10px 0px;
  background: #ffffff;
  position: relative;
  width: 100%;
  }
.newsevent-section h2 {
  margin: 0px 0px 12px 0px;
  padding: 0px 0px;
  color: #000000;
  font-size: 28px;
  font-weight: 700;
  line-height: 30px;
  font-family: "Anek Bangla", sans-serif;
  width: 100%;
  text-align: center;
  position: relative;
  }
.newsevent-section h3 {
  margin: 0px 0px 28px 0px;
  padding: 0px 0px;
  color: #000000;
  font-size: 27px;
  font-weight: 400;
  line-height: 30px;
  font-family: "Anek Bangla", sans-serif;
  width: 100%;
  text-align: center;
  position: relative;
  }

.newsevent-section p {
  margin: 0px 0px 38px 0px;
  padding: 0px 0%;
  position: relative;
  font-size: 15px;
  color: #757272;
  text-align: center;
  line-height: 24px;
  }
.newseventcard-secti{
  margin: 0px 0px;
  padding: 0px 0px;
  position: relative;
  width: 100%;
}
.literaryclub-section {
  margin: 0px 0px;
  padding: 50px 0px;
  background: #ffffff;
  position: relative;
  width: 100%;
  }
.literaryclub-section h2 {
    margin: 0px 0px 54px 0px;
    padding: 0px 0px;
    color: #000000;
    font-size: 32px;
    font-weight: 700;
    line-height: 21px;
    font-family: "Anek Bangla", sans-serif;
    width: 100%;
    text-align: center;
  }
.literaryclub-section.learning-expertext p {
  margin: 0px 0px;
  padding: 0px 0%;
  position: relative;
  font-size: 15px;
  color: #fff;
  text-align: left;
  line-height: 27px;
}
.literaryclub-section h6 {
  margin: 0px 0px 18px 0px;
  padding: 0px 0px;
  color: #403e3e;
  font-size: 15px;
  font-weight: 400;
  line-height: 21px;
  }    

.literaryclub-section ol {
  margin: 0px 0px;
  padding: 0px 14px;
  position: relative;
  width: 100%;
  }
.literaryclub-section ol li {
  margin-top: 0;
  margin-bottom: 14px;
  color: #403e3e;
  font-size: 15px;
  font-weight: 400;
  line-height: 21px;
  }
.literaryclub-card{
  margin: 0px 0px;
  padding: 0px 0px;
  position: relative;
  width: 100%;
  }
.literaryclub-card h6 {
  margin: 40px 0px 9px 0px;
  padding: 0px 0px;
  color: #000000;
  font-size: 28px;
  font-weight: 700;
  line-height: 30px;
  font-family: "Anek Bangla", sans-serif;
  width: 100%;
  text-align: left;
  position: relative;
  }
.literaryclub-card h2 {
  margin: 40px 0px 30px 0px;
  padding: 0px 0px;
  color: #000000;
  font-size: 28px;
  font-weight: 700;
  line-height: 30px;
  font-family: "Anek Bangla", sans-serif;
  width: 100%;
  text-align: center;
  position: relative;
  }
.literaryclub-card h3 {
  margin: 0px 0px 10px 0px;
  padding: 0px 0px;
  color: #000000;
  font-size: 27px;
  font-weight: 400;
  line-height: 30px;
  font-family: "Anek Bangla", sans-serif;
  width: 100%;
  text-align: center;
  position: relative;
  }
.literaryclub-card p {
  margin: 0px 0px 19px 0px;
  padding: 0px 0%;
  position: relative;
  font-size: 15px;
  color: #757272;
  text-align: left;
  line-height: 24px;
  }

.departmentplanning-section {
  margin: 0px 0px;
  padding: 25px 0px;
  background: #ffffff;
  position: relative;
  width: 100%;
  }
.departmentleft{
  margin: 10px 0px;
  padding: 0px 0px;
  background: #ffffff;
  position: relative;
  width: 100%;
  }
.departmenthead{
  margin: 0px 0px;
  padding: 0px 0px;
  background: #ffffff;
  position: relative;
  width: 100%; 
  
  }
.departmenthead h2 {
  margin: 12px 0px 29px 0px;
  padding: 0px 0px;
  color: #000000;
  font-size: 28px;
  font-weight: 600;
  line-height: 21px;
  font-family: "Anek Bangla", sans-serif;
  width: 100%;
  text-align: left;
  }
.department-banner{
    margin: 0px 0px;
    padding: 0px 0px;
    background: #ffffff;
    position: relative;
    width: 100%; 
    }
.department-banner .owl-carousel .owl-nav.disabled {
  display: block;
  }
    .department-banner .owl-nav .owl-prev {	
      background: transparent;
      top: 37%;
      position: absolute;
      left: 22px;
      opacity: 1;
      color: gray !important;
      font-size: 20px !important;
      font-weight: 300 !important;
      }
      .department-banner .owl-nav .owl-next {
      background: transparent;
      top: 37%;
      position: absolute;
      right: 22px;
      opacity: 1;
      font-weight: 300 !important;
      color:gray !important;
      font-size: 20px !important;
       } 
       @media screen and (max-width: 768px) {  
    .department-banner .owl-nav .owl-prev,  
    .department-banner .owl-nav .owl-next {  
        color: white !important;  /* Change color to white */
    }
}
.department-card {
    margin: 0px 0px;
    padding: 0px 0px;
    position: relative;
    width: 100%;
    }
.department-card h2 {
      margin: 40px 0px 30px 0px;
      padding: 0px 0px;
      color: #000000;
      font-size: 28px;
      font-weight: 700;
      line-height: 30px;
      font-family: "Anek Bangla", sans-serif;
      width: 100%;
      text-align: left;
      position: relative;
    }
 .department-card p {
      margin: 0px 0px 19px 0px;
      padding: 0px 0%;
      position: relative;
      font-size: 15px;
      color: #757272;
      text-align: left;
      line-height: 24px;
    }
    .department-card ol {
      margin: 0px 0px;
      padding: 0px 14px;
      position: relative;
      width: 100%;
      }
      .department-card ol li {
      margin-top: 0;
      margin-bottom: 14px;
      color: #403e3e;
      font-size: 15px;
      font-weight: 400;
      line-height: 21px;
      }
.departmentright{
  margin: 0px 0px;
  /* padding: 24px 10px; */
  position: relative;
  background: #fff;
  min-height: 166px;
  overflow: hidden;
  border-radius: 16px;
  border-bottom: #2260DF 13px solid;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 2px 15px 0px;
  width: 272px;
  }
.departmentright h3 {
  margin: 0px 0px;
  padding: 0px 7px;
  color: #000000;
  font-size: 24px;
  font-weight: 600;
  line-height: 21px;
  font-family: "Anek Bangla", sans-serif;
  width: 100%;
  text-align: left;
  }
.departmentright ul{
  margin: 0px 0px 15px 0px;
  
  position: relative;
  width: 100%;
  }
.departmentright li {
  margin: 0px 0px 6px 0px;
  position: relative;
  color: #444444;
  text-align: left;
  list-style: none;
  }
.departmentright li a {
  padding: 10px 13px;
  background: #f4f5f7;
  font-size: 15px;
  color: #444444;
  line-height: 21px;
  font-weight: 400;
  text-decoration: none;
  border-bottom: #eaeaea 1px solid;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
  }
.departmentright li a:hover {
  background: #0d6efd;
  color: #fff;
  text-decoration: none;
  }
  
.departmentright li a.active {
  background: #0d6efd;
  color: #fff;
  text-decoration: none;
  }  
  
  
  
.newslist-sect {
    margin: 17px 0px 28px 0px;
    padding: 26px 25px 23px 25px;
    position: relative;
    background: #fff;
    min-height: 166px;
    overflow: hidden;
    border-radius: 16px;
    border-bottom: #093D81 13px solid;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 2px 15px 0px;
    border-bottom: #FFC800 13px solid;
  }
.newslist-sect .nav-tabs {
  border-bottom: 0px solid #dee2e6;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 19px;
  }
  
.newslist-sect .nav-link {
  display: block;
  padding: 9px 26px !important;
  color: #0170cc;
  text-decoration: none;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out;
  font-size: 18px;
  font-family: "Anek Bangla", sans-serif;
  border-radius: 35px !important;
  }
.newslist-sect .nav-tabs .nav-link {
  margin-bottom: 0px !important;
  border: #0170cc 1px solid;
  border-radius: 35px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-weight: 600;
  }
.newslist-sect .nav-tabs .nav-link.active {
  color: #fff;
  background-color: #0170cc;
  }
.nav-tabs .nav-link:hover {
  color: #fff;
  background-color: #0170cc;
  }
.newslist-sect .tab-content{
  padding: 29px 7px;
  margin: 0px 0px;
  position: relative;
  width: 100%;
  }
.campuscard-text02 {
    margin: 0px 0px 13px 0px;
    padding: 0px 0px 12px 0px;
    position: relative;
    width: 100%;
    border-bottom: #D8D8D8 1px solid;
  }
  .noticescard-text {
    margin: 0px 0px;
    padding: 10px 0px;
    border-bottom: #cccccca8 1px solid;
  }

/* ============== Madhuparna Css ============== */
  .round-box {
    width: 130px;
    height: 130px;
    background: #2e405f;
    border-radius: 50%;
    margin: 0px auto;
    display: block;
    padding: 20px 10px;
    border: 2px #ccc dashed;
    text-align: center;
    font-size: 60px;
    color: #fff;
    position: relative;
  }

  .round-box::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    clip-path: polygon(100% 0, 0 0, 50% 100%);
    color: #000;
    background: #000;
  }




  .b-tech-in-transport-top .career-section #myTabContent {
    border: #CBA758 1px solid;
    margin: 0px 0px;
    padding: 21px 20px;
    min-height: 227px;
    border-radius: 0px 0px 13px 13px;
  }

  .b-tech-in-transport-top .career-section .nav-tabs {
    border-bottom: 0px solid #dee2e6;
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: space-between;
  }


  .round-box::nth-child(2n) {
    color: #caa655;
  }


  .b-tech-in-transport-top .career-section .nav-link {
    display: block;
    padding: 9px 29px;
    color: #2e405f;
    text-decoration: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
    border: none !important;
    font-weight: 600;
    font-size: 22px;
    font-family: "Anek Bangla", sans-serif;
    margin: 15px 0px;
  }

  .b-tech-in-transport-top .career-section .nav-tabs .nav-link.active {
    color: #caa655;
    background-color: transparent;
    border-color: #fff;
  }

  .b-tech-in-transport-top .career-section .nav-tabs .nav-link:hover {
    color: #caa655;
    background-color: transparent;
    border-color: #fff;
  }



  .tab-pane h3 {
    font-size: 28px !important;
    color: #2e405f !important;
    padding: 0px !important;
    margin: 0px 0px 15px 0px !important;
  }
/* ============== Department Css ============== */
.departmentnumber{
  margin: 0px 0px 30px 0px;
  padding: 0px 0px;
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  }
.facultcard{
  margin: 0px 0px;
  padding: 10px 10px;
  position: relative;
  background: #F9FBFF;
  border: #92b2cc dashed 1px;
  min-height: 113px;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: rgba(2, 2, 2, 0.21) 0px 3px 12px -5px;
  width: 158px;
  }
.dtext{
  margin: 6px 0px 4px 0px;
  padding: 0px 0px;
  width: 100%;
  color: #000000;
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  font-family: "Anek Bangla", sans-serif;
  width: 100%;
  text-align: right;
  position: relative;
}
.facultcard h4 {
  margin: 12px 0px 4px 0px;
  padding: 0px 0px;
  color: #000000;
  font-size: 25px;
  font-weight: 600;
  line-height: 30px;
  font-family: "Anek Bangla", sans-serif;
  width: 100%;
  text-align: center;
  position: relative;
}
.facultcard h5 {
  margin: 0px 0px;
  padding: 0px 0%;
  position: relative;
  font-size: 14px;
  color: #757272;
  text-align: center;
  line-height: 17px;
  font-weight: 400;
  }
.peoplecard{
  margin: 0px 0px;
  padding: 0px 0px;
  position: relative;
  width: 100%;
}
.peoplecard .nav-tabs {
	border-bottom: 1px solid #2260df;
}
.peoplecard .nav {
	display: flex;
	flex-wrap: wrap;
	padding-left: 0;
	margin-bottom: 0;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: start;
	gap: 10px;
}
.peoplecard .nav-tabs .nav-link {
	border-top-left-radius: 11px;
	border-top-right-radius: 11px;
}
.peoplecard .nav-link {
  display: block;
  padding: 7px 19px !important;
  color: #2260df;
  text-decoration: none;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out;
  font-size: 18px;
  font-weight: 500;
  font-family: "Anek Bangla", sans-serif;
  border: #2260df 1px solid !important;
}
.peoplecard .nav-link:hover {
	background: #2260df !important;
	color: #fff !important;
  }
.peoplecard .nav-link.active {
	background: #2260df !important;
	color: #fff !important;
  }
.presentation-head{
  margin: 0px 0px 20px 0px;
  padding: 11px 21px;
  background: linear-gradient(to right, #3997e314 , #fdfeff0f);
  border: #92b2cc dashed 1px;
  border-radius: 7px;
  font-size: 18px;
  font-weight: 600;
  line-height: 21px;
  font-family: "Anek Bangla", sans-serif;
  color: #2260DF;
  box-shadow: rgba(167, 167, 179, 0.2) 0px 0px 5px 0px;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 8px;
  }
.peoplecard .tab-content {
  padding: 20px 10px;
  }
.facultycard-sect{
  margin: 0px 0px 28px 0px;
  padding: 18px 25px 44px 25px;
  position: relative;
  background: #fff;
  min-height: 166px;
  overflow: hidden;
  border-radius: 16px;
  border-bottom: #093D81 13px solid;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 2px 15px 0px;
  border-bottom: #FFC800 13px solid;
}
.facultycard-sect h6{
  margin: 7px 0px 23px 0px;
  padding: 0px 0px;
  color: #000000;
  font-size: 25px;
  font-weight: 600;
  line-height: 21px;
  font-family: "Anek Bangla", sans-serif;
  width: 100%;
  text-align: left;
  text-transform: uppercase;
}
.professor-sect{
  margin: 0px 0px 15px 0px;
  padding: 23px 23px;
  position: relative;
  background: #fff;
  border-radius: 6px;
  box-shadow: rgba(100, 100, 111, 0.15) 0px 1px 11px 0px;
  border: #cccccc8a 1px solid;
  }
.professor-sectimg {
  margin: 0px 0px 19px 0px;
  padding: 6px;
  position: relative;
  width: 100%;
  border: #cccccc8a 1px solid;
  border-radius: 3px;
  }
.professor-sectimg img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  }
.professor-secttext{
  margin: 0px 0px;
  padding: 7px 0px;
  position: relative;
  }
.professor-secttext h4 {
  margin: 0px 0px 11px 0px;
  padding: 0px 0px;
  color: #000000;
  font-size: 25px;
  font-weight: 600;
  line-height: 28px;
  font-family: "Anek Bangla", sans-serif;
  width: 100%;
  text-align: left;
  text-transform: uppercase;
  }
.professor-secttext h5 {
  margin: 0px 0px 5px 0px;
  padding: 0px 0px;
  position: relative;
  font-size: 17px;
  color: #1f1e1e;
  text-align: left;
  line-height: 22px;
  font-weight: 400;
  }
  
.professor-secttext p {
  padding: 0px 0px;
  position: relative;
  font-size: 15px;
  color: #6c6b6b;
  text-align: left;
  line-height: 21px;
  font-weight: 400;
  }
.profilecard-sect{
  margin: 5px 0px 28px 0px;
  padding: 26px 25px 23px 25px;
  position: relative;
  background: #fff;
  min-height: 166px;
  overflow: hidden;
  border-radius: 16px;
  border-bottom: #093D81 13px solid;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 2px 15px 0px;
  border-bottom: #FFC800 13px solid;
  }
  .aboutgsv-secttext ul{
    margin: 0px 0px 15px 0px;
    padding: 17px 2px;
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 11px;
    }
  .aboutgsv-secttext li{
    margin: 0px 0px 1px 0px;
    padding: 13px 13px;
    position: relative;
    font-size: 20px;
    color: #fff;
    line-height: 20px;
    font-weight: 500;
    list-style: none;
    width: 32%;
    min-height: 120px;
    }
  .aboutgsvbg01{
    background: #093D81;
    }
  .aboutgsvbg02{
    background: #138ED2;
    }
  .aboutgsvbg03{
    background: #2260DF;
    }
  .aboutgsvbg04{
    background: #FFC800;
    }

.qualificard-sect {
    margin: 17px 0px 28px 0px;
    padding: 26px 25px 23px 25px;
    position: relative;
    background: #fff;
    min-height: 166px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 2px 15px 0px;
    border-left: #FFC800 4px solid;
  }
.qualificard-sect .accordion-item {
    background-color: #fff;
    border: 1px solid rgba(0,0,0,.125) !important;
    margin-bottom: 12px;
    border-radius: 6px;
    overflow: hidden;
  }
  .qualificard-sect .accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 18px;
    color: #212529;
    text-align: left;
    background-color: #fff;
    border: 0;
    border-radius: 0;
    overflow-anchor: none;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,border-radius .15s ease;
    gap: 7px;
    font-weight: 500;
  }
  .qualificard-sect h5{
    margin: 0px 0px 11px 0px;
    padding: 0px 0px;
    color: #000000;
    font-size: 23px;
    font-weight: 600;
    line-height: 21px;
    font-family: "Anek Bangla", sans-serif;
    width: 100%;
    text-align: left;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 7px;
  }
  .qualificard-sect h5 .fa{
    font-size:17px;
     }
  .qualificard-sect p {
    margin: 0px 0px 19px 0px;
    padding: 0px 0%;
    position: relative;
    font-size: 15px;
    color: #313030;
    text-align: left;
    line-height: 24px;
  }
.qualificard-secttext{
  margin: 0px 0px;
  padding: 0px 0px;
  position: relative;
  height: 300px;
  overflow-y: scroll;
}

.aboutgsv-secttext p {
  padding: 0px 0px 18px 0px;
  position: relative;
  font-size: 15px;
  color: #6c6b6b;
  text-align: left;
  line-height: 22px;
  font-weight: 400;
  }
.aboutgsv-secttext h2 {
    margin: 0px 0px 5px 0px;
    padding: 0px 0px;
    color: #000000;
    font-size: 28px;
    font-weight: 700;
    line-height: 30px;
    font-family: "Anek Bangla", sans-serif;
    width: 100%;
    text-align: left;
    position: relative;
  }
  .professor-css h4
  {
    color: #0170CC;
  }
.aboutgsv-secttext h3 {
    margin: 0px 0px 10px 0px;
    padding: 0px 0px;
    color: #000000;
    font-size: 25px;
    font-weight: 400;
    line-height: 30px;
    font-family: "Anek Bangla", sans-serif;
    width: 100%;
    text-align: left;
    position: relative;
  }
.aboutgsvright {
  margin: 16px 0px;
  padding: 24px 0px;
  position: relative;
  background: #fff;
  min-height: 166px;
  overflow: hidden;
  border-radius: 16px;
  border-bottom: #DFDFDFD4 7px solid;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 2px 7px 0px;
  }
.aboutgsvright h3 {
  margin: 0px 0px 0px 0px;
  padding: 0px 13px;
  color: #000000;
  font-size: 24px;
  font-weight: 600;
  line-height: 21px;
  font-family: "Anek Bangla", sans-serif;
  width: 100%;
  text-align: left;
  }

.goback-btn {
  border: #0170CC 1px solid;
  /* margin: 15px 0px; */
  padding: 10px 28px;
  color: #0170CC;
  position: relative;
  border-radius: 34px;
  }
.goback-btn:hover {
  background: #0170CC;
  color: #fff;
  }

  .researchproject-section {
    margin: 0px 0px;
    padding: 60px 0px;
    background: #fff;
    position: relative;
    width: 100%;
  }
  .researchproject-sect {
    margin: 17px 0px 28px;
    padding: 6px 12px 25px 12px;
    position: relative;
    background: rgb(255, 255, 255);
    min-height: 166px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 2px 15px 0px;
    border-bottom: 13px solid rgb(255, 200, 0);
  }
.researchpro-text {
    margin: 0px 0px 30px 0px;
    padding: 7px 21px;
    font-size: 25px;
    color: #000;
    font-family: "Anek Bangla", sans-serif;
    background: linear-gradient(to right, #3997e314 , #fdfeff0f);
    border: #73b9ff dashed 1px;
    border-radius: 11px;
    box-shadow: rgba(167, 167, 179, 0.2) 0px 0px 21px 0px;
    font-weight: 600;
  }
  .researchpro-text .fa-solid {
    font-size: 20px;
    }
.publication-sect{
  margin: 0px 0px 0px 0px;
  padding: 12px 0px 7px 0px;
  width: 100%;
  border-bottom: #e3dfdf 1px solid;
  }
.publicationhead{
  margin: 17px 0px 17px 0px;
  padding: 5px 22px;
  font-family: "Anek Bangla", sans-serif;
  position: relative;
  background: linear-gradient(to right, #eaf01714 , #f8fbff0f);
  overflow: hidden;
  border-radius: 4px;
  box-shadow: rgba(146, 146, 162, 0.2) 0px 0px 15px 0px;
  border-bottom: #EEEADD 1px solid;
  border-left: #FFC800 4px solid;
  font-size: 23px;
  font-weight: 600;
  }
.publication-sect h6 {
  margin: 0px 0px 9px 0px;
  padding: 0px 0px;
  position: relative;
  font-size: 15px;
  color: #555353;
  text-align: left;
  line-height: 20px;
  font-weight: 400;
  }
/* ============== Footer Css ============== */
.footer-section {
  position: relative;
  background: transparent;
  padding: 0px;
  margin: 0px;
  height: auto;
  overflow: hidden;
  }

.footertopbg {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  }
.footertopbg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  }
.footerlogo {
  margin: 66px auto 0px auto;
  padding: 0px 0px;
  position: relative;
  width: 169px;
  }

.footerinner{
  position: relative;
  padding: 80px 0px;
  margin: 0px;
}

.footer-text {
  padding: 0px;
  margin: 0px;
  position: relative;
}
.footer-text h2 {
  padding: 0px 0px;
  margin: 0px 0px 15px 0px;
  position: relative;
  text-align: left;
  color: #fff;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 0px;
}
.gettouch h5  {
  margin: 0px 0px 13px 0px;
  padding: 0px 0px;
  color: #bfbfbf;
  width: 100%;
  position: relative;
  line-height: 21px;
  font-size: 15px;
  display: flex;
  justify-content: start;
	}
.gettouch h5 a {
	color: #fff;
	text-decoration: none;
	}
.gettouch h5 a:hover {
	color: #68a3fb;
	text-decoration: none;
	}
.gettouch h5 span {
  width: 56px;
  float: left;
  color: #3DCCAF;
  font-size: 14px;
  text-align: center;
  margin-right: 9px;
	}
.gettouch h5 span .fa img {
	width: 100%;
	}
.gettouch p  {
	margin: 0px 0px;
	padding: 0px 0px;
	color: #fff;
	width: 100%;
	position: relative;
	min-height: 37px;
	font-size: 15px;
	}
.gettouch p a {
	color: #fff;
	text-decoration: none;
	}
.gettouch p a:hover {
	color: #68a3fb;
	text-decoration: none;
	}
.gettouch p span {
	width: 17px;
	float: left;
	color: #3DCCAF;
	font-size: 14px;
	text-align: center;
	margin-right: 9px;
	}
.gettouch p span .fa img {
	width: 100%;
	}

.footer-menu {
  padding: 39px 0px 0px 0px;
  margin: 0px;
}
.applicationbtn {
	margin: 0px 0px;
	padding: 9px 12px;
	position: relative;
	color: #fff;
	border: #0C87C5 1px solid;
	border-radius: 27px;
	font-size: 15px;
	font-weight: 500;
}
.applicationbtn:hover {
 background: #0C87C5;
	color: #fff;
  }
.footer-menu h4 {
  padding: 0px 0px;
  margin: 23px 0px 0px 0px;
  position: relative;
  text-align: left;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0px;
}
.footer-menu ul {
  padding: 0px;
  margin: 0px;
  position: relative;
  column-count: 3;
}

.footer-menu ul li {
  list-style-type: none;
  padding: 0px 0px 7px 0px;
  margin: 0px;
}

.footer-menu ul li a {
  color: #fff;
  font-size: 14px;
  padding: 0px;
  margin: 0px;
  font-weight: 400;
}

.footer-menu ul li a:hover {
  color: #68a3fb;
}

.footer-menu ul li::before {
  font: normal normal normal 6px/1 FontAwesome;
  content: "\f111";
  height: auto;
  width: auto;
  position: relative;
  margin-right: 8px;
  color: #FFC800;
  top: -3px;
}
.footer-social-icons {
	margin: 15px 0px 2px 0px;
	padding: 0px 0px;
	position: relative;
	width: auto;
	border: 0px;
	display: flex;
	align-items: center;
	justify-content: start;
	gap: 5px;
	}
.footer-social-icons a .fa{
  margin: 0px 0px;
  padding: 6px 0px;
  font-size: 9px;
  color: #000;
  background: #3771C8;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  line-height: 20px;
  text-align: center;
  border: #3771C8 1px solid;
	}
.footer-social-icons a .fa img{
	width: 15px;
	}
.footer-social-icons a .fa:hover{
	color: #ffffff;
	background: #ffffff14;
	border: #3771C8 1px solid;
	}
.copyright {
  margin: 0px 0px;
  padding: 18px 0px;
  position: relative;
  background: #0A264B;
  text-align: center;
  color: #fff;
  font-size: 13px;
  }
.copyright p {
  color: #FFFFFF;
}
/* ============== Footer css End ============== */

/* ============== Navbar Css ============== */
.navbar {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
  margin: 0px 0px;
	padding:0px 0px;
	background: #0170CC;
}
.nav-link {
	display: block;
	padding: 8px 22px !important;
	color: #fff;
	text-decoration: none;
	transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out;
	font-size: 18px;
	font-family: "Anek Bangla", sans-serif;
}
.rightarrow01{
  height: 100%;
}
.rightarrow01::before {
  content: '';
  background: #cecdcd;
  position: absolute;
  width: 1px;
  height: 100%;
  right: -9px;
  top: -12px;
  bottom: 0px;
  }
.separate .rightarrow01::before {
  content: '';
  background: #cecdcd;
  position: absolute;
  width: 1px;
  height: 100%;
  right: -9px;
  top: -12px;
  bottom: 0px;
  }
/*.dropdown-submenu {*/
/*	display: flex;*/
/*	align-items: center;*/
/*	justify-content: center;*/
/*	width: 100%;*/
/*    }*/
/*.dropdown-submenu ul {*/
/*  margin:0px 0px;*/
/*  display: block;*/
/*  width: 100%;*/
/*  padding: 0px 0px;*/
/*}*/
 
.institute-dropdown{
   }
.institute-dropdown .dropdown-menu {
  background: #F9F9F9;
  color: #fff;
  width: 53%;
  left: 16%;
   border-bottom-right-radius: 64px !important;
   border-bottom: 20px solid gold !important;
   
  
  
    margin-left: 200px;    
    /* the about lin is done by ishaan margin-left: 283px; */

   
  }
.administration-dropdown .dropdown-menu {
  background: #F9F9F9;
  color: #fff;
  /* width: 56%;  this is done by company*/
  width: auto;
 left: 16%;
 border-bottom-right-radius: 64px !important;
  
  
    margin-left: 283px;    
    /* the about lin is done by ishaan margin-left: 283px; */
       border-bottom: 20px solid gold !important;

  }
  
.students-dropdown .dropdown-menu {
  background: #F9F9F9;
  color: #fff;
  /* width: 62%; this is done by company*/
 width: 29%;
  left: 16%;
  border-bottom-right-radius: 64px !important;
  
     border-bottom: 20px solid gold !important;

    margin-left: 716px;    
  }


.academics-dropdown .dropdown-menu {
  background: #F9F9F9;
  color: #fff;
  width: 47%;
  left: 46.8%;
 border-bottom-right-radius: 64px !important;
    border-bottom: 20px solid gold !important;


  }

/* Responsive adjustments for screens below 1024px */
@media (max-width: 1024px) {
  .institute-dropdown .dropdown-menu,
  .administration-dropdown .dropdown-menu,
  .students-dropdown .dropdown-menu {
    width: 90%; /* Use a larger percentage to fit smaller screens */
    left: 5%; /* Center dropdowns more */
    margin-left: 0; /* Reset margin for smaller screens */
    margin-right: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Add a slight shadow for visibility */
 
  }
}

/* Optional: Further tweaks for mobile devices */
@media (max-width: 768px) {
  .institute-dropdown .dropdown-menu,
  .administration-dropdown .dropdown-menu,
  .students-dropdown .dropdown-menu {
    width: 95%;
    left: 2.5%;
  }
}

@media (max-width: 480px) {
  .institute-dropdown .dropdown-menu,
  .administration-dropdown .dropdown-menu,
  .students-dropdown .dropdown-menu {
    width: 100%;
    left: 0;
    border-radius: 0; /* Full-width dropdown for very small screens */
  }
}

.separate .rightarrow03::before {
  content: '';
  background: #cecdcd;
  position: absolute;
  width: 1px;
  height: 100%;
  right: -15px;
  top: -8px;
  bottom: 0px;
  }
.academics-dropdown .dropdown-menu {
  background: #F9F9F9;
  color: #fff;
  width: 47%;
  left: 46.8%;
  }
.dropdown-menu h6 {
  margin: 12px 0px;
  padding: 9px 9px;
  background: #CEE3FF;
  color: #08418C;
  font-size: 18px;
  font-weight: 500;
  line-height: 21px;
  font-family: "Anek Bangla", sans-serif;
  width: 100%;
  text-align: center;
  border-bottom: #5A7CAA 1px solid;
}
.nav-link:hover {
  background: #093D81;
	color: #fff;
}
.nav-link.active {
  background: #093D81;
	color: #fff;
}
.dropdown-item:hover {
  background: #fff;
  color: #093D81;
}

.dropdown {
	position: unset;
}


.dropdown-menu {
  width: 100%;
  position: absolute;
  left: 0px;
   border-bottom: 20px solid gold !important;

     

}


.dept-program-content {
  transition: transform ease 300ms;
  
}
.dept-program-content:hover {
  transform: translate(0, -10px);
  font-weight: bold;

}
.dropdown-menu a {
  display: block;
  width: 100%;
  padding: 5px 0px;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  text-decoration: none;
  white-space: normal;
  background-color: transparent;
  border: 0;
  font-size: 13px;
  border-bottom: #cccccc73 1px solid;
  
}
.dropdown-menu a .d-flex {
  transition: all 0.5s;
}
.dropdown-menu .col-sm-6:nth-child(1) a:hover .d-flex {
  background-color: var(--bs-warning-bg-subtle);
}
.dropdown-menu .col-sm-6:nth-child(2) a:hover .d-flex {
  background-color: var(--bs-danger-bg-subtle);
}
.dropdown-menu .col-sm-6:nth-child(3) a:hover .d-flex {
  background-color: var(--bs-success-bg-subtle);
}
.dropdown-menu .col-sm-6:nth-child(4) a:hover .d-flex {
  background-color: var(--bs-secondary-bg-subtle);
}
.dropdown-menu .col-sm-6:nth-child(5) a:hover .d-flex {
  background-color: var(--bs-tertiary-bg);
}
.dropdown-menu .col-sm-6:nth-child(6) a:hover .d-flex {
  background-color: var(--bs-info-bg-subtle);
}
.navbar-expand-lg .navbar-nav .dropdown-menu ul li{
  padding: 0px 0px;
  list-style: none;
  }
/*.separate ul{*/
/*  column-count: 2;*/
/*}*/
.dropdown2{
  position: relative;
    
}
.dropdown2 .dropdown-menu {
  width: 210px;
     border-bottom-right-radius: 74px !important;
    
  }
  
@media only screen and (min-width: 992px) {
  .dropdown-menu {
    width: 100%;
    
    overflow: hidden;
    border-radius: 0px !important;
  }
  .dropdown:hover .dropdown-menu {
    display: flex;
  }
  .dropdown-menu.show {
    display: flex;
  }

}

/* ============== Navbar Css End ============== */


/* ===================pallavi's css================= */
.dispansry-para p {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 2px 15px 0px;
  padding: 20px;
}
.aboutgsv-secttext li p {
  font-size: 18px;
  color: #fbeaea;
  margin-top: 20px;
}
@media (max-width: 991px) {
  .aboutgsv-secttext li {
    flex: 1 1 48%;  /* 2 per row on tablets */
  }
}

@media (max-width: 600px) {
  .aboutgsv-secttext li {
    flex: 1 1 100%; /* full width on mobile */
    text-align: center;
  }
    .aboutgsv-secttext li p {
    text-align: center; /* center text inside paragraph */
    margin-top: 15px;
  }
}
.dispensar-card .departmentnumber {
  justify-content: space-between;
}
.dispensar-card .facultcard {
  width: 30%;
  /* height: 100px; */
}
.dispensar-card  .facultcard h4 {
  font-size: 18px;
  height: 100px;
  line-height: 22px;
  text-align: left;
}
.dispensar-card  .facultcard h5 {
  height: 45px;
}

.dean-crd span {
  padding-bottom: 4px;
  /* display: flex; */
  align-items: center;
  gap: 10px;
}

 .dean-crd h2 {
  color: #084298 !important;
  background-color: #cfe2ff;
  border-color: #b6d4fe;
  font-size: 20px !important;
  padding: 9px 30px;
}
.profilecard-sect.dean-crd {
  padding: 0;
}
.dean-crd  .professor-secttext {
  margin: 0px 0px;
  padding: 10px 20px;
  position: relative;
}

.dean-crd .professor-secttext h4 {
  font-size: 20px;
}
/* ===================pallavi's css end================= */

.table-responsive h2 {
	margin: 0px 0px;
	padding: 20px 0px;
	color: #000000;
	font-size: 28px;
	font-weight: 600;
	line-height: 21px;
	font-family: "Anek Bangla", sans-serif;
	width: 100%;
	text-align: left;
}

.department-carousel-hostel img {
	width: 100%;
	height: 400px !important;
	object-fit: cover !important;
	margin-bottom: 25px;
}



/* ================================== */
.convocation-accordian .accordion-button {
  color: #000 !important;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 15px;
}
.convocation-accordian  .accordion-button:not(.collapsed)::after {
  filter: invert(0%) sepia(100%) saturate(0%) hue-rotate(2deg) brightness(96%) contrast(100%);
}
.convocation-accordian .accordion-button:not(.collapsed) {
  background-color: unset;
}
.convocation-accordian .accordion-button span i{
  width: 10px;
}

.convocation-accordian .accordion-button  p {
  background: rgb(255 193 7);
  border-radius: 5px;
  padding: 5px;
  font-size: 15px;
}
.convocation-accordian .accordion-item {
  margin-bottom: 26px;
}
.convocation-accordian .accordion-item:not(:first-of-type) {
  border-top: 1px solid rgba(0, 0, 0, .125);
}
.convocation-accordian .accordion-item.profilecard-sect {
  min-height: unset;
  padding: 10px;
}
.acc-list ul {
  padding-left: 21px;
}


.profilecard-sect.placement-brochure {
	min-height: 50px;
	color: #000;
	margin: 0px 0px 15px 0px;
}

.profilecard-sect.placement-brochure a { color: #000; }
.dropdown:hover .dropdown-menu {
    visibility: visible;
    margin-top: 0px;
    opacity: 0.93 ; 
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    /* transform: scaleY(1); */
    left: 8% ;
    /* top: 52px; */
    /* transform: translate(-50%, 0px); */
}
.dropdown-menu.px-2.rounded-3.border-0.shadow .container {
    margin-left: 0;
}
.dropdown-menu {
    width: 100%;
    position: absolute;
    left: 8%!important;
 top: 52px;
}
.academics-dropdown .dropdown-menu.px-2.rounded-3.border-0.shadow {
    left: 31% !important;
    /* position: absolute; this is done by company change by ishaan */
}
.chairpersonpeople
{
    margin-left: 20px; 
    width:330px;

}
.dean-crd1 p {
    margin-top: 10px;
    list-style-type: disc; /* Ensures bullet points */
    padding-left: 1.5rem; /* Adds space for indentation */
}

.dean-crd1 ul {
    list-style-type: disc; /* Ensures bullets for unordered lists */
    padding-left: 1.5rem;
}

.dean-crd1 ol {
    list-style-type: decimal; /* Ensures numbering for ordered lists */
    padding-left: 1.5rem;
}

.collapse
{
    align-items: center;
    /* margin-left: 140px;  */
    /* this is done by ishaan   margin-left: 100px;  which is written in  above line*/
}


.collapse1
{
    align-items: center;
    margin-left: 140px; 
    /* this is done by ishaan   margin-left: 100px;  which is written in  above line*/
}


/* below design is done by ishaan for people-profile  page */

.accordion-section {
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    margin-bottom: 15px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    
    
  }

  .accordion-header {
    /* background: #f7faff; */
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #000000;
     border-left: #FFC800 5px solid;
  
         text-transform: uppercase;
   
    
  }

  .accordion-arrow {
    font-size: 1.2em;
    transition: transform 0.3s ease;
    border-radius: 46px ;
  }

  .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
    height: auto;
    
  }

  .accordion-content.active {
    max-height: 5000px; /* Arbitrary large value to allow content to expand */
    padding: 15px 6px 30px 25px;
     border-left: #FFC800 5px solid;
  }

  .accordion-inner {
    padding: 10px 0;
  }
  /* ended done by ishaan for people-profile  page */
 .detail-description {
        white-space: normal;
        word-wrap: break-word;
        padding: 10px;
    }
     .department-carousel .heros_img img {
        width: 100%;                  /* Fill the width of the slider */
    height: auto;                 /* Adjust height automatically */
    max-height: 500px;            /* Set a maximum height */
    /* border-radius: 40px;  */
    
    /* border-bottom-right-radius: 40px;          */
                   /* Remove extra space below the image */
    margin: 0 ;  
    /* border-bottom: 20px solid gold !important; */
    }

 
  .accordion-body{
        margin-left: -140px !important;
    }
    .same-width-container {
    width: 100% !important;
    max-width: 100%; /* Ensures full width consistency */
}

.same-width-table {
    width: 100% !;
    max-width: 100% !important;
}




.know-more {
 /* Moves it to the bottom-left */
    margin-top: auto !important;
  

}
.know-more p{
  margin-left: -254px !important;
  margin-bottom: 10px;
  
}

@media (max-width: 768px) {
    .know-more {
        display: block !important; /* Forces visibility */
       margin-left: 23em; /* Resets negative margins */
        text-align: left !important; /* Aligns properly */
    }
}

.img-fluid1
{
    width: webkit-fill-available;
    height: 563px;
}

.img-fluid2
{
    width: webkit-fill-available;
    height: 363px;
}
.text-centerlib
{
    text-align: center;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    margin-bottom: 2px solid gold !important;
}

th {
    text-align: center !important; /* Centers text inside table headers */
    vertical-align: middle !important; /* Aligns text vertically in case of multiple lines */
    

}
.nav-item > .nav-link[href*="index"]::after {
    display: none !important;
    content: none !important;
}

.table {
    font-size: 16px; /* Adjust as needed */
    font-family: 'Poppins', sans-serif; /* Use the same font */
    border: 1px solid lightblue !important;
   
}

.table th, .table td {
    font-size: 16px;
    font-family: 'Poppins', sans-serif; /* Use the same font */
}

.academicdiv{
    border-bottom-left-radius: 70px !important;  /* adjust px value as needed */
    border-bottom-right-radius: 70px !important;
}
