/********** Template CSS **********/
:root {
    --primary: #06BBCC;
    --light: #F0FBFC;
    --dark: #181d38;
}

.fw-medium {
    font-weight: 600 !important;
}

.pl-desk-5{
  padding-left: 15%;
  position: relative;
  top: -10px;
}

.custom-checkbox-wrapper {
      margin-left: 5px;
      margin-bottom: 12px;
  }
  
  .custom-checkbox-input {
      position: absolute;
      opacity: 0;
      cursor: pointer;
      height: 0;
      width: 0;
  }

  #studentinfo-optsubjectid{
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
  
  .custom-checkbox-label {
      display: flex;
      align-items: center;
      cursor: pointer;
      user-select: none;
      font-weight: normal;
      font-size: 14px;
      color: #333;
      transition: all 0.2s ease;
  }
  
  .checkbox-box {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 20px;
      height: 20px;
      border: 2px solid #d1d5db;
      border-radius: 4px;
      background-color: #fff;
      transition: all 0.2s ease;
      margin-right: 8px;
      flex-shrink: 0;
  }
  
  .checkbox-icon {
      width: 12px;
      height: 10px;
      opacity: 0;
      transform: scale(0.8);
      transition: all 0.2s ease;
  }
  
  /* Checked state */
  .custom-checkbox-input:checked + .custom-checkbox-label .checkbox-box {
      background-color: var(--primary);
      border-color: var(--primary);
  }
  
  .custom-checkbox-input:checked + .custom-checkbox-label .checkbox-icon {
      opacity: 1;
      transform: scale(1);
  }
  
  /* Hover state */
  .custom-checkbox-label:hover .checkbox-box {
      border-color: var(--primary);
  }
  
  /* Focus state for accessibility */
  .custom-checkbox-input:focus + .custom-checkbox-label .checkbox-box {
      outline: 2px solid var(--primary);
      outline-offset: 2px;
  }
  
  /* Disabled state */
  .custom-checkbox-input:disabled + .custom-checkbox-label {
      opacity: 0.5;
      cursor: not-allowed;
  }
  
  .custom-checkbox-input:disabled + .custom-checkbox-label .checkbox-box {
      background-color: #f3f4f6;
      cursor: not-allowed;
  }
  
  .checkbox-text {
      line-height: 1.4;
  }

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #08adb3 0%, #087e78 100%);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.back-to-top:active {
    transform: translateY(-2px);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
    fill: white;
    transition: transform 0.3s ease;
}

.back-to-top:hover svg {
    transform: translateY(-3px);
}


body{
  padding-right: 0px !important;
}
.table-responsive{
  overflow-x: unset;

}

#google_translate_element{
  /* position: absolute;
  right: 30%;
  top: -107%; */
}


.why-chosse-images-section{
  height: 500px;
}

.text-medium{
  font-size: 14px!important;
}

td img{
  width: 49px;
  height: 48px;
}

#ui-datepicker-div{
  width: auto;
}

.ui-datepicker table{
  border: none!important;
}

