@import url("https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --bds-main-font: "Lexend Deca", sans-serif;
  --bds-para-font: "Raleway", sans-serif;
  --bds-icon-font: "Font Awesome 6 Free";
  --bds-Dark: #082a5e;
  --bds-Blue: #0065b3;
  --bds-light: #f4f7fb;
  --bds-body-color: #39557e;
  --bds-white: #fff;
  --bds-lightshadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px,
    rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
  --bds-darkshadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  --bds-fullradius: 60px;
  --bds-normalradius: 8px;
  --bds-tranistion: all 300ms ease-in-out;
}
:hover {
  cursor: pointer;
}
body,
html {
  overflow-x: hidden;
  font-family: var(--bds-para-font);
  color: var(--bds-body-color);
  font-size: 16px;
}
p {
  font-family: var(--bds-para-font);
  color: var(--bds-body-color);
  font-size: 16px;
  margin: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--bds-Dark);
  margin-bottom: 0;
  font-family: var(--bds-main-font);
}
a {
  text-decoration: none;
  color: var(--bds-body-color);
  font-size: 16px;
}
img {
  max-width: 100%;
  object-fit: cover;
}
ul,
ol {
  padding: 0;
  margin: 0;
}
ul li,
ol li {
  list-style: none;
}
.section {
  padding: 60px 20px;
}
.pt {
  padding-top: 60px;
}
.pb {
  padding-bottom: 60px;
}
.ptb {
  padding-top: 60px;
  padding-bottom: 60px;
}
.mt10 {
  margin-top: 10px;
}
.mb10 {
  margin-bottom: 10px;
}
.mtb10 {
  margin-top: 10px;
  margin-bottom: 10px;
}
.mt20 {
  margin-top: 20px;
}
.mb20 {
  margin-bottom: 20px;
}
.mtb20 {
  margin-top: 20px;
  margin-bottom: 20px;
}
.relative {
  position: relative;
}
.lightbg {
  background: var(--bds-light);
}
.darkbg {
  background: var(--bds-Dark);
}
.mediumbg {
  background: var(--bds-Blue);
}
.white {
  background: var(--bds-white);
}
.centerdiv {
  display: flex;
  align-items: center;
  justify-content: center;
}
.enddiv {
  display: flex;
  align-items: center;
  justify-content: end;
}
textarea {
  resize: none;
}
.form-control:focus {
  box-shadow: none;
  border-color: var(--bds-Dark);
}
button {
  outline: none;
  border: none;
}
.text60 {
  font-size: 60px;
}
.text40 {
  font-size: 40px;
}
.darkbtn {
  background: var(--bds-Dark);
  padding: 10px 20px;
  text-align: center;
  color: var(--bds-white);
  border-radius: 4px;
  font-family: var(--bds-main-font);
  text-transform: capitalize;
  display: inline-block;
  transition: var(--bds-tranistion);
}
.darkbtn:hover {
  background: var(--bds-Blue);
  color: var(--bds-white);
}
.number {
  font-family: var(--bds-main-font);
}
.text-center {
  text-align: center;
}
.text-center-design {
  text-align: center;
  text-transform: capitalize;
}
.btnend {
  display: flex;
  align-items: center;
  justify-content: end;
}
.prl {
  padding-right: 15px;
  padding-left: 15px;
}
.line-span {
  position: relative;
  color: var(--bds-Blue);
}
.line {
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 10px;
}

