<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url("https://fonts.googleapis.com/css2?family=Urbanist:wght@500;600&amp;display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Urbanist", sans-serif;
  /* border: 1px solid red; */
}
.profile-img {
  width: 150px;         /* Reduce width */
  height: 150px;        /* Reduce height */
  object-fit: cover;
  border-radius: 50%;   /* Ensures it's perfectly circular */
  border: 2px solid #007bff;
  padding: 2px;
}
.custom-name {
  color: #eea01e;
  font-weight: 600;
}
.custom-name2 {
  /* color: #eea01e; */
  font-weight: 550;
  font-size: 1.1rem;
}

html {
  font-size: 90%;
  scroll-behavior: smooth;
}

:root {
  --navy-blue: #002244;
  --navy-blue-2: #0a2351;
  --gold: #eea01e;
  --text-color: #02062bd8;
  --text-light: #8e99a5;
  --fw-1: 400;
  --fw-2: 600;
  --fw-3: 800;
}

@media screen and (min-width: 998px) {
  /* container fluid  */
  .container-fluid {
    padding: 0 4%;
  }
}
.title {
  color: var(--gold);
  font-weight: var(--fw-3);
}
/* top header  */

.top-header {
  background-color: var(--text-color);
  padding-bottom: 0;

  border-bottom: 1px solid #eaeaea;
}
.top-header a {
  color: #fff;
  font-weight: var(--fw-2);
}

.top-header .icon {
  display: flex;
  align-items: center;
  padding: 0.8rem 0;
}
.top-header .icon i {
  font-size: 1.1rem;
  margin-right: 1.2rem;
  color: #fff;
  cursor: pointer;
  transition: all 300ms ease;
}

.top-header .icon i:hover {
  color: var(--gold);
}
/* .top-header .logo {
  width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--navy-blue-2);
  padding: 0.2rem 0.7rem;
  height: 100%;
}

.top-header .c-bx:not(:last-child) {
  padding: 0 2rem;
  border-right: 1px solid #dfdfdf;
}

.top-header .c-bx .icon {
  display: block;
  margin-right: 1rem;
}

.top-header .c-bx span {
  padding-left: 0.9rem;
}

.top-header .c-bx i {
  color: var(--gold);
  font-size: 1.3rem;
}

.top-header .c-bx h5 {
  color: var(--text-color);
  font-size: 1.2rem;
  font-weight: var(--fw-3);
}

.top-header .c-bx h6 {
  color: var(--text-light);
  font-size: 1rem;
  font-weight: 300;
} */

/* navigation__header */

.navigation__header {
  background-color: #4c7bbd;
}
.navigation__header .navbar-toggler {
  border: none;
  box-shadow: none;
}
.navigation__header .navbar-toggler i {
  color: #fff;
}
@media screen and (max-width: 998px) {
  .navigation__header .navbar .nav-link {
    color: var(--text-color);
  }

  .navigation__header .nav-link {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
  }
  .navigation__header .nav-link i {
    color: var(--text-color) !important;
  }
}
@media screen and (max-width: 768px) {
  .navigation__header {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
  }
  .navigation__header .navbar {
    padding: 0.6rem 0 !important;
  }
  .middle-header {
    margin-top: 2.5rem;
  }
}

.navigation__header .nav-item {
  padding: 0.2rem 0.5rem;
}

.navigation__header .nav-link {
  color: #fff;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  display: block;
}

.navigation__header .nav-link:hover {
  color: var(--gold);
}
.navigation__header .nav-link i {
  margin-left: 0.5rem;
  color: #fff;
}

/* drop down */
.navigation__header .dropdown-toggle::after {
  display: none;
}

.navigation__header .dropdown .dropdown-menu {
  box-shadow: -0.0625rem 0 0.625rem 0 rgba(0, 0, 0, 0.07),
    0.3125rem 1.25rem 2.5rem 0 rgba(0, 0, 0, 0.04);
  background-color: #fff;
  border-color: #fff;
  padding: 0 !important;
  border-radius: 0;
}

.navigation__header .dropdown-menu .nav-item {
  padding: 0.3rem 0 !important;
}
.navigation__header .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navigation__header .dropdown .dropdown-menu li a {
  color: var(--text-color);
  font-weight: 400;
  padding: 0.6rem 0.9rem;
  position: relative;
  transition: 0.3s;
  font-size: 0.99rem;
  text-transform: capitalize;
}