.col-details-box{
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.video_layouts_bg{
  background-color: #ebf0f1;
  padding-top: 50px;
  padding-bottom: 50px;
}

.breaking-title{
  background-color: #06BBCC !important; 
  height: 45px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.breaking-text{
  background-color: #f3f3f3; 
  height: 45px;
  font-size:16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

button,
.btn {
  outline: none; /* removes focus outline */
  border: none;  /* removes any default border if needed */
}

button:focus,
.btn:focus {
  outline: none;
  box-shadow: none; /* removes the blue shadow in some browsers like Chrome */
}


.fw-semi-bold {
    font-weight: 700 !important;
}

table{
  font-size: 14px;
}

.panel-body label{
  font-size: 14px;
}

.dynamic-content-pdf{
  position: absolute;
  top: 10px;
  right: 15px;
}

.dynamic-content-pdf img{
  width: auto;
  height: 40px;
  object-fit: cover;
  margin-right: 10px;
}

.photo-gallery{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;

}

.photo-gallery a {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.photo-gallery a::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(21, 23, 24, 0.5); /* your color w/ transparency */
  opacity: 0;
  transition: opacity 0.3s ease;
}

.photo-gallery a:hover::after {
  opacity: 1;
}


.photo-gallery a img{
  width: 300px;
  height: auto;
}

.photo-gallery a{
  display: block;
  margin-left: 10px;
  margin-right: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.btn:focus, .btn:active:focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn.active.focus{
  outline: none;
  outline-offset: none;
}

.bg-primary-button{
  background-color: var(--primary)!important;
  color: #fff!important;
}
.academic-info-section{
  max-height: 100px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.viewall-btn{
  font-size: 14px;
}

table thead tr th{
  font-size: 14px;
}

p img{
  float: left;
}

.panel-body select{
  font-size: 14px;
}

.list-view{
  font-size: 14px;
  padding-bottom: 10px;
}
.custom-search .search-input{
  width: 320px;
  height: 43px;
  border: 1px solid #b2b2b2;
  box-shadow: 0px 1px 3px 0px #e0dfdf inset;
  padding: 5px 10px;
  float: right;
  font-size: 14px;
}

.whychoose-details{
  height: 300px;
  overflow: hidden;
  margin-bottom: 30px;
}

.brand-background{
  background-color: var(--primary)!important;
}

.custom-search label{
    margin: 0px;
    position: absolute;
    right: 1px;
    top: 8px;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}
ul li{
    list-style: none;
}

#menu-main-menu{
  display: flex;
}

.py-0{
  padding-top:0px!important;
  padding-bottom: 0px!important;
}

.my-0{
  margin-top: 0px!important;
  margin-bottom: 0px!important;
}

.acd-calender{
  font-size: 14px;
}
.acd-print{
  font-size: 14px!important;
}

.dropdown-menu a{
  display: block;
  width: 100%;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  font-size: 14px;
  padding-left: 10px;
}

.dropdown-item{
  font-size: 14px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.btn-notice-widget{
  font-size: 14px!important;
  padding: 10px 20px 10px 20px!important;
}

nav{
  margin-bottom: 0px;
}

.notice-widget-middle{
  min-width: 80%;
  max-width: 80%;
}

.custom-table{
  font-size: 14px;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/**Icon start**/
.ffa{
  font-size: 40px;
}
/**Icon end**/

/*** Button ***/
.btn-light{
  background-color: #FFFFFF !important;
}
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 0px;
}


/*** Navbar ***/

.logoimg{
    width: auto;
    height: 125%;
}
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 20px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

.breadcrumb {
  background: none; 
  font-size: 14px; 
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .dropdown-menu.fade-down {
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header carousel ***/
@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background-position: center !important;
    background-repeat: no-repeat!important;
    background-size: cover!important;
    height: 60vh!important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-search.w-50.position-relative{
  float: right;
}

.custom-search.w-50.position-relative button{
  position: absolute;
  top: 10px;
  right: 0;
}

.page-header-inner {
    background: rgba(15, 23, 43, .7);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}

.dynamic-content table tbody tr td{
  padding-top: 10px;
  padding-bottom: 10px;
}

table {
  border-collapse: collapse; /* ensures borders are shared */
}

table td, table th {
  border: 1px solid var(--primary); /* border color */
}



/*** Section Title ***/
.ltsnes{
  margin-left: 15px;
  font-size: 30px;
}
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 5px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}


/*** Service ***/
.service-item {
    background: var(--light);
    transition: .5s;
}

.service-item:hover {
    margin-top: -10px;
    background: var(--primary);
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: var(--light) !important;
}


/*Why Choose us part start*/
.text{
    color:#181d38;
    font-size: 25px;
    font-weight: 700;
}
.wlcs{
    color: #020338;
}

.textnmbr{
    color: #fff;
}

.whybtn{
  width: 30%;
  margin-top: 10px;
  background-color: #06BBCC;
  text-align: center;
  padding: 16px; 
  /* border-radius: 5px; */
}
.whybtn a{
color: #FFFFFF;
font-weight: 500;
font-size: 15px;
}
/* .whybtn:hover{
background-color: #14171d;
} */

.bg-primary {
    background-color: #06BBCC !important;
}

.leftf{
    color: #06BBCC;
    border: 1px solid #fff;
    background-color: #fff;
    font-size: 18px;
    border-radius: 50px;
    padding: 12px;
}

.fw-medium {
    font-weight: 500 !important;
}

.contact-institute{
  width: 400px;
}

/*Why Choose us part end*/

/* video part part start*/
.help_section {
    margin-top: 70px;
    color: #ffffff;
    /* background-color:  rgb(4, 4, 51); */
    background-color: #14171d;
  }
  .notcolr{
    color: #fff;
    font-size: 18px;
  }
  .detail-box a{
   font-weight: 500;
   font-size: 16px;
  }
  
  .help_section .heading_cont h2 {
    text-transform: inherit;
    color: #fff;
    font-weight: bold;
  }
  
  .help_section .row {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  
  .help_section .img-box {
    position: relative;
  }
  
  .help_section .img-box img {
    width: 100%;
  }
  
  .help_section .img-box .play_btn {
    position: absolute;
    top: 50%;
    left: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
     align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 75px;
    height: 75px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border: none;
  }
  
  .help_section .img-box .play_btn button {
    background-color: transparent;
    border: none;
    background-color: #06BBCC;
    color: #ffffff;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    position: relative;
    z-index: 3;
    outline: none;
  }
  
  .help_section .img-box .play_btn:before, .help_section .img-box .play_btn:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: white;
    opacity: 1;
    border-radius: 100%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  
  .help_section .img-box .play_btn:before {
    z-index: 2;
    -webkit-animation: before-animation 1500ms infinite;
            animation: before-animation 1500ms infinite;
  }
  
  .help_section .img-box .play_btn:after {
    z-index: 1;
    -webkit-animation: after-animation 1500ms infinite;
            animation: after-animation 1500ms infinite;
  }
  
  @-webkit-keyframes before-animation {
    0% {
      -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
              transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
      opacity: 1;
    }
    100% {
      -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
              transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
      opacity: 0;
    }
  }
  
  @keyframes before-animation {
    0% {
      -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
              transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
      opacity: 1;
    }
    100% {
      -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
              transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
      opacity: 0;
    }
  }
  
  @-webkit-keyframes after-animation {
    0% {
      -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
              transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
      opacity: 1;
    }
    100% {
      -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
              transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
      opacity: 0;
    }
  }
  
  @keyframes after-animation {
    0% {
      -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
              transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
      opacity: 1;
    }
    100% {
      -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
              transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
      opacity: 0;
    }
  }
  
  .help_section .img-box:before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    -webkit-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%);
    width: 125px;
    height: 12px;
    background-color: #06BBCC;
  }
  
  .help_section .detail-box {
    padding: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
     flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  
  .help_section .detail-box p {
    margin-top: 10px;
  }
  
  .help_section .detail-box a {
    display: inline-block;
    background-color: #06BBCC;
    font-size: 15px;
    color: #ffffff;
    padding: 17px 47px;
    border-radius: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    border: none;
    /* border-radius: 5px; */
    margin-top: 15px;
  }
  .plbtn{
    color: rgb(245, 245, 245);
  }
  /* .help_section .detail-box a:hover {
    background-color: #a70671;
  } */
/* video part part end*/



/*our mission part start*/

.section-titllee {
    position: relative;
    padding: 70px 0 35px 0;
    text-align: center;
  }
  
  .text-uppercase {
    text-transform: uppercase !important;
  }
  
  .display-4 {
    /* margin-top: 100px; */
    font-size: 30px;
    font-weight: 600;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.2;
  }
  
  .mssn{
    font-size: 17px;
  }
  @media (max-width: 1200px) {
    .display-4 {
      font-size: 30px ;
    }
  }
  
  .mb-3,
  .my-3 {
    margin-bottom: 1rem !important;
  }
  
  .container,
  .container-md
   {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
  }
  
  .btn-ssecondary {
    color: #fff !important;
    background-color: #06BBCC !important;
    border: none;
    padding: 14px 20px 15px 20px !important;
  }
  
  /* .btn-secondary:hover {
    color: #fff;
    background-color: rgb(4, 4, 51);
    border: none;
  } */
  
  .btnour{
    color: #fff !important;
    background-color: #06BBCC !important;
    border: none;
    padding: 14px 20px 15px 12px !important;
  }
  
  /* .btnour:hover {
    color: #fff;
    background-color: rgb(4, 4, 51);
    border: none;
  } */
  
  .required label::after{
    content: ' *';
    color: red;

  }

  a .fab{
    font-size: 18px;
  }

  .position-relative {
    position: relative !important;
  }
  
  .position-absolute {
    position: absolute !important;
  }
  /*our mission part end*/

  .teachers-social{
    position: relative;
    top: -20px;

  }



/*** Activities ***/
.category img,
.course-item img {
    transition: .5s;
}

.category a:hover img,
.course-item:hover img {
    transform: scale(1.1);
}
/**activities end**/


/*** Team ***/
.team-item img {
    transition: .5s;
    height: 250px;
    width: 100%;
    object-fit: cover;
}
.team-item a{
  display: block;
}

.team-item:hover img {
  transform: scale(1.1);
} 

.tcrbtn{
  color: #ffffff;
  font-weight: 600;
  padding: 10px;
  border: 1px solid #06BBCC;
  /* border-radius: 5px; */
  background-color: #06BBCC;
  padding: 15px 20px 15px 20px;
}
/* .tcrbtn:hover{
  color: #ffffff;
  border: none;  
} */

 @media (max-width: 768px) {
  .tcrbtn{
    padding: 5px 2px 2px;

  }
} 

/** Team end**/


/**Notice part start**/
*,
*::before,
*::after {
  box-sizing: border-box;
}

a {
  color: #B49C73;
  text-decoration: none;
  background-color: transparent;
}
a:not([href]):not([class]) {
  color: inherit;
  text-decoration: none;
}

.container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
/* @media (min-width: 1200px) {
  .container, .container-sm, .container-md, .container-lg, .container-xl {
    max-width: 1140px;
  }
} */

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.letestnotc{
  font-size: 25px;
  padding-top: 38px;
  color: #ffffff;
  font-weight: 700;
}

.noct{
  font-size: 30px;
  margin-top: 10px;
}

@media (min-width: 992px) {
  
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
}
.nitic-button{
  color: #ffffff !important;
    background-color: #06BBCC !important;
   border-color: #06BBCC !important;
  padding: 15px 20px 15px 20px !important;
}

.btn {
  display: inline-block;
  font-weight: 400;
  color: #757575;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 10px 20px;
  font-size: 14px;
  line-height: 1.5;
  /* border-radius: 5px; */
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn-primary {
  color: #ffffff;
  background-color: #06BBCC;
  border-color: #06BBCC;
}

.btn-sm-square{
  padding-left: 8px;
}
 .btn-primary:hover {
  color: #fff;
  background-color: #06BBCC;
  border-color: #06BBCC;
}

.bg-primary {
  background-color: #06BBCC !important;
  margin-top: 20px
}

.bg-secondary {
  background-color: #37373F !important;
}

.bg-white {
  background-color: #fff !important;
}

.d-flex {
  display: flex !important;
}

.flex-column {
  flex-direction: column !important;
}

.align-items-center {
  align-items: center !important;
}

.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}
.m-0{
	margin: 0;
}
.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important;
  }

.icon-box {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 90px;
}


/**Notice part end**/




/**Latest News start**/
.post-slide8{
  margin:0 15px;
  position:relative;
  background:#fff;
  box-shadow:0 1px 2px rgba(43,59,93,.3);
  margin-bottom:2em;
}
.post-slide8 .post-img{
  position:relative;
  overflow:hidden;
  height: 280px;
}
.post-slide8 .post-img img{
  width:100%;
  height:100%;
  object-fit: cover;

}
.post-slide8 .over-layer{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  opacity:0;
  background:rgba(0,0,0,.6);
  transition:all .3s ease;
}
.post-slide8:hover .over-layer{
  opacity:1;
}
.post-slide8 .post-link{
  margin:0;
  padding:0;
  position:relative;
  top:45%;
  text-align:center;
}
.post-slide8 .post-link li{
  display:inline-block;
  list-style:none;
  margin-right:20px;
}
.post-slide8 .post-link li a{
  color:#fff;
  font-size:20px;
  
}
.post-slide8 .post-link li a:hover{
  color:#06BBCC;
  text-decoration:none;
}
.post-slide8 .post-date{
  position:absolute;
  top:10%;
  left:4%;
}
.post-slide8 .date{
  display:inline-block;
  border-radius:3px 0 0 3px;
  padding:5px 10px;
  color:#fff;
  font-size:20px;
  font-weight:700;
  text-align:center;
  background:#c90571;
  float:left;
}
.post-slide8 .month{
  display:inline-block;
  border-radius:0 3px 3px 0;
  padding:5px 13px;
  color:#fff;;
  font-size:20px;
  font-weight:700;
  background:#06BBCC;
}
.post-slide8 .post-content{
  padding:30px;
}
.post-slide8 .post-title{
  margin: 0 0 15px 0;
}
.post-slide8 .post-title a{
  font-size:18px;
  font-weight:700;
  color:#333;
  display:inline-block;
  text-transform:capitalize;
  transition:all .3s ease 0s;
}
.post-slide8 .post-title a:hover{
  text-decoration:none;
  color:#06BBCC;
}
.post-slide8 .post-description{
  font-size:14px;
  line-height:24px;
  color:grey;
  max-height: 35px;
  overflow: hidden;
}
.post-slide8 .read-more{
  color:#333;
  font-size:14px;
  font-weight:700;
  text-transform:uppercase;
  position:relative;
  transition:color .2s linear;
}
.post-slide8 .read-more:hover{
  text-decoration:none;
  color:#06BBCC;
}
.post-slide8 .read-more:after{
  content:"";
  position:absolute;
  width:30%;
  display:block;
  border:1px solid #06BBCC;
  transition:all .3s ease;
}
.post-slide8 .read-more:hover:after{
  width:100%;
}
@media only screen and (max-width:479px){
  .post-slide8 .month{font-size:14px;
  }
.post-slide8 .date{
  font-size:14px;
}
}
/**Latest News end**/


/*============================================
    1.8 Event Area
*=============================================*/

/*.single-event{
    align-items: center;
    background: #ffffff none repeat scroll 0 0;
    border: 1px solid #e6e9f2;
    border-radius: 3px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
}*/

/* .event-area{
    margin-top: 50px;
} */
.widt{
    margin: 0 0 8px 63px;
}
.sectionn-title h2{
    margin-bottom: 40px;
}

.primary-bg {
    background-color: #06BBCC;
    /* margin: 4px; */
  }
.media {
    border: 1px solid #efefef;
    transition: 0.5s;
  }
  .media:hover {
    box-shadow: 0px 2px 18.9px 8.1px rgba(204, 204, 223, 0.4);
  }
  .media-head {
    padding: 23px;
    text-align: center;
    width: 165px;
    float: left;
  }
  .media-head span {
    font-size: 24px;
    font-weight: 600;
    color: #ffff;
    letter-spacing: 0;
  }
  .media-head span sub {
    font-size: 14px;
    text-transform: uppercase;
    margin-right: 7px;
  }
  .media-head p {
    font-size: 48px;
    font-weight: 700;
    color: #ffff;;
    letter-spacing: 0;
    line-height: 50px;
    margin-top: 5px;
    margin-bottom: 0;
  }
  .media-body {
    flex: 1;
    padding: 39px;
    height: auto;

  }
  .media-body h4 a {
    font-size: 24px;
    font-weight: 700;
    color: #252525;
    letter-spacing: 0;
    margin-left: 143px;
    display: block;
  }
  .media-body p {
    font-weight: 400;
    font-size: 13px;
    /* margin: 10px 0 0 143px; */
   
  }
  .media-body p i {
    color: #fc9928;
    
  }

  .mobile-menu {
          position: fixed;
          bottom: 0;
          left: 0;
          right: 0;
          background: #ffff;
          box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
          padding: 16px;
          z-index: 1000;
          display: none;
      }

      .menu-header {
          font-size: 14px;
          color: #8e8e93;
          margin-bottom: 16px;
          text-align: left;
          font-weight: 500;
      }

      .menu-items {
          display: flex;
          justify-content: space-around;
          align-items: center;
          gap: 8px;
      }

        .menu-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            flex: 1;
            padding: 12px 8px;
            text-decoration: none;
            color: #8e8e93;
            border-radius: 12px;
            transition: all 0.3s ease;
            cursor: pointer;
            min-height: 60px;
            justify-content: center;
        }

        .menu-item:hover,
        .menu-item:active {
            background-color: #f5f5f5;
            transform: scale(1.05);
        }

        .menu-item.active {
            color: black;
            background-color: #e5fdff;
        }

        .menu-item i{
           font-size: 18px;
        }

        .menu-label {
            font-size: 14px;
            font-weight: 600;
            text-align: center;
            letter-spacing: 0.3px;
        }

        /* Content area */
        .content {
            /* padding: 20px 16px 120px 16px; */
        }

        .message-details-content img{
          height: 250px;
          margin-right: 15px;
        }

        .footer p{
          font-size: 14px;
        }

        .content-card {
            background: white;
            border-radius: 16px;
            padding: 24px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
            margin-bottom: 16px;
        }

        .content-title {
            font-size: 24px;
            font-weight: 700;
            color: #1c1c1e;
            margin-bottom: 12px;
        }

        .content-text {
            font-size: 16px;
            color: #8e8e93;
            line-height: 1.5;
        }

  .report-widget-box{
        background:#fff; 
        border: 3px double #333; 
        padding: 10px; 
        margin-top:10px !important;
    }
  /*============================================
      END Event Area
  *=============================================*/

/*** Testimonial start ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-text,
.testimonial-carousel .owl-item.center .testimonial-text * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #CCCCCC;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}

/*** Testimonial end***/


/* Mujib Corner PART START*/
.mmargin{
  margin-top: 20px;
  border: 1px solid #efefef;
  box-shadow: 0px 2px 18.9px 8.1px rgba(204, 204, 223, 0.4);
}
.mlink{
  margin-left: 0;
}
.mjcul{
  color: #ffffff;
  padding-left: 0;
}
.tcntr h1{
  padding: 10px;
  font-weight: 800;
  color: #06BBCC;
  font-size: 33px;
}
.mjcul li a{
  color: #383131;
  font-size: 20px;
  font-weight: 800;
  padding: 10px;
}
.tcntr p{
  font-weight: 600;
  font-size:16px;
  color: #383131;
  padding: 10px;
}

.mjbimge{
  padding: 10px 0;
}
 
/* MUJIB CORNER PART END*/


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: normal;
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}
/**footer part end**/




/*============================================
      Landing page Start
  *=============================================*/


/*** Job Listing ***/
.nav-pills .nav-item .active {
  border-bottom: 2px solid var(--primary);
}

.job-item {
  border: 1px solid transparent;
  border-radius: 2px;
  box-shadow: 0 0 45px rgba(0, 0, 0, .08);
  transition: .5s;
  font-size: 15px;
}

.job-item:hover {
  border-color: rgba(0, 0, 0, .08);
  box-shadow: none;
}


/**Message part Start**/
.multimediacont{
  margin-top: 15px;
}
.messimg{
  width: 70%;
  height: auto;
}
.position-rlativee h1{
  margin-top: 5px;
  font-size: 30px;
  color: #06BBCC;
}

.position-rlativee p{
  padding: 10px;
}
.position-rlativee{
  border: 1px solid #efefef;
  transition: 0.5s;
  box-shadow: 0px 0px 18.9px 8.1px rgba(204, 204, 223, 0.4);
}
.position-rlativee:hover {
  /* box-shadow: 0px 0px 18.9px 8.1px rgba(204, 204, 223, 0.4); */
}
/**Message part end**/


/**Multimedia part start**/
.multimediacont{
  padding-bottom: 30px;
  padding-right: 20px;
  box-shadow: 0px 2px 18.9px 8.1px rgba(204, 204, 223, 0.4);
}
.multimimg{
  width: 100%;
  height: auto;
}

.multim h1{
  margin: 0 70px 20px 0;
  border-bottom: 1px solid #efefef;
  color: #06BBCC;
}

.multim p{
  margin-top: 48px;
  padding: 15px;
  box-shadow: 0px 2px 18.9px 8.1px rgba(204, 204, 223, 0.4);
}
/**Multimedia part end**/


/**About part start**/
.abuout_top{
  margin-top: 15px;
}
.about_border{
  border-bottom: 1px solid #f0eded;
}
.about_paragraph{
  padding: 15px;
}
.about_shadow{
  box-shadow: 0px 2px 18.9px 8.1px rgba(204, 204, 223, 0.4);
}
/**About part end**/

.notice_shadow{
  padding-bottom: 10px;
  box-shadow: 0px 2px 18.9px 8.1px rgba(204, 204, 223, 0.4);
}
table, th, td {
  border: 1px solid black;
  border-collapse: collapse;
}

/* p{
  font-weight: 700;
  font-size: 15px;
  color: #0c0a0ade;
} */

 th, td{
  text-align: center;
}

.noticepage{
  margin-top: 135px;
}
.name h3{
  margin-top: 20px;
  text-align: center;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.tabletm{
  margin-top: 20px;
}
.frist-name{
  text-align: center;
  font-weight: 800;
  padding: 10px;
}
.scnd-name{
  text-align: left;
  padding: 10px;
}
.roll{
  font-weight: 700;
}

.fllow{
  height: 27px;
}
.pdf{
  text-decoration: none;
}

.pagination{
  margin: 5px 15px;

}
/**Notice part end**/

/**why choos part start**/
.whychooss{
  font-size: 30px;
  font-weight: 700;
  color: #06BBCC;
  padding: 12px;
}
.whychoos_paragraph{
  padding: 20px;
}
/**why choos part end**/


/**news part start**/
.newsdtls h1{
  font-size: 26px;
  color: #06BBCC;
  margin-top: 12px;
  padding: 10px;
  border-bottom: 1px solid #efefef;
}
.ndfn{
  font-size: 20px;
  color: #06BBCC;
}
.newsdtls p{
  margin-top: 60px;
  padding-left: 10px;
}
/**news part end**/

/**event part start**/
.news_dtls h1{
  font-size: 26px;
  color: #06BBCC;
  /* margin-top: 12px; */
  padding: 10px;
  border-bottom: 1px solid #efefef;
}
.ndfn{
  font-size: 20px;
  color: #06BBCC;
}
.news_dtls p{
  margin-top: 20px;
  padding-left: 10px;
}

.ent_sports{
  width: 100%;
  height: auto;
  margin-top: 65px;
}

/* .eventimg{
  width: 50%;
  height: auto;
  margin-left: 300px;
} */

/* .ev_pcnc{
  width: 100%;
  height: auto;
  margin-top: 65px;
} */

/**event part end**/

/*** audio part end ***/

/* .audio h4{
  text-align: center;
  font-size: 35px;
  font-weight: 800;
}

.record{
  margin: 30px 0 30px 0;
  text-align: center;
} */
/*** audio part end ***/


/*Mission & Vission part start*/
.mission_img img{
  padding: 10px;
  width: 100%;
  height: auto;
}
.mission_img h1{
 text-align: center;
 font-size: 40px;
 font-weight: 800;
 color: #000505;
 margin: 30px;
}
.mission_img p{
  font-size: 18px;
  padding: 15px;
}
/*Mission & Vission part end*/
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.video-container {
  position: relative;
  overflow: hidden;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  background: #000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
} */

.fade {
    transition: opacity 0.15s linear!important;
    opacity: unset;
}


/*Admission form part start*/
.admissn{
  margin-top: 50px;
}
.form-group{
  margin-top: 10px;
  padding-bottom: 10px;
  text-shadow: none;
  border: none;
}
.submit{
  margin-top: 10px;
}

.cs_banner_section img{
  width : 180px;
  height: 200px;
}
.form-control{
  appearance: auto;
}
.admi_parag{
  font-size: 20px;
}

#admission-page .form-control,
#login-page .form-control {
  font-size: 14px;
}

.cs-widget-info-student{
  margin-left: 30px;
}

.student-info-table table tr th{
  text-align: left;
  font-size: 15px;
}

.student-info-table table tr td{
  text-align: left;
}

.cs-widget-info-student .info-section{
    background-color: var(--light);
    width: 100%;
    height: 30px;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: left;
    font-size: 16px;
    padding-left: 10px;
}

.cs-list-style-student li img{
  width: 20px;
  height: 20px;
  margin-right: 5px;
}

.notice-card{
    border: 1px solid #dee2e6 !important;
    padding-top: 30px;
    padding-bottom: 30px;
}

.text-black{
  color: #000!important;
}

.owl-carousel-item p{
  color: #ffff;
}

.font-bold{
  font-weight: bold;
}

.slider-caption{
  position: absolute;
  bottom: 4px;
  width: 100%;
  padding-bottom: 10px;
  background-color: rgba(0, 0, 0, 0.6);
}

.cs-list-style-student li{
  display: flex;
  align-items: center;

}

.cs-price-table tbody tr:nth-child(odd){
  background-color: var(--light);
  
}

#printDiv{
  float: right;
}

/* For labels inside both pages */
#admission-page label,
#login-page label {
  font-size: 14px;
}


.text-danger{
  font-size: 20px;
}
.form-container {
  max-width: 400px;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.success-message {
  display: none;
  color: #28a745;
  font-weight: bold;
  margin-top: 10px;
}
/*Admission form part end*/
/*footer part end*/

/*============================================
      Landing page end
  *=============================================*/

   /* .overlay{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    background: black;
    cursor: pointer;
  }
  .contrer{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: verdana;
    text-align: center;
  }
  .contrer:hover .overlay{
    opacity: 0.8s;
    transform: translate(-50%, -50%);
  } */

 .icon-list{
  display: flex;
  justify-content: flex-end;
  margin-bottom: 10px;
  margin-top: 10px;
 }

 nav{
  width: 100%;
 }

 .ins-details{
  height: 272px;
  overflow: hidden;
  margin-bottom: 10px;
 }

 .apply-btn{
  display: inline-block;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: none;
    padding: 0 35px;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 50px;
    border-radius: 5px;
    color: #ffffff;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 5;
    -webkit-transition: 0.4s 
ease-in-out;
    transition: 0.4s 
ease-in-out;
    background: #3b4191;
 }

 .apply-btn:hover{
  color: #ffff;
 }