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

body {
  background-image: url(../images/bg.png);
  font-family: "Montserrat", serif;
  font-size: 15px;
}
.img-fluid {
  width: 100%;
}
section {
  margin-bottom: 60px;
}

/*  */

.nav_shadow {
  text-shadow: 0px 3px 4px rgba(0, 0, 0, 0.25);
}

/*  */
/*header css*/
.header-title h2 {
  font-size: 32px;
  line-height: 40px;
  font-weight: 800;
  color: #aa2576;
  text-transform: uppercase;
  margin-bottom: 0px;
}
.header .header-contact {
  text-align: right;
}
.header .header-contact a {
  color: #1e1e1e;
  text-decoration: none;
}
.header-span{
  background-color: #672D91;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
      font-size: 12px;
    padding: 15px;
}
.menustrip {
  background-color: #672D91;
  margin-top: -40px;
}
.menustrip .navbar-nav .nav-item {
  padding: 0px 14px;
}
.menustrip .navbar-nav .nav-item:first-child {
  padding-left: 0px;
}
.menustrip .navbar-nav .nav-link {
  color: white;
  padding: 10px 0px;
  position: relative;
  font-size: 14px;
}
.menustrip .navbar-nav .nav-link:hover,
.menustrip .navbar-nav .nav-link.active {
  font-weight: 600;
}
.menustrip .navbar-nav .nav-link:hover::after,
.menustrip .navbar-nav .nav-link.active::after {
  content: ".";
  font-size: 20px;
  color: #fff;
  position: absolute;
  right: 0;
  margin-top: 10px;
  margin-right: 45%;
  text-align: center;
}
/*home banner*/
.homebanner {
  position: relative;
}
.homebanner .caption {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.homebanner h1 {
  font-size: 52px;
  line-height: 60px;
  font-weight: 800;
}
.homebanner p {
  font-size: 18px;
  color: #d0d0d0;
}
.homebanner .btn-primary {
  padding: 2px 2px 2px 20px;
}
.homebanner .btn-primary img {
  background: #ffffff69;
  padding: 9px;
  border-radius: 50%;
  width: 36px;
}
.homebanner .btn-primary span {
  padding-right: 10px;
}
.btn-primary {
  background-color: #aa2576;
  border: 1px solid #aa2576;
  border-radius: 30px;
  padding: 10px 30px;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  text-transform: capitalize;
}
.btn-primary .svg-inline--fa.fa-w-16 {
  width: 1em;
  font-size: 35px;
  height: 2.5rem;
  vertical-align: middle;
}
.main-heading {
  margin-bottom: 20px;
}
.main-heading span {
  font-size: 32px;
  line-height: 40px;
  font-weight: 800;
  text-transform: capitalize;
  color: #aa2576;
  position: relative;
}
.main-heading span::after {
  background: linear-gradient(90deg, #aa2576 0%, #ffffff 100%);
  content: "";
  position: absolute;
  width: 70px;
  height: 3px;
  top: 0;
  right: 0;
  margin: 20px -80px 20px 0px;
}
.para {
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 20px;
}
/*hotels-sec*/
.hostel-sec {
  background-color: #fef8f1;
}
.card {
  border: none !important;
  border-radius: 15px;
}
.hostel-sec .card img{
    height: 200px !important;
    object-fit: cover;
  }
  .hostel-sec .card .card-body img{
    height: auto;
  }
.card-title {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  text-transform: capitalize;
  a {
    color: inherit;
    text-decoration: none;
  }
}
.card-title a::before {
  content: url(../images/trangle.png);
}

.location {
  margin-bottom: 10px;
}
.owl-carousel .owl-item .location img {
  width: 18px;
  float: left;
  margin-right: 5px;
}
.btn-link {
  border: 1px solid #aa2576;
  padding: 10px 30px;
  border-radius: 30px;
  color: #aa2576;
  text-decoration: none;
}
.btn-link:hover {
  background-color: #aa2576;
  color: #fff;
}
/*nav*/
.owl-next,
.owl-prev {
  background: #fff;
  border: 3px solid #ccc;
}
.owl-next:hover,
.owl-prev:hover {
  background: #fff;
  border: 3px solid #fef401;
}
.owl-prev {
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  padding: 6px 10px;
  border-radius: 50%;
}
.owl-next {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  padding: 6px 10px;
  border-radius: 50%;
}
.owl-next i,
.owl-prev i {
  color: #000;
}
/*newsletter*/
.newletter-box {
  background-color: #aa2576;
  padding: 20px 50px;
  border-radius: 15px;
  color: #fff;
}
.btn-white {
  background-color: #fff;
  color: #aa2576;
  border-radius: 10px;
  margin-left: 10px !important;
  border-top-left-radius: 10px !important;
  border-bottom-left-radius: 10px !important;
  padding: 10px 30px;
  font-weight: 600;
}
.newletter-box .form-control {
  background: #ffffff54;
  color: #000;
  border: 1px solid #ffffff54;
  border-radius: 10px;
  border-top-right-radius: 10px !important;
  border-bottom-right-radius: 10px !important;
}
/*contact-sec*/
.contact-sec {
  background-color: #fef8f1;
  padding: 120px 0px 50px 0px;
  /* margin-top: -60px; */
}

.location-box {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  height: 100%;
}
.location-box .para {
  font-size: 16px;
  line-height: 22px;
}
.location-box .list-group-item {
  padding: 10px 0px !important;
}
.location-box .list-group-item img {
  width: 50px;
}
.location-box .list-group-item p {
  margin-bottom: 0px;
  font-size: 14px;
}
.location-box .list-group-item p a {
  color: #000;
  text-decoration: none;
}
.location-box .list-group-item h6 {
  font-family: 16px;
  font-weight: 600;
}
.form-control {
  background: #f4f4f4;
  color: #000;
}
.form-control::placeholder {
  font-size: 14px;
}
textarea.form-control {
  min-height: calc(1.5em + 4.75rem + calc(var(--bs-border-width) * 4));
}
.google-map {
  position: relative;
}
.google-map .address {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.google-map .address h6 {
  font-size: 13px;
  margin-bottom: 0px;
}
.google-map .address p {
  font-size: 13px;
  margin-bottom: 0px;
}
.google-map .address .text {
  margin-top: -130px;
  width: 60%;
  margin-left: -50px;
}
.small-heading {
  color: #aa2576;
  text-transform: uppercase;
}
.flogo img {
  width: 80px;
}
.site-footer li a {
  color: #000;
  text-decoration: none;
}
.newsletter-footer {
  position: relative;
}
.newsletter-footer .btn-primary {
  position: absolute;
  top: 0;
  right: 0;
}
.footer-copy {
  background-color: #aa2576;
  padding: 10px 0px;
  color: #fff;
}
.footer-box {
  padding-right: 100px;
}
iframe {
  width: 100%;
}
.toggle-nav,
a.closebtn {
  display: none;
}
.mynav {
  display: none;
}

/* about */
.about_s2btn {
  background-color: white;
  border: 1px solid #fef401;
  color: #fef401;
  font-size: 14px;
  font-weight: 500;
}
.about_s2btn:hover {
  background-color: #fef401;

  color: white;
}

.about_s1h1 {
  font-size: clamp(30px, 5vh, 40px);
  font-weight: 700;
}

.about_s1af {
  color: #ababab;
}

.about_s1af::before {
  content: "";
  display: inline-block;
  width: 1px; /* Adjust thickness */
  height: 30px; /* Adjust height */
  background-color: white;
  margin-right: 8px; /* Adjust spacing */
  vertical-align: middle;
}

.about_m2 {
  background-color: #fef8f1;
}
.about_lblue {
  background-color: #aa2576;
}
.about_dabeforel {
  position: relative;
}
.about_dabeforel:before {
  content: "";
  background-color: #aa2576;
  width: 2px; /* Adjust thickness */
  height: 100%; /* Adjust height */
  position: absolute;
  top: 0;
  left: 0;
}

.about_span {
  font-size: 18px;
  font-weight: 500;
  color: white;
}

.about_s3h {
  font-size: clamp(30px, 5vh, 40px);
  font-weight: 800;
}

/* section 4 */
.about_Lblue {
  color: #aa2576;
}

/* contact */
.footer_color {
  color: #4f536c !important;
}
.contact_footercb {
  background-image: linear-gradient(#aa2576, #aa2576);
  color: white;
}
.contact_footercb:hover {
  background-image: linear-gradient(#aa2576, #aa2576);
  color: white;
}

.index_iframe {
  /* width: 100%; */
  height: 100%;
}

.contact_fc {
  padding: 120px 0px 50px 0px;
  margin-top: -60px;
}

/* hostel */
.hostel_s2button {
  color: white;
  background-image: linear-gradient(#aa2576, #aa2576);

  border: 1px solid white;
  box-shadow: 0px 4px 4px 0px #00000040;

  font-size: 18px;
  font-weight: 600;
}
.hostel_s2button:hover {
  color: white;
  background-image: linear-gradient(#aa2576, #aa2576);

  border: 1px solid white;
  box-shadow: 0px 4px 4px 0px #00000040;
}
.hostel_s2button2 {
  color: #aa2576;
  background-image: linear-gradient(white, white);

  border: 1px solid #aa2576;

  font-size: 18px;
  font-weight: 600;
}
.hostel_s2button2:hover {
  color: #aa2576;
  background-image: linear-gradient(white, white);

  border: 1px solid #aa2576;
}

.hostel_s3btn {
  background-image: linear-gradient(#aa2576, #aa2576);
  color: white;
  font-size: 14px;
  font-weight: 500;
}
.hostel_s3btn:hover {
  background-image: linear-gradient(#aa2576, #aa2576);
  color: white;
  font-size: 14px;
  font-weight: 500;
}

/* jeevan medical college */
.jeevan_s2ptext {
  color: #646464;
}

.jeevan_s3img {
  position: relative;
  font-size: 20px;
  font-weight: 600;
  color: #000;
  text-transform: capitalize;
  a {
    color: inherit;
    text-decoration: none;
  }
}
.jeevan_s3img a::before {
  position: absolute;
  top: 4px;
  left: -24px;
  content: url(../images/trangle.png);
}

.card_s3borde {
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.25) !important;
  border-radius: 6px !important; /* Optional: Adds rounded corners */
}
/* section 2 */
.jeevan_s2imgh {
  width: 100%;
  height: 440px;
}
/*  */
.jeevan_lightyc {
  background-color: #fef8f1;
}
.jeevan_box {
  width: 305px;
  /* height: 100%; */
  background-color: #f8f9fa;
  border: 1px solid #ddd;
  border-radius: 8px;
}

/* section 4 */
.jeevan_s4h {
  height: 325px;
}

/* religious */
.religious_h5 h5 {
  font-size: 16px;
}
.religious_h5 p {
  font-size: 14px;
  color: #4f536c;
}

.religious_s2c {
  position: relative;
  font-size: 20px;
  font-weight: 600;
  color: #000;
  text-transform: capitalize;
  a {
    color: inherit;
    text-decoration: none;
  }
}
.religious_s2c a::before {
  position: absolute;
  left: -1px;
  content: url(../images/trangle.png);
}

.religious_borderd {
  border: 1px black;

  border-right: dotted;
}
.religious_borderd1 {
  border: 1px black;

  border-right: dotted;
}
.religious_borderd3 {
  border: 1px black;
  border-top: dotted;
  border-right: dotted;
}
.religious_borderd4 {
  border: 1px black;
  border-top: dotted;
  border-right: dotted;
}
.religious_borderd5 {
  border: 1px black;
  border-top: dotted;
}
/* .religious_borderd2{
  border: 1px  black;
  
  border-right: dotted;
} */

.religious_trans {
  background-color: transparent;
}

/* Hostel Detail */
.hosteldetail_s2h2 {
  font-size: clamp(30px, 5vh, 40px);
}
.hosteldetail_s2c h2 {
  font-size: 20px;
  font-weight: 600;
  color: white;
  background-color: #fef401;
}
.hosteldetail_s2c {
  background-color: #fef4011a;
}
.hosteldetail_s2c div p {
  color: black;
  font-weight: 600;
  font-size: 16px;
}

/* college details */
.collegedetail_s4h1 {
  font-weight: 800;
  font-size: 30px;
}
.collegedetail_padd {
  padding: 25px 50px;
}

.collegedetail_ptext {
  font-size: 14px;
  font-weight: 400;
}

.collegedetail_s4h2 {
  position: relative;
  font-size: 20px;
  font-weight: 600;
  color: #000;
  text-transform: capitalize;
  a {
    color: inherit;
    text-decoration: none;
  }
}
.collegedetail_s4h2 a::before {
  position: absolute;
  top: 4px;
  left: -16px;
  content: url(../images/trangle1.png);
}

/* history */

.history_div {
  position: relative;
}
.history_div:before {
  content: "";
  background-color: #fef401;
  width: 2px; /* Adjust thickness */
  height: 100%; /* Adjust height */
  position: absolute;
  top: 0;
  left: 0;
}

.history_div1 {
  position: relative;
}
.history_div1:before {
  content: "";
  background-color: white;
  outline: 7px solid #fef401ed;
  outline-offset: -7px;
  width: 24px; /* Adjust thickness */
  height: 24px; /* Adjust height */
  position: absolute;
  top: 0;
  left: -58px;
  border-radius: 50px;
}

.close-btn {
  display: none;
}
.view-btn {
  display: inline-block;
}

.close-btn {
  display: none; /* Initially hide the Close button */
}

.view-btn {
  box-shadow: 0px 4px 4px 0px #00000040;
  border: 1px solid #fef401;
  color: #fef401;
  width: 72px;
  height: 30px;
  font-size: 16px;
  font-weight: 600;
  padding-top: 2px;
}
.view-btn:hover {
  box-shadow: 0px 4px 4px 0px #00000040;
  border: 1px solid #fef401;
  color: #fef401;
  width: 72px;
  height: 30px;
  font-size: 16px;
  font-weight: 600;
  padding-top: 2px;
}
.close-btn {
  box-shadow: 0px 4px 4px 0px #00000040;
  border: 1px solid #fef401;
  color: #fef401;
  width: 72px;
  height: 30px;
  font-size: 16px;
  font-weight: 600;
  padding-top: 2px;
}
.close-btn:hover {
  box-shadow: 0px 4px 4px 0px #00000040;
  border: 1px solid #fef401;
  color: #fef401;
  width: 72px;
  height: 30px;
  font-size: 16px;
  font-weight: 600;
  padding-top: 2px;
}

/* Media Query*/

@media screen and (max-width: 1024px) {
  .mynav {
    display: block;
  }
  .menustrip .navbar-nav .nav-item:first-child {
    padding-left: 14px;
  }
  .menustrip .navbar-nav .nav-item {
    display: inline-block;
  }
  .navbar {
    display: none;
  }
  .toggle-nav {
    display: block;
    position: relative;
    right: 15px;
    height: 50px;
    width: 30px;
    cursor: pointer;
    z-index: 999999;
    text-align: left;
  }
  .toggle-nav i,
  .toggle-nav svg {
    font-size: 29px;
    color: #000;
    margin-top: 10px;
    margin-left: 10px;
  }
  .sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 9999999;
    top: 0;
    right: 0;
    background-color: #672D91;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
  }
  .sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
    display: block;
    color: #ffffff;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1199px) {
  .menustrip .navbar-nav .nav-link {
    font-size: 11px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-box {
    padding-right: 80px;
  }
  .homebanner h1 {
    font-size: 42px;
    line-height: 50px;
  }
  .btn-primary {
    padding: 10px 20px;
  }
  .header-title h2 {
    font-size: 25px;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .religious_borderd {
    border: 1px black;

    border-right: dotted;
  }
  .religious_borderd1 {
    border: 1px black;

    border-right: none;
  }
  .religious_borderd2 {
    border: 1px black;
    border-top: dotted;
    border-right: dotted;
  }
  .religious_borderd3 {
    border: 1px black;
    border-top: dotted;
    border-right: none;
  }

  /*  */
  .logo img {
    width: 100%;
  }
  .header-title h2 {
    font-size: 20px;
    line-height: 25px;
  }
  .header-title p {
    font-size: 13px;
    line-height: 20px;
  }
  .header-contact p {
    font-size: 12px;
  }
  .menustrip {
    background-color: #672D91;
    margin-top: -20px;
  }
  .homebanner h1 {
    font-size: 32px;
    line-height: 40px;
  }
  .homebanner p {
    font-size: 14px;
    color: #d0d0d0;
  }
  .footer-copy p {
    font-size: 13px;
  }
}
@media screen and (max-width: 767px) {
  .religious_borderd {
    border: 1px black;

    border-bottom: dotted;
  }
  .religious_borderd1 {
    border: 1px black;

    border-bottom: dotted;
  }
  .religious_borderd2 {
    border: 1px black;

    border-bottom: dotted;
  }
  .religious_borderd3 {
    border: 1px black;
    border-bottom: dotted;
  }
  .religious_borderd4 {
    border: 1px black;
    border-bottom: dotted;
  }
  .religious_borderd5 {
    border: 1px black;
    border-bottom: none;
  }
  /*  */
  
  .header-title h2 {
    font-size: 15px;
    line-height: 26px;
  }
  .header-title p {
    font-size: 12px;
    margin-bottom: 5px;
  }
  .homebanner .image img {
    height: 300px;
  }
  .homebanner h1 {
    font-size: 20px;
    line-height: 26px;
  }
  .menustrip {
    background-color: transparent;
    margin-top: -50px;
  }
  .menustrip .navbar-nav .nav-link {
    color: #fff;
  }
  .homebanner p {
    font-size: 14px;
    color: #d0d0d0;
    padding-right: 20%;
  }
  .main-heading {
    /* text-align: center; */
  }
  .para {
    text-align: center;
    font-size: 14px;
  }
  .card {
    text-align: center;
    margin: 20px;
  }
  .about-data {
    text-align: center;
  }
  .location-box h5 {
    text-align: center;
  }
  .site-footer {
    text-align: center;
  }
  .footer-box {
    padding-right: 0px;
  }
  .input-group > .form-control {
    width: 100%;
    margin-bottom: 10px;
  }
  .newletter-box {
    text-align: center;
    padding: 20px;
  }
  .newletter-box .input-group {
    display: block;
  }
  .newsletter-footer {
    margin-bottom: 20px;
  }
  .owl-prev {
    left: 0px;
  }
  .owl-next {
    right: 0px;
  }
  .toggle-nav i,
  .toggle-nav svg {
    font-size: 29px;
    color: #000;
    margin-top: 0px;
    margin-left: 20px;
  }
}

/*  */


/* .about section  */
.about-icon{
  width: 80px;
  height: 80px;
  background-color: #aa2577;
  border-radius: 10px;
  padding: 20px;
  
}
.about-icon img{
filter: invert(1);
  
}
.about-text{
  width: 75%;
}
.about-text ul{
  padding-left: 15px;
}

/* degree programs section  */
.degree_card{
  min-height: 200px;
  background-color: white;
  border-left: 5px solid #aa2577;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 2px 2px 10px rgb(211, 210, 210);
  position: relative;
  overflow:hidden ;
}
.design_card_hover{
 display: flex;
  position: absolute;
  
  left: 0;
  bottom: -400px;
  background-color: #aa2577;
  height: 100%;
  width: 100%;
  border-radius: 5px;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  color: white;
  transition-duration: 0.3s;

}
.degree_card:hover .design_card_hover{
  bottom: 0;
}
.degree_card h5{
  font-weight: 700;
}
.feature-card{
  text-align: center;
}
.feature-card{
  border: 1px solid #aa2576;
  border-radius: 10px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: white;
  box-shadow: 2px 2px 10px rgb(209, 209, 209);
}

.contact-icon-bg{
  background-color: #F4F4F4;
  color: #aa2576;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
}
.logo-img{
  width: 80%;
}


@media only screen and (min-width:768px) and (max-width:992px){
  .design_card_hover{
 flex-direction: column;
overflow: auto;
}
}
@media only screen and (max-width:576px){
  .design_card_hover{
flex-direction: column;
overflow: auto;

}
}
@media only screen and (max-width:400px){
  .main-heading {
        text-align: left;
    }
    .main-heading span::after {
   display: none;
}
.main-heading span {
    font-size: 26px;
}
}
@media (max-width: 1024px) {
  [data-aos] {
    pointer-events: none;
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
}
.logo-img {
    width: 90%;
}

}
@media only screen and (min-width:768px) and (max-width:1200px){
  .menustrip{
    margin-top: -10px;
  }
}