.navigation__header .dropdown .dropdown-menu li a:hover {
  background-color: #ffe6bc;
}

.navigation__header .dropdown .dropdown-menu li a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 0%;
  background-color: var(--primary);
  transition: 0.3s;
}

/* .navigation__header .dropdown:hover &gt; .dropdown-menu {
  display: block;
  top: 100%;
  left: 0;
  animation: dropdown-show 0.25s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
*/

.navigation__header .dropend:hover &gt; .dropdown-menu {
  display: block;
  top: 0;
  left: 100%;
  animation: dropdown-show 0.25s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@-webkit-keyframes dropdown-show {
  0% {
    transform: translateY(-4px);
    opacity: 0;
  }

  100% {
    transform: translateY(4px);
    opacity: 1;
  }
}

.middle-header h6 {
  font-size: 1.5rem;
  font-weight: var(--fw-2);
  color: var(--text-color);
}

.middle-header h2 {
  font-size: 1.5rem;
  font-weight: var(--fw-3);
  color: var(--text-color);
}

.middle-header h6 {
  font-size: 0.9rem;
  font-weight: var(--fw-2);
  color: var(--text-color);
}

@media screen and (max-width: 768px) {
  .middle-header h2 {
    font-size: 1.1rem;
  }
  .middle-header .naac-logo {
    width: 56px;
  }
  .mb{
    padding: 1rem;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .bx{
    border-radius: 5px !important;
    /* height: 400px !important; */
  }
}
.membership-bx{
  border-bottom: 1px solid black;
  padding-bottom: 20px;
  margin-top: 50px;
}

/* MESSEGE BOX */

/* banner  */

/* 
.banner {
  background-color: red;
} */
.banner {
  min-height: 72vh;
}
.banner .right {
  background: linear-gradient(#081e47ee, #002244e1),
    url(../img/home-banner.jpeg);
  background-position: center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
}

.banner .right h5 {
  color: var(--gold);
  font-weight: var(--fw-1);
  margin-bottom: 1rem;
}

.banner .right h1 {
  color: #fff;
  margin-bottom: 1.5rem;
  font-weight: var(--fw-3);
}

.banner .right h6 {
  color: #fff;
  font-weight: var(--fw-2);
}

.banner .btn {
  background-color: transparent;
  border: 1px solid var(--gold);
  /* background-color: var(--gold); 
  */
  color: #fff;
  font-weight: var(--fw-1);
  padding: 0.6rem 1.5rem;
}

.banner .btn:hover {
  background-color: var(--gold);
  transition: 300ms ease-in;
}
@media screen and (max-width:990px) {
  .banner .right {
    min-height: 50vh;
  }
  .banner img {
     height: 300px !important;
  }
}
/* about-feature" */
.about-feature {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding: 2rem 0;
  background-color:#D8D8D8;
}
.about-feature h5 {
  color: var(--gold);
  font-weight: var(--fw-3);
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.about-feature p {
  color: var(--text-color);
  font-weight: var(--fw-2);
  line-height: 1.9;
  letter-spacing: 1px;
  text-align: justify;
}

.about-feature i {
  color: var(--navy-blue);
  /* font-size: 7rem; */
}



.side-corner li {
  list-style-type: none;
}
.active-high {
  background-color: #002244 !important;
  color: #fff;
}
.side-corner li a {
  display: block;
  background-color: #d3d6da;
  padding: 0.5rem 1.4rem;
  border-bottom: 1px solid #002244;
}

.side-corner li a:hover {
  background-color: #00376e;
  color: #fff;
}
.side-corner .dropdown-toggle::after {
  display: none;
}

.side-corner .dropdown-menu {
  border-radius: 0;
  padding: 0;
}

.side-corner .dropdown:hover &gt; .dropdown-menu {
  display: block;
  top: 100%;
  left: 0;
  animation: dropdown-show 0.25s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.side-corner .dropend:hover &gt; .dropdown-menu {
  display: block;
  top: 0;
  left: 100%;
  animation: dropdown-show 0.25s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* .about-feature a {
  background-color: var(--gold);
  font-weight: var(--fw-2);
  color: #fff;
  padding: 0.8rem 2rem;
  border-radius: 2px;
  font-size: 1rem;
}
.about-feature a:hover {
  background-color: transparent;
  border: 1px solid var(--gold);
} */
/* message  */
.message {
  padding: 4rem 0;
  /* background-color: #f5f5f573; */
}
.message .card-bx {
  background-color: white;
  border-radius: 20px;
  padding: 1.4rem 1rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.02);
  transition: all 300ms ease;
  height: 400px;
  
}

/* .message .card-bx:hover {
  background-color: var(--navy-blue);
} */
.message .card-bx.two {
  background-color: #f3f3f3;
}
.message .card-bx i {
  color: var(--gold);
  font-size: 2rem;
  margin-bottom: 0.4rem;
}

.message .card-bx h5 {
  color: var(--text-color);
  font-weight: var(--fw-3);
  font-size: 1.8rem;
}
.message .card-bx ul {
  list-style-type: none;
  height: auto;
}

.message .card-bx ul li a {
  color: var(--text-color);
  text-decoration: none;
  padding: 0.4rem 0;
  line-height: 1.5;
  font-weight: var(--fw-2);
  display: flex;
}

.message .card-bx ul li a i {
  font-size: 0.84rem;
  display: block;
  margin-right: 0.5rem;
}

.message .card-bx ul li a span {
  padding: 0;
  margin: 0;
}

.message .card-bx.two:hover {
  background-color: var(--navy-blue-2);
}
.mb {
  color: white;
  padding: 4rem 0;
  padding-left: 10rem;

  background: linear-gradient(#ffffffe1,#081e47ee),
  url(../img/home-banner.jpeg);
background-position: center center; 
background-size: cover;
display: flex;
/* align-items: center; */
/* justify-content: center; */
flex-direction: column;
height: 100%;
}

.mb h5 {
  color: var(--gold);
  font-weight: var(--fw-3);
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.mb p {
  color: black;
  font-weight: var(--fw-2);
  line-height: 1.9;
  letter-spacing: 1px;
  text-align: justify;
}

.mb i {
  color: var(--navy-blue);
  /* font-size: 7rem; */
}
/* .message .card-bx:hover h5 {
  color: #fff;
} */

/* .message .card-bx:hover a {
  color: #fff;
} */
/* notice */
.notice {
  padding: 4rem 0;
  background-color: var(--navy-blue);
}

.notice .notice-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 1.5rem 1.3rem;
}
.notice .notice-card h5 {
  color: var(--text-color);
  font-weight: var(--fw-3);
  font-size: 1.5rem;
  border-bottom: 1px dashed var(--gold);
  width: max-content;
  padding-bottom: 0.6rem;
}

.notice .notice-card h5 i {
  color: var(--gold);
}

.notice .notice-card ul {
  list-style-type: none;
  min-height: 280px;
  height: auto;
}

.notice .notice-card ul li a {
  color: var(--text-color);
  text-decoration: none;
  padding: 0.4rem 0;
  line-height: 1.5;
  font-weight: var(--fw-2);
  display: flex;
}

.notice .notice-card ul li a i {
  font-size: 0.84rem;
  display: block;
  margin-right: 0.5rem;
  color: var(--gold);
}

.notice .notice-card ul li a span {
  padding: 0;
  margin: 0;
}

.notice .notice-card .view-btn {
  color: var(--text-color);
  font-weight: var(--fw-2);
  padding: 0.4rem 0;
}
.notice .notice-card .view-btn:hover {
  color: var(--gold);
}
/* department */
.department {
  background-color: #fafafa;
  padding: 4rem 0;
}
.department h5 {
  font-weight: var(--fw-3);
  color: var(--text-color);
  font-size: 1.5rem;
  padding-bottom: 0.9rem;
  margin-bottom: 2rem;
  width: max-content;
  border-bottom: 2px solid var(--navy-blue);
}
.department ul {
  list-style-type: none;
}
.department ul li {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.02);
  border-radius: 4px;
  padding: 1rem 1rem;
  background-color: #fff;
  margin-bottom: 0.9rem;
}

.department ul li:nth-child(even) {
  background-color: #dadada80;
}

.department ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: var(--text-color);
  font-weight: var(--fw-3);
  font-size: 1.2rem;
}

/* event */
.event {
  padding: 4rem 0;
}
.event-card {
  height: 350px;
  overflow: hidden;
  position: relative;
  border-radius: 5px;
  display: flex;
  align-items: flex-end;
}

.event-card .overlay {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #00000060;
}
.event img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-card .info {
  position: relative;
  z-index: 5;
  margin-bottom: 5rem;
  margin-left: 3rem;
}
.event-card .info .date {
  background-color: #fff;
  width: max-content;
  width: 75px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.event-card .info .date h5 {
  font-weight: var(--fw-3);
  font-size: 1.8rem;
}
.event-card .info .date span {
  color: var(--gold);
  font-size: 1rem;
  font-weight: var(--fw-3);
}
.event-card .title h5 {
  color: #fff;
  font-weight: 900;
  font-size: 2rem;
}

.event-card .info span {
  color: #fff;
}
.event-list {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e4e4e4;
  padding-bottom: 1rem;
}
.event-list .date {
  background-color: var(--navy-blue-2);
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 10px;
  margin-right: 2rem;
}

.event-list .date h5 {
  color: #fff;
  font-weight: var(--fw-3);
  font-size: 2rem;
}

.event-list .date span {
  color: var(--gold);
  font-weight: var(--fw-2);
}
.time i {
  margin-right: 0.7rem;
  color: var(--gold);
}
.time span {
  color: var(--text-color);
  font-size: 1rem;
  font-weight: 900;
}
.event-list .bx h5 {
  color: var(--text-color);
  font-weight: var(--fw-3);
}
.gallery-home {
  background-color: #00224404;
  padding: 3rem 0;
  /* background-color: red; */
}
.gallery-home h3 {
  color: var(--text-color);
  font-weight: var(--fw-3);
  font-size: 1.9rem;
}
.gallery-home .img {
  height: 250px;
}
.gallery-home .owl-theme .owl-nav button {
  background-color: var(--gold);
  width: 35px;
  height: 35px;
  color: var(--text-color);
  font-weight: 600;
  font-size: 1.4rem;
  transform: translateY(-50%);
}
.owl-carousel .owl-nav button.owl-prev {
  position: absolute;
  top: 50%;
  left: -30px;
}
.owl-carousel .owl-nav button.owl-next {
  position: absolute;
  top: 50%;
  right: -30px;
}
/* footer  */
footer {
  padding: 4rem 0;
  background-color: var(--navy-blue-2);
}

footer h5 {
  margin-bottom: 1rem;
  font-weight: var(--fw-3);
  color: var(--gold);
}

footer p {
  color: #fcf9f9;
  line-height: 1.8;
  letter-spacing: 1px;
}
footer .social-icon i {
  background-color: #4c7bbd;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 2px;
  cursor: pointer;
  transition: all 300ms ease;
}

footer .social-icon i:hover {
  background-color: var(--text-color);
}
footer ul {
  padding: 0;
  list-style-type: none;
}
footer ul li {
  padding: 0.4rem 0;
}
footer ul li i {
  color: var(--gold);
  margin-right: 0.9rem;
}
footer ul li a {
  color: #fff;
  text-decoration: none;
}

footer .bx {
  display: flex;
  align-items: center;
}
footer .bx .icon i {
  color: #fff;
  margin-right: 0.8rem;
}
footer .bx span {
  color: #fff;
}

.footer-copy {
  padding: 0.5rem 0;
  background-color: var(--navy-blue);
}

.footer-copy p {
  text-align: center;
  color: #fff;
  padding: 0 0.4rem;
  font-size: 0.8rem;
}

/* scroll top button */

.scrolltop {
  position: fixed;
  bottom: 3rem;
  right: 2rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 1.4rem;
  padding: 0.3rem;
  background-color: #4c7bbd;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  transform: translateX(200px);
  z-index: 99;
  cursor: pointer;
}

.scrolltop i {
  color: #fff;
  font-weight: 600;
}

.scrolltop.active {
  transform: translateX(0px);
}

.scrolltop:hover {
  background-color: rgba(46, 45, 45, 0.589);
}
/* about page  */
/* comman-banner */
.comman-banner {
  min-height: 40vh;
  background: linear-gradient(#002244ce, #0a2351d0),
    url("../img/comman-banner.jpg");
  background-position: center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
.comman-banner h2 {
  text-transform: capitalize;
  color: #fff;
  font-weight: var(--fw-3);
}
.comman-banner h4 {
  text-transform: capitalize;
  color: #fff;
  font-weight: var(--fw-3);
}

.comman-banner span a {
  color: #fff;
  text-decoration: none;
}
.comman-banner span {
  color: #fff;
}
.comman-banner span i {
  margin: 0 1rem;
  color: var(--gold);
}

/* about info  */
.about-info {
  padding: 4rem 0;
  margin-left: 80px;
}

.about-info h6 {
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: var(--fw-3);
}
.about-info h5 {
 
  font-weight: 600;
}
.about-info h3 {
  color: var(--text-color);
  font-weight: var(--fw-3);
}
.about-info p {
  color: var(--text-color);
  font-weight: var(--fw-2);
  line-height: 1.8;
  text-align: justify;
}

/* vission */
.vission {
  background-color: #f1f1f1;
  padding: 4rem 0;
}
.vission .bx {
  border-radius: 15px;
  background-color: #fff;
  padding: 2rem 2rem;
  height: 350px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.vission .bx.two {
  background-color: var(--navy-blue);
}
.vission .bx h4 {
  color: var(--gold);
  font-weight: var(--fw-3);
  font-size: 2rem;
}
.vission .bx p {
  color: var(--text-color);
  font-weight: var(--fw-2);
  letter-spacing: 1px;
  line-height: 1.7;
}
.vission .bx.two p {
  color: #ffff;
}

/* contact-info */
.contact-info {
  padding: 4rem 0;
}
.contact-info h6 {
  color: var(--gold);
  font-weight: var(--fw-3);
  font-size: 1.3rem;
}
.contact-info h3 {
  color: var(--text-color);
  font-weight: var(--fw-2);
}
.contact-info .bx {
  padding: 2rem 2rem;
  background-color: #f3f2f2;
  border-radius: 5px;
  height: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.02);
}

.contact-info .bx i {
  color: var(--gold);
  font-weight: var(--fw-3);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.contact-info .bx p {
  color: var(--text-color);
  font-weight: var(--fw-3);
}
/* contact-form */
.contact-form .wraper {
  background-color: #fff;
  padding: 1rem;
}
.contact-form {
  background-color: #fafafa;
  padding: 2.3rem 2rem;
}
.contact-form h5 {
  font-weight: var(--fw-3);
  color: var(--text-color);
  margin-bottom: 1rem;
}
.contact-form .form-control {
  padding: 0.8rem 2rem;
  box-shadow: none;
}
.contact-form .btn {
  background-color: var(--gold);
  font-weight: var(--fw-2);
  padding: 0.8rem 2rem;
  font-size: 1.2rem;
  text-transform: capitalize;
  transition: all 300ms ease;
}

.contact-form .btn:hover {
  background-color: #e69914;
}
@media screen and (max-width: 768px) {
  .contact-form {
    padding: 1rem 0.5rem;
  }
  .about-info {
  
  margin-left: 10px !important;
}
}

/* gallery page  */
.gallery-page {
  padding: 4rem 0;
}
.gallery-page h5 {
  font-weight: 800;
  color: var(--text-color);
}

.gallery-page .nav-pills .nav-link {
  color: var(--text-color);
  background-color: #090e321e;
  margin-right: 0.5rem;
}
.gallery-page .nav-pills .nav-link:hover {
  background-color: var(--navy-blue-2);
  color: #fff;
}
.gallery-page .nav-pills .nav-link.active,
.nav-pills .show &gt; .nav-link {
  background-color: var(--text-color);
  color: #fff;
}

.gallery-page .img {
  height: 240px;
  overflow: hidden;
}

.gallery-page .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .gallery-page .nav-pills .nav-link {
    margin-bottom: 0.5rem;
  }
}

/* video  */

/* video  */
.video-page {
  padding: 4rem 0;
}

.video-page h5 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-color);
}

.video-page .video {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.video-page .video .youtube-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  color: #fff;
}

.video-page .video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* syllabus  */
.syllabus {
  padding: 4rem 0;
}
.syllabus ul li a {
  color: var(--text-color);
  font-weight: 900;
}

/* departement */
.departement {
  padding: 4rem 0;
}

.departement h5 {
  color: var(--text-color);
  font-weight: var(--fw-3);
  font-size: 1.4rem;
}
.departement p {
  color: var(--text-color);
  font-weight: var(--fw-1);
  line-height: 1.7;
}
.departement ul li {
  color: var(--text-color);
  font-weight: var(--fw-1);
}
.prof_card{
  background: linear-gradient(#c8c8c8ee, #ffffffe1);
  /* background-color: gray; */
  border-radius: 10%;
  height: 300px;
  /* width: fi; */
  border: 1px solid black;
}
.card-body {
  margin-top: 30px;
}
</pre></body></html>