@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #008abd;

  --border-color: #000000;
  --light-border-color: #dadce0;
  --p-size: 16px;
  --sm-p-size: 12px;
  --heading-size: 48px;
  --m-heading-size: 24px;
  --s-heading-size: 16px;
  --white: #ffffff;
  --black: #3f3f3f;
  --p--gray: #444444;
  --p-black: #3f3f3f;
  --p-primary: #6f1348;
  --max-width: 1470px;

  --family: "Nunito Sans", sans-serif;
  --box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
  --gray-bg: #f6f6f6;
}

body {
  overflow-x: hidden;
  font-family: Arial, Helvetica, sans-serif;
}

a {
  text-decoration: none;
  line-height: 30px;
}

img {
  display: block;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 15px;
  overflow-x: hidden;
}
@media screen and (max-width: 1470px) {
  .container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 15px;
    overflow-x: hidden;
  }
}

.d-none {
  display: none;
}

.app-container {
  width: 100%;
  font-family: var(--family);
}

p {
  line-height: 30px;
}

/** Header  */

.app-header {
  width: 100%;
  border-bottom: 1px solid var(--light-border-color);
  box-shadow: var(--box-shadow);
  background: var(--white);
}

.app-header-logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
  gap: 1rem;
}

.app-header-logo-link {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
}

.app-header-logo-link img {
  width: 100%;
  max-width: 300px;
}

.app-header-menu-toggle {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  cursor: pointer;
  box-shadow: var(--box-shadow);
  padding: 0.4rem;
  border-radius: 5px;
}

.app-header-menu-toggle svg {
  font-size: 1.6rem;
}
div.transbox {
  margin: 30px;
  background-color: #ffffff;
  border: 1px solid black;
  opacity: 0.6;
}

div.transbox p {
  margin: 5%;
  font-weight: bold;
  color: #000000;
}

.app-header-menus {
  width: 100%;
  display: none;
}

.app-header-link {
  display: block;
  padding: 1rem;
  color: var(--p-black);
  font-family: var(--family);
  border-bottom: 1px solid var(--light-border-color);
  font-weight: 500;
  letter-spacing: 0.2px;
  font-size: 1rem;
}
.app-header-link span {
  margin-left: 10px;
}

.app-header-link:hover {
  color: var(--primary-color);
}

.app-header-link:last-child {
  border: none;
}

.app-header-link-button {
  display: block;
  background: var(--primary-color);
  color: var(--white);
  padding: 10px 25px 10px 25px;
  text-align: center;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-weight: 700;
}

.active {
  color: var(--primary-color) !important;
  text-decoration: underline !important;
  font-weight: bolder !important;
}
.facilies {
  text-align: center;
  font-size: 38px;
  margin: 30px 0;
  font-weight: 600;
  color: var(--primary-color);
  font-weight: 700;
}
.about-content {
  background-color: white;
  /* opacity: 0.6; */
}
  .app-header-menu-links .primary-button{
  padding: 4px 20px;
}
  .app-header-menu-links .primary-button a{
    color: white;
  }