.top-header {
  padding: 10px 20px;
}
.top-header-left {
  display: flex;
  align-items: center;
  gap: 30px;
}
.top-header-design {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-header-left a {
  display: flex;
  align-items: center;
  gap: 15px;
}
.top-header-right a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--bds-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
.top-header-right img {
  max-width: 18px;
}
.top-header-left a span,
.top-header-right a span {
  color: var(--bds-white);
}
.top-header-left a p,
.top-header-right a p {
  color: var(--bds-white);
  font-family: var(--bds-main-font);
}

.bottom-header {
  padding: 10px 20px;
}
.bottom-header-design {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.bottom-header-design .logo {
  max-width: 140px;
}
.bottom-header-menu .bottom-header-ul {
  display: flex;
  align-items: center;
  gap: 30px;
}
.bottom-header-menu .bottom-header-ul li a {
  text-transform: capitalize;
  font-family: var(--bds-para-font);
  color: var(--bds-Dark);
  font-weight: 600;
  transition: var(--bds-tranistion);
}
.bottom-header-menu .bottom-header-ul li a:hover {
  color: var(--bds-Blue);
}

.hero-banner {
  padding: 120px 0;
}
.banner-image img {
  border-radius: var(--bds-normalradius);
  margin-top: 20px;
}
.banner-content h1 span {
  color: var(--bds-Blue);
}
.bottom-btn {
  display: flex;
  align-items: center;
  gap: 50px;
}
.call-number {
  display: flex;
  align-items: center;
  gap: 10px;
}
.call-number span i {
  font-size: 30px;
  color: var(--bds-Blue);
}
.have-any h6 {
  color: var(--bds-body-color);
}
.have-any p {
  color: var(--bds-Dark);
  font-size: 24px;
}

.course-book {
  background: var(--bds-light);
}
.course-book-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 8px;
  box-shadow: var(--bds-darkshadow);
}
.course-book-content {
  padding: 20px;
}
.course-book-img img {
  max-width: 150px;
}
.bg1 {
  background: #e1f5f5;
}
.bg2 {
  background: #d1d5ff;
}
.bg3 {
  background: #fffde7;
}
.bg4 {
  background: #ffe3d4;
}
.bg5 {
  background: #e8ffe5;
}
.bg6 {
  background: #ffe0e1;
}
.bg7 {
  background: #d2d9f7;
}
.bg8 {
  background: #e6ffd5;
}
.bg9 {
  background: #dbfeff;
}
.course-book-content h5 span {
  color: var(--bds-white);
  background: var(--bds-Blue);
  display: inline-block;
  padding: 2px 10px;
  border-radius: 4px;
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.client-logo img {
  filter: grayscale(1);
  opacity: 0.3;
  transition: var(--bds-tranistion);
  max-width: 180px;
}
.client-logo img:hover {
  filter: grayscale(1);
  opacity: 1;
}

.testimonial-card {
  padding: 20px 10px;
  background: var(--bds-light);
  border: 1px solid var(--bds-Dark);
  height: 100%;
  border-radius: 8px;
  margin: 10px;
}
.testi-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.testi-top .star i {
  color: #f7a602;
}
.testi-quality h5 {
  color: var(--bds-Dark);
}
.quote i {
  font-size: 50px;
  color: rgba(157, 156, 156, 0.2);
}
.testi-bottom {
  display: flex;
  align-items: start;
  gap: 20px;
}
.testi-img img {
  max-width: 50px;
}

footer {
  background: url("../img/footer-bg.png") var(--bds-Dark);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.footer-design {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.footer-menu ul {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-menu ul li a {
  color: var(--bds-white);
  border-right: 1px solid var(--bds-white);
  padding: 0 10px;
  text-align: center;
}
.footer-menu ul li:last-child a {
  border-right: none;
}
.footer-logo img {
  max-width: 180px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bds-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
.footer-social img {
  max-width: 20px;
}

.centerheading {
  text-align: left;
}

.contact-info-box {
  background: var(--bds-light);
  box-shadow: var(--bds-darkshadow);
  padding: 0 20px 20px 20px;
  height: 100%;
}
.contact-icon i {
  font-size: 25px;
  color: var(--bds-white);
  background: var(--bds-Blue);
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  border-radius: 0 0 30px 30px;
}
.contact-form-box {
  background: var(--bds-light);
  box-shadow: var(--bds-darkshadow);
  padding: 20px;
  border-radius: var(--bds-normalradius);
}
.contact-form-design {
  padding: 20px;
}
.contact-form-design .form-control {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #ced4da;
  border-radius: 0;
}
.about-ul{
  padding-left: 15px;
}
.about-ul li{
  list-style: decimal;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
  margin: 10px 0;
}
.about-ul li:last-child{
  border-bottom: none;
}
.about-ul li p {
  position: relative;
  padding: 8px 0 8px 10px;
  display: block;
  font-weight: 600;
}
.about-image img {
  border-radius: var(--bds-normalradius);
}

.products {
  background: var(--bds-light);
}
.products-card {
  display: flex;
  align-items: center;
  gap: 15px;
  transition: transform 0.9s ease;
}
.products-card:hover .products-image img {
  transform: scale(0.9) translateX(-3px);
}
.products-image img {
  transition: transform 0.9s ease;
}
.products-image {
  width: 100px;
  min-width: 100px;
  height: 100px;
  background: #dcf0ff;
  line-height: 100px;
  text-align: center;
  border-radius: 4px;
}

.videogallery img {
  border-radius: var(--bds-normalradius);
  box-shadow: var(--bds-darkshadow);
}

.news-gallery-section {
  background: var(--bds-light);
}
.news-gallery img {
  box-shadow: var(--bds-darkshadow);
  border-radius: var(--bds-normalradius);
}

.cover-book-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #efefef;
  padding: 10px;
  border-radius: var(--bds-normalradius);
}
.cover-book-image img {
  margin-top: -29px;
  border-radius: 8px;
}
.open-menu {
  display: none;
}

.mobile-navbar {
  position: fixed;
  top: 0;
  left: -100%;
  width: 75%;
  height: 100vh;
  background: var(--bds-light);
  padding: 30px;
  z-index: 9999;
  transition: all 0.9s linear;
  visibility: hidden;
  opacity: 0;
}
.mobile-navbar.active {
  left: 0;
  visibility: visible;
  opacity: 1;
}
.mobile-logo img {
  max-width: 120px;
}
.close-menu i {
  position: absolute;
  top: 40px;
  right: 20px;
  color: var(--bds-Blue);
  font-size: 22px;
}
.mobile-men-ul {
  transform: translateY(30px);
}
.mobile-men-ul ul li {
  border-bottom: 1px dashed rgba(0, 0, 0, 0.3);
}
.mobile-men-ul ul li a {
  display: block;
  padding: 15px 0;
  color: var(--bds-Dark);
}


.top-faculty-btn .nav-tabs{
  border-bottom: none;
  display: flex ;
  align-items: center;
  justify-content: center;
}
.top-faculty-btn .nav-tabs .nav-link{
  border: none;
  border-radius: 0;
  margin-right: 20px;
  color: var(--bds-Dark);
  border-bottom: 3px solid transparent;
}
.top-faculty-btn .nav-tabs .nav-link.active{
  font-weight: 600;
  color: var(--bds-Dark);
  border-bottom: 3px solid var(--bds-Dark);
}
.faculty-content-box{
  background: var(--bds-white);
  padding: 40px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 0px 1px;
  border-radius: var(--bds-normalradius);
  margin-top: 20px;
}
.faculty-content-box ul{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
  column-gap: 50px;
}
.faculty-content-box ul li p{
  display: block;
  padding: 8px 0;
  font-weight: 600;
}



@media (max-width: 992px) {
  .top-header,
  .bottom-header-menu {
    display: none;
  }
  .open-menu {
    display: block;
  }
  .open-menu {
    font-size: var(--bds-Dark);
  }
}

@media (max-width: 767px) {
  .text40 {
    font-size: 30px;
  }
  .footer-menu ul {
    flex-wrap: wrap;
    gap: 6px;
  }
  .footer-logo img {
    max-width: 120px;
  }
  .ptb {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .pt {
    padding-top: 30px;
  }
  .pb {
    padding-bottom: 30px;
  }
}

@media (max-width: 650px) {
  .text40 {
    font-size: 25px;
  }
  .course-book-card{
    flex-wrap: wrap;
    height: 100%;
  }
  .faculty-content-box{
    padding: 20px;
  }
  .faculty-content-box ul{
    grid-template-columns: unset;
  }
  
}