@media screen and (min-width: 1200px) {
  .app-header {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .app-header-menu-toggle {
    display: none;
  }

  .app-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .app-header-logo {
    width: 35%;
    padding: 0;
  }

  .app-header-menus {
    display: block;
  }

  .app-header-menu-links {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 35px;
    font-size: 14px;
  }

  .app-header-link {
    display: inline;
    padding: 0;
    border-bottom: none;
  }

}

/** Header Ends */

/** Banner  */

.bx-wrapper {
  margin-bottom: 1rem;
  border: none;
}

.bx-wrapper .bx-pager {
  display: none;
}

.bx-wrapper img {
  width: 100%;
}

.slider-container {
  margin-bottom: 2rem;
}

/** Banner Ends  */

/** Mission Vision  */
.home-facilities-section{
  padding-bottom: 40px;
}

.mission-vision-section {
  width: 100%;
  background: #eeeeee;
  padding: 1rem;
}

.mission-vision {
  width: 100%;
}

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

.tab-wrapper {
  width: 100%;
}

.tab-header {
  width: 100%;
  margin-bottom: 1rem;
}
.tab-header h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

.tab {
  text-align: center;
  border: 1px solid var(--black);
  border-radius: 5px;
  padding: 0.5rem 0.8rem;
  font-size: 1rem;
  font-family: var(--family);
  background: var(--white);
  font-weight: 500;
}

.tab-active {
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: var(--white);
}

.tab-body {
  width: 100%;
}

.tab-body .mission,
.tab-body .vision {
  width: 100%;
  margin-bottom: 2rem;
  padding-right: 30px;
}
.banner-text {
  background-color: white;
  height: 400px;
  width: 400px;
}

.tab-body .mission p,
.tab-body .vision p {
  font-size: 1rem;
  font-family: var(--family);
  color: #444444;
  text-align: justify;
  font-weight: 600;
  margin-bottom: 1rem;
}

.tab-body .mission a,
.tab-body .vision a {
  font-family: var(--family);
  font-style: normal;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 34px;
  letter-spacing: 0.279625px;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.mission-vision-video {
  width: 100%;
}
.mission-vision-video img {
  height: auto;
  width: 100%;
  border-radius: 10px;
}

.mission-vision-video video {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .mission-vision,
  .tab-body {
    padding: 2rem 0;
  }

  .tab-header {
    gap: 1rem;
  }
}
@media screen and (max-width: 920px) {
  .mission-vision-content {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
}

@media screen and (min-width: 1100px) {
  .tab-wrapper {
    padding: 1rem;
  }

  .tab {
    font-size: 1.4rem;
  }
}

/** Mission Vision Ends */







/** Footer  */

.app-footer {
  width: 100%;
  background: var(--primary-color);
}
.footer {
  width: 100%;
  padding: 2rem 0;
}

.footer-link-section {
  width: 100%;
}

.footer-links-wrapper {
  width: 100%;
}

.footer-link {
  width: 100%;
  margin-bottom: 2rem;
}

.footer-link a {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-family: var(--family);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 1rem;
}
.footer-link h3 {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  margin-bottom: 1rem;
}

.foote-social-media {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.foote-social-media a img {
  width: 100%;
  width: 25px;
}

.footer-contact-info-section {
  width: 100%;
}

.footer-contact-info-section h6 {
  font-size: 1rem;
  font-family: var(--family);
  color: var(--white);
  margin-bottom: 1rem;
  text-decoration: underline;
}

.footer-contact-info {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-contact-info a,
.footer-contact-info p {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-family: var(--family);
  color: var(--white);
  font-weight: 700;
}

.app-footer-brand {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  padding: 0 20px;
}

.copy-right {
  padding: 0.5rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.copy-right p {
  font-family: var(--family);
  font-size: 1rem;
  font-weight: 700;
}

.footer-brand {
  padding: 0.5rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.footer-brand p {
  font-family: var(--family);
  font-size: 1rem;
  font-weight: 700;
}

.footer-brand img {
  max-width: 150px;
}
.app-footer-brand-container {
  width: 100%;
  background: var(--primary-color);
}

@media screen and (min-width: 768px) {
  .footer {
    display: grid;
    grid-template-columns: 70% 35%;
    grid-template-rows: auto;
  }

  .footer-links-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .footer-link {
    margin-bottom: 0;
  }

  .footer-contact-info a {
    width: auto;
    display: inline-block;
  }
}

@media screen and (min-width: 1100px) {
  .toppers {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: auto;
    gap: 1rem;
  }
}
@media screen and (max-width: 1030px) {
  .app-footer-brand {
    flex-direction: column;
  }
}
/** Footer Ends  */

/** About us Page  */

.about-us-banner {
  width: 100%;
  min-height: 500px;
  background: url("../images/management/about-banner.jpg") top left no-repeat;

  background-size: cover;
  background-position: left;
  position: relative;
}

.about-us-banner-content {
  width: 100%;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.about-us-banner-content h2 {
  font-size: 1.6rem;
  font-family: var(--family);
  color: var(--white);
  position: relative;
  margin-bottom: 1rem;
}

.about-us-banner-content h2::after {
  content: "";
  bottom: 0;
  left: 0;
  position: absolute;
  width: 100px;
  border-bottom: 1px solid var(--white);
}

.about-us-banner-content p {
  font-size: 1rem;
  font-family: var(--family);
  color: var(--white);
  text-align: justify;
}

.hod-section {
  width: 100%;
  padding-top: 2rem;
  background: var(--white);
}

.hod-section h6 {
  font-size: 1.1rem;
  font-family: var(--family);
  margin-bottom: 1rem;
  text-align: center;
  color: var(--primary-color);
}

.hod-section h4 {
  font-size: 1.6rem;
  font-family: var(--family);
  margin-bottom: 2rem;
  text-align: center;
  color: #252b42;
}

.hod-container {
  width: 100%;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.hod-card {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.hod-image {
  width: 100%;
}

.hod-image img {
  width: 100%;
}

.hod-content {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(3deg, #6f1348 3%, rgba(0, 35, 123, 0) 98.19%);
  position: relative;
  z-index: 1;
}

.hod-content h6 {
  font-size: 1.4rem;
  font-family: var(--family);
  margin-bottom: 1rem;
  text-align: center;
  color: var(--white);
}

.hod-content p {
  font-size: 1rem;
  font-family: var(--family);
  text-align: center;
  color: var(--white);
}




/** form css */
.form-group {
  width: 100%;
  margin-bottom: 1rem;
}

input {
  width: 100%;
  height: 60px;
  border-radius: 10px;
  border: 1px solid gray;
  padding-left: 1rem;
  font-family: var(--family);
  outline: none;
}

input[type="file"] {
  width: 100%;
  height: auto;
  padding: 1rem 0;
  border-radius: 10px;
  border: 1px solid var(--primary-color);
  padding-left: 1rem;
  font-family: var(--family);
  outline: none;
}

textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid gray;
  padding: 1rem;
  font-family: var(--family);
  outline: none;
}

.primary-button {
  font-size: 1rem;
  font-family: var(--family);
  background: var(--primary-color);
  color: var(--white);
  font-weight: 600;
  text-align: center;
  padding: 1rem 5rem;
  border-radius: 10px;
  border: 1px solid var(--primary-color);
}

/** form css Ends */

/** Contact us  */

.contact-section {
  width: 100%;
  min-height: 100vh;
  background: url("../images/contact/Contact us form image.png") top left
    no-repeat;
  background-size: cover;
  background-position: left;
  position: relative;
  z-index: 1;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.contact-section::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: -1;
}

.contact-content {
  width: 100%;
  margin-bottom: 3rem;
}
.contact-container {
  width: 100%;
}

.contact-content h2 {
  font-size: 1.2rem;
  font-family: var(--family);
  font-weight: bold;
  color: var(--white);
}

.contact-content h2:nth-child(3) {
  position: relative;
  margin-bottom: 3rem;
  padding-bottom: 1rem;
  z-index: 1;
}

.contact-content h2:nth-child(3)::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 150px;
  content: "";
  border-bottom: 3px solid var(--white);
  z-index: -1;
}

.contact-form-container {
  width: 100%;
  background: var(--white);
  box-shadow: var(--box-shadow);
  border-radius: 10px;
  padding: 2rem 1rem;
}

.contact-content p,
.contact-content a {
  font-size: 1rem;
  font-family: var(--family);
  color: var(--white);
  text-align: justify;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
}

.contact-content a svg {
  color: var(--white);
}

.contact-form-container {
  width: 100%;
  padding-bottom: 1rem;
}

.contact-form-container h6 {
  font-family: var(--family);
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 2rem;
}

.contact-form-submit-button-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .contact-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
}

@media screen and (min-width: 920px) {
  .contact-section {
    min-height: max-content;
  }

  .contact-container {
    width: 100%;
    display: grid;
    grid-template-columns: 60% 40%;
    grid-auto-rows: auto;
  }

  .contact-content {
    align-items: flex-start;
    padding: 1rem;
  }

  .contact-form-container {
    padding: 2rem;
  }

  .contact-content h2:last-child {
    margin-bottom: 3rem;
  }

  .contact-content p {
    margin-bottom: 1rem;
  }

  .contact-content h2 {
    font-size: 3.5rem;
  }

  .contact-section::after {
    background: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.5) 40%,
      rgba(255, 255, 255, 0.1) 60%
    );
  }
}

/** Contact us Ends */

/** Career us  */

.career-wrapper {
  width: 100%;
  min-height: 100vh;
  background: url("../images/career/career-banner.png") top left no-repeat;
  background-size: cover;
  background-position: left;
  position: relative;
  z-index: 1;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.career-wrapper::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: -1;
}

.career-intro-section {
  width: 100%;
  margin-bottom: 3rem;
}
.career-intro {
  width: 100%;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  padding: 1rem;
}

.career-intro h4 {
  font-size: 2rem;
  font-family: var(--family);
  margin-bottom: 1rem;
  text-align: center;
  font-weight: bold;
  position: relative;
  z-index: 1;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
}

.career-intro h4::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100px;
  content: "";
  border-bottom: 3px solid var(--black);
  z-index: -1;
  transform: translateX(-50%);
}

.contact-form-container {
  width: 100%;
  background: var(--white);
  box-shadow: var(--box-shadow);
  border-radius: 10px;
  padding: 2rem 1rem;
}

.career-intro p {
  font-size: 1rem;
  font-family: var(--family);
  text-align: justify;
  font-weight: 700;
  margin-bottom: 1rem;
}

.career-opening-section {
  width: 100%;
  margin-bottom: 2rem;
}

.career-opening-container {
  width: 100%;
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
  /* border-radius: 10px; */
}

.table {
  width: 100%;
  background: var(--white);
  border-radius: 10px;
  /* box-shadow: var(--box-shadow); */
  border: none;
  border-collapse: collapse;
}
.table-striped .table tbody tr:last-child td:last-child a {
  color: #ff0000; /* Change this to the desired color code */
}

.table-striped .table td {
  text-align: center;
}
.table thead {
  background: var(--primary-color);
}

.table thead tr th {
  color: var(--white);
}

.table thead tr th,
.table tbody tr td {
  min-width: 10px;
  text-align: center;
  padding:.6rem 1rem ;
  border: 1px solid var(--primary-color);
  font-family: var(--family);
  font-size: 1rem;
  text-align: left;
}

.table tbody tr td a {
  font-family: var(--family);
  font-size: 1rem;
 color: var(--primary-color); 
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.carrer-form-section {
  width: 100%;
}

.carrer-form-container {
  width: 100%;
  background: var(--white);
  border-radius: 10px;
  padding: 2rem 1rem;
}

.carrer-form-container h4 {
  font-family: var(--family);
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 2rem;
}

.career-form-submit-button-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 920px) {
  .carrer-form-container .row {
    width: 100%;
    max-width: 80%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 1rem;
  }
}

/** Career us Ends */

/** social-media */

.app-social-media-section {
  width: 100%;
  max-width: 50px;
  overflow: hidden;
  position: fixed;
  top: 30%;
  right: 0;
  z-index: 99;
}

.social-media-continer {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.social-card {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}

.social-card img {
  width: 100%;
}

@media screen and (min-width: 320px) and (max-width: 1099px) {
  .app-social-media-section {
    display: none;
  }
}

/** social-media Ends*/



/* Public DIsclosure  */

.public-disclosure-section {
  width: 100%;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.information-container {
  width: 100%;
  margin-bottom: 2rem;
}

.information-container h6  , .course h6{
  font-size: 1.2rem;
  font-family: var(--family);
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.other-information {
  margin-top: 1.6rem;
  margin-bottom: 1.6rem;
}

.other-information h6 {
  font-size: 1rem;
  font-family: var(--family);
  margin-bottom: 1rem;
  color: dodgerblue;
}

/* Public DIsclosure Ends */
/* art_facilities start */

.art_facilities_content {
  display: flex;
  align-items: center;
  gap: 64px;
  align-self: stretch;
}
.art_facilities_content .image_box {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.art_facilities_content .image_box img {
  width: 300px;
  height: 300px;
}
.art_facilities_content slick-dots {
  bottom: -40px;
}
/* @media (max-width: 1440px) {
.art_facilities_content .image_box img {
    width: 300px;
    height: 300px;
  }
}
@media (max-width: 1200px) {
 .art_facilities_content .image_box img {
    width: 260px;
    height: 260px;
  }
}
@media (max-width: 1024px) {
  .art_facilities {
    gap: 28px;
  }
  .art_facilities h2 {
    font-size: var(--m-heading-size);
  }
}
@media (max-width: 500px) {
  .art_facilities h2 {
    font-size: 20px;
  }
  .art_facilities {
    padding: 20px 6px;
  }
} */
/* art_facilities end */
/* academics page  */
.academics_background img {
  width: 100%;
  height: auto;
}
.academics_content {
  padding: 30px 40px;
}
.academics_content ul {
  padding-left: 20px;
  color: #444;
  font-size: 16px;
  margin-bottom: 1rem;
}
.academics_content li{
  margin-bottom: 10px;
}
.academics_content p {
  color: #444;
  text-align: justify;
  font-size: 16px;
  font-weight: 500;
  line-height: 170%;
  margin-bottom: 1rem;
}
.academics_content h2{
  margin-bottom: 1.1rem;
  color: #000;
font-size: 28px;
font-weight: 700;
}
@media screen and (max-width: 500px) {
  .academics_content{
    padding: 20px 10px;
  }
  .academics_content h2{
    font-size: 18px;
  }

}
/* academics page  */
/* founder section start */
.founder {
  background-color: #f9f9f9;
  padding: 0 20px;
}

.founder .pre-container {
    display: flex;
    align-items: center;
    gap: 85px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 0;
    border-bottom: 1px solid black;
}

.founder .founder_about {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.founder .founder_about h6 {
  color: var(--red-color);
  font-family: var(--heading-font-family);
  font-size: var(--heading-font-size);
  font-weight: 600;
  letter-spacing: 0.2px;
}

.founder .founder_about p {
  color: black;
  text-align: justify;
  font-family:math;
  font-size: 18px;
  font-weight: 400;
}

.founder .founder_about h5 {
  color: black;
  font-family: var(--heading-font-family);
  font-size: 24px;
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0.083px;
}

.founder_image img {
  height: 400px;
  /* width: 461px; */
  object-fit: contain;
}


@media (max-width: 768px) {
  .founder .pre-container {
    flex-direction: column;
    transition: all 0.5s;
    gap: 20px;
    border-bottom: 1px solid black;
  }

  .founder .founder_image {
    display: flex;
    justify-content: center;
    transition: all 0.5s;
    order: 2;
  }

  .founder .founder_about {
    padding: 0 20px;
    transition: all 0.5s;
    order: 1;
  }
}

@media (max-width: 425px) {
  .founder .founder_image img {
    padding: 0 20px;
    width: 100%;
    transition: all 0.5s;
    height: auto;
  }
  .founder .founder_about h6 {
    font-size: 26px;
  }
  .founder .founder_about p {
    font-size: 14px;
  }
}

/* founder section end */
.course{
 padding: 120px 0 160px 0;
}