/* universal margin padding 0 in every where */
* {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

/* Standard font size */
html {
  font-size: 62.5%;
}

body {
  background-color: #e9f1fe;
  line-height: 1.6;
  font-size: 16px;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

.logo-image {
  max-width: 80px;
}
.navbar-bg {
  /* background-color: #fff; */
  background-color: #ff8000;
  /* color: #fff; */
}

.carousel-item img {
  height: 430px;
  /* object-fit: cover; */
}

.navbar-brand {
  display: flex;
  align-items: center;
  font-weight: bold;
}

.navbar-brand img {
  margin-right: 10px;
}

.navbar-nav li a {
  text-transform: capitalize;
  color: #fff;
  font-size: 16px;
  padding: 4px 19px !important;
}

.navbar-nav li a:hover {
  text-transform: capitalize;
  color: #fff;
  font-size: 16px;
  padding: 4px 19px !important;
}

.color-primary {
  color: #ff8000;
}

.color-primary:hover {
  color: #ff8000 !important;
}

/* .social-login a{
      background-color: #FF8000; 
      color: #fff;
  } */

.social-login {
  display: flex;
  justify-content: end;
  /* padding-right: 32px; */
}

.social-icon {
  display: flex;
  align-items: center;
  /* justify-content: center; */
  /* width: 36px;
    height: 36px;  */
  /* border-radius: 50%;  */
  /* background-color: #FF8000;  */
  color: #fff;
  /* color: #fff; */
  text-decoration: none;
  transition: background-color 0.3s;
}

.social-icon:hover {
  /* background-color: #fff !important; */
  color: #fff !important;
}

.header-bg {
  /* background-color: #FF8000; */
  /* color:#fff; */
  background-color: #fff;
}

.color-white {
  color: #fff;
}

.screen-reader {
  border-right: 2px solid #ff8000;
  padding: 0 10px;
}

.header-content {
  padding-left: 50px;
}

.header-content-text {
  font-size: 14px;
}
.nav-link:focus,
.nav-link:hover {
  color: #ff8000;
}

.navbar-toggler-icon {
  background-image: url(../images/menu-toggle.png) !important;
  border-color: #ffb600;
  margin-bottom: 10px;
}

.new-image {
  background-image: url(../images/bg-1.jpg) !important;
  background-repeat: no-repeat;
  height: 100%;
  background-size: cover;
  padding: 40px;
}

.new-image-2 {
  background-image: url(../images/bg-1.jpg) !important;
  background-repeat: no-repeat;
  height: 100%;
  background-size: cover;
  padding: 40px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* dropdown content */
.dropdown-menu {
  background-color: #fff;
  border: none;
}

.dropdown-item {
  color: #ff8000 !important;
  text-transform: capitalize !important;
}

.dropdown-item:hover {
  background-color: #ff8000;
  color: #fff !important;
}

.dropdown-submenu {
  position: relative;
}

.nav-item.dropdown:hover > .dropdown-menu {
  display: block;
}

/* .dropdown-submenu:hover > .dropdown-menu {
    display: block;
    position: absolute;
    top: 0;
    left: 100%;
  } */

.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-left: 0;
  /* margin-top: -0.5rem; */
  /* opacity: 0; Initially hidden */
  /* visibility: hidden; Ensure it's hidden */
  transition: opacity 0.3s ease-out, transform 0.3s ease-out; /* Smooth transition */
  transform: translateY(-20px); /* Initial position for animation */
}

/* For showing the submenu */
.dropdown-submenu.show > .dropdown-menu {
  opacity: 1;
  visibility: visible; /* Make it visible */
  transform: translateY(0); /* Animate from top */
}

.navbar-nav > .nav-item.dropdown:last-child .dropdown-submenu > .dropdown-menu {
  left: auto;
  right: 100%; /* Position the last submenu to the right */
}

/* Change icon when submenu is shown */
.dropdown-submenu.show > a > .submenu-toggle-icon {
  content: "\f068"; /* Change icon to minus */
}

/* Slide-in animation */
@keyframes slideIn {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Change icon on hover */
.dropdown-submenu:hover > a > .submenu-toggle-icon {
  content: "\f068";
}

.raj-bhawan-img {
  width: 100%;
  height: 200px;
}

.social-section {
  padding: 40px 0;
}
.social-card {
  /* padding: 3px 3px 3px 3px; */
  background-color: #ff8000;
  border-top: 3px solid #ff8000;
  border-right: 3px solid #ff8000;
  border-bottom: 5px solid #ff8000;
  border-left: 3px solid #ff8000;
  color: #fff;
  border-radius: 0;
  margin-bottom: 20px;
}

.social-card-img {
  width: 100%;
  height: 60px;
}

/* card design */
.map-image {
  width: 100% !important;
  height: 210px;
}

.bg-white {
  background-color: #fff;
}

/* Default Button */
.btn-custom-primary {
  background-color: #ff8000; /* Theme primary background color */
  color: #ffffff; /* Text color */
  border: 2px solid #ff8000; /* Border matching the background color */
  padding: 10px 20px; /* Padding */
  font-size: 16px; /* Font size */
  /* font-weight: bold; Bold text */
  border-radius: 4px; /* Rounded corners */
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease; /* Smooth transition */
  cursor: pointer;
}

/* Hover State */
.btn-custom-primary:hover {
  background-color: #ff8000; /* Darker shade on hover */
  color: #ffffff; /* Keep text color white */
  border-color: #ff8000; /* Match border to new background color */
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15); /* Light shadow effect */
}

/* Focus State */
.btn-custom-primary:focus {
  background-color: #ff8000; /* Darker shade */
  color: #ffffff; /* Text color */
  border-color: #14204b; /* Even darker border */
  outline: none; /* Remove default outline */
  box-shadow: 0px 0px 0px 4px rgba(35, 51, 123, 0.5); /* Custom focus shadow */
}

/* Active State */
.btn-custom-primary:active {
  background-color: #14204b; /* Darkest shade on active */
  border-color: #0f1a3e; /* Match border */
  color: #ffffff; /* Keep text color */
  box-shadow: inset 0px 2px 4px rgba(0, 0, 0, 0.2); /* Inset shadow for pressed effect */
  transform: scale(0.98); /* Slightly scale down on press */
}

/* Disabled State */
.btn-custom-primary:disabled {
  background-color: #a0a4c0; /* Lighter grayish-blue background for disabled */
  color: #666666; /* Darker gray text */
  border-color: #a0a4c0; /* Match border */
  cursor: not-allowed; /* Show not-allowed cursor */
  box-shadow: none; /* No shadow */
  opacity: 0.65; /* Reduced opacity */
}

.btn-check:focus + .btn,
.btn:focus {
  box-shadow: none;
}

.events-cards {
  box-shadow: 0px 8px 16px rgba(35, 51, 123, 0.2),
    /* Soft, primary color shadow */ 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.events-section {
  padding: 40px 0;
}

.galery-section {
  padding: 40px 0;
  background-color: #f3f3f3;
}

.card-slide-image {
  height: 500px !important;
  object-fit: cover;
  width: 100%;
}

.academic-section {
  padding: 20px 0;
  background-color: #f3f3f3;
  /* background-color: #fff; */
}

/* .academic-card {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0px 6px 12px rgba(35, 51, 123, 0.2),
      0px 4px 6px rgba(0, 0, 0, 0.1);
    color: #FF8000;
    font-family: Arial, sans-serif;
  } */

.card-section {
  margin-bottom: 20px;
}

.card-section h3 {
  font-size: 1.2em;
  color: #ff8000;
  border-bottom: 3px solid #ff8000;
  padding-bottom: 5px;
  margin-bottom: 10px;
}

.card-section ul {
  list-style-type: none;
  padding: 0;
}

.card-section ul li {
  font-size: 1em;
  color: #333;
  padding: 5px 0;
}

.card-section ul li:not(:last-child) {
  border-bottom: 1px solid rgba(35, 51, 123, 0.15);
}

.raj-bhawan {
  background-color: #fff;
  padding: 40px 0;
}

.header-section {
  /* background-color: #e0eaf7; */
  background-color: #e6f0fe;
  /* padding: 20px; */
  border-radius: 8px;
  margin-bottom: 20px;
}
.profile-img {
  width: 120px;
  height: auto;
  border-radius: 8px;
}

.raj-bhawan-bg {
  background-color: #e6f0fe;
  padding: 20px 20px 26px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  margin-top: 32px;
}

.raj-bhawan-logo {
  width: 180px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 35px;
}
/* Custom style for active and selected nav-pills (for news updates only) */
.news-updates .nav-link.active,
.news-updates .show > .nav-link {
  background-color: transparent;
  border-top: 2px solid #219b9d; /* Your custom theme color */
  color: #219b9d; /* White text for active tab */
  /* font-weight: bold;         Make the active tab text bold */
  border-radius: 0px;
  font-size: 15px; /* Optional: Rounded corners for active tab */
}

.heading {
  border-bottom: 2px solid #ff8000;
  display: inline-block;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.heading-white {
  border-bottom: 2px solid #fff;
  display: inline-block;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.heading-news {
  border-bottom: 2px solid #fff;
  display: inline-block;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

/* Optional: Hover effect for the news-updates nav items */
.news-updates .nav-link:hover {
  background-color: rgba(35, 51, 123, 0.1);
  color: #fff;
}

.news-updates .nav-link {
  color: #fff;
}
.cursor {
  cursor: pointer;
}

.tab-contnet-color {
  background: linear-gradient(
    rgb(230, 240, 254) 0%,
    rgba(1, 112, 249, 0.55) 0%,
    rgba(14, 106, 245, 0.12) 100%
  );
  border-top: none !important;
  padding-left: 10px;
  /* /* line-height: 47px; */
  line-height: 47px;
  position: relative;
  overflow: hidden; /* Hide overflow to prevent content from spilling outside */
  /* height: 250px; */
}

.tab-contnet-color p {
  display: inline-block;
  animation: marqueeVertical 10s linear infinite; /* Customize speed and smoothness */
  font-size: 16px; /* Optional: Adjust font size */
  color: #ff8000; /* Set text color */
  /* white-space: nowrap; Ensures the text stays in a single line */
  position: relative;
}

@keyframes marqueeVertical {
  0% {
    transform: translateY(5%); /* Start from the bottom */
  }
  100% {
    transform: translateY(-100%); /* End at the top */
  }
}

.marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.marquee-content {
  display: flex;
  animation: marquee 20s linear infinite;
}

.marquee-content a {
  /* margin-right: 10px; Space between each link */
  padding-right: 10px;
  border-right: 2px solid #ff8000;
  display: inline-block;
  text-decoration: none;
  color: #fff;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.marquee-content a img {
  padding-left: 10px;
  margin-right: 10px; /* Space between GIF and text */
  width: 30px; /* Size of the GIF */
  height: 15px;
}

.marquee-content a:hover {
  color: #fff; /* Hover effect */
}

@keyframes marquee {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.intro-section {
  background-color: #e0eaf7;
  padding: 20px;
  border-radius: 8px;
}
.highlight-text {
  color: red;
  font-weight: bold;
}
.icon-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 10px;
}
.icon {
  /* width: 50px;
      height: 50px;
      margin: 10px; */
  width: 77px;
  height: 49px;
  margin: 13px 6px;
  object-fit: contain;
}

.justify {
  text-align: justify;
}
.welcome-section {
  padding: 70px 0 40px 0;
  background-color: #f3f3f37d;
}
.border-bottom {
  border-bottom: 1px solid #dcdcdc;
}
.icon-label {
  font-size: 12px;
  margin-top: 8px;
  text-align: center;
  color: #6e5e43;
}
.view-more-btn {
  font-size: 0.9rem;
  padding: 5px 10px;
}

.welcome-heading {
  font-size: 20px;
}

/* footer design */

.footer-social-login {
  /* display: flex;
    justify-content: end; */
  /* padding-right: 32px; */
}

.footer-social-icon {
  /* display: flex; */
  font-size: 22px;
  /* align-items: center; */
  color: #ff8000;
  text-decoration: none;
  transition: background-color 0.3s;
}

.footer-social-icon:hover {
  color: #ff8000 !important;
}

.form-lable-custom {
  font-size: 20px;
  margin-bottom: 10px;
  color: #ff8000;
  display: block;
  text-transform: capitalize;
  font-weight: 500;
}
.custom-input-div {
  width: 50%;
  border: 1px solid #ff8000;
}

.border-bottom-custom {
  border-bottom: 1px solid #ff8000;
}
.form-input-custom {
  font-size: 16px;
  padding: 8px 8px;
  display: block;
  border: 1px solid #ff8000;
}

.footer {
  /* background-color: #FF8000; */
  background-color: #fff;
  /* color: #fff; */
  color: #ff8000;
  padding: 30px 0 30px 0;
}
.footer h5 {
  margin-bottom: 15px;
  font-size: 20px;
}
.footer p {
  /* color: #fff; */
  margin-bottom: 8px;
  color: #ff8000;
  font-size: 15px;
}

.border-left-custom {
  border-left: 1px solid #dcdcdc;
}

.footer a:hover {
  /* color: #cce7ff; */
  color: #ff8000;
  text-decoration: none;
}
.footer .social-icons img {
  height: auto;
  width: 72px;
  margin: 4px 8px;
}
.footer .visitor-counter {
  /* background-color: #fff; */
  color: #000;
  padding: 2px 10px;
  border-radius: 5px;
  font-size: 15px;
  color: #ff8000;
  text-align: center;
  width: fit-content;
  letter-spacing: 11px;
  border: 1px solid #ff8000;
  /* background: linear-gradient(to bottom, #cfdef3, #e0eafc); */
}
.footer-bottom {
  text-align: center;
  padding: 18px 0 0 0;
  border-top: 1px solid rgba(52, 121, 40, 0.5);
  font-size: 14px;
  background-color: #fff;
  /* background-color: #219B9D; */
}

.footer-bottom p {
  color: #ff8000;
  font-weight: 600;
  font-size: 15px;
}

.append-input {
  font-size: 15px;
  color: gray;
}
.append-btn {
  font-size: 15px;
  color: gray;
  background-color: #fff;
}

.submenu-toggle-icon {
  font-size: 12px;
}

.nav-logo {
  max-width: 75px;
}

.custom-marquee-container {
  width: 100%;
  background-color: #219b9d; /* Light background color */
  padding: 5px 10px;
}

/* Scroll News button styling */
.custom-scroll-news-btn {
  margin-right: 10px;
}

/* Marquee content styling */
.custom-marquee-content {
  flex-grow: 1; /* Fill the available space */
  overflow: hidden;
}

/* Search button styling */
.custom-search-btn {
  margin-left: 10px;
}

.custom-marquee {
  padding: 8px 0 0 0;
}

.search-icon {
  color: #fff;
  font-size: 15px;
  padding: 0 10px;
}

.scroll-text {
  white-space: nowrap;
  padding: 0 10px;
}

.custom-card {
  /* padding: 20px; */
  padding: 13px 5px 5px 5px;
  text-align: center;
  border: none;
  border-radius: 0px;
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
  background-color: #ffffff;
  border-left: 1px solid #dcdcdc;
  transition: transform 0.2s;
}

/* .custom-card:hover {
    transform: translateY(-5px);
  } */

.custom-card-icon img {
  width: 30px; /* Adjust size as needed */
  height: auto;
  margin-bottom: 4px;
}

.custom-card-title {
  /* font-weight: 600; */
  font-size: 14px;
  color: #ff8000;
  margin-bottom: 0px;
}

.custom-more-details {
  font-size: 12px;
  color: #219b9d;
  text-decoration: none;
  display: block;
}

.custom-more-details:hover {
  text-decoration: underline;
  color: #219b9d;
}
.card-service-contianer {
  position: absolute;
  /* bottom: -4%; */
  left: 6%;
  margin-top: -47px;
}

.academic-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}

.academic-card:hover {
  transform: translateY(-5px);
}

.academic-card-image img {
  width: 100%;
  height: 250px;
  /* object-fit: cover; */
  display: block;
}

.academic-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4);
  color: white;
  text-align: center;
  height: 100%;
}

.academic-card-title {
  font-size: 20px;
  /* font-weight: 600; */
  /* position: absolute;
    top: 42%;
    left: 2%; */
  padding-top: 100px;
}

.academic-card-location {
  font-size: 0.9rem;
  margin-top: 5px;
}

.academic-card-icon {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background-color: #ff6700;
  color: white;
  font-size: 1.5rem;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-tab-content {
  background: rgba(0, 0, 0, 0.23);
  padding: 30px;
  /* min-height: 471px; */
  line-height: 40px;
}

.imported-links {
  background-color: #f3f3f37d;
  padding: 40px;
}

.section-title {
  text-align: center;
  margin-bottom: 20px;
}

.icon-box {
  transition: all 0.3s;
  padding: 17px 6px;
  border-radius: 10px;
  border: 0px solid #e0e0e0;
  background-color: #fff;
  text-align: center;
  cursor: pointer;
}

.icon-box:hover {
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.icon-box i {
  font-size: 40px;
  color: #219b9d;
  margin-bottom: 10px;
  display: block;
}

.icon-box h4 {
  font-size: 16px;
  /* font-weight: 600; */
  color: #333;
  white-space: nowrap;
}

.broadcast-section {
  padding: 40px 0;
  background: #fff;
}

.broadcast-left {
  display: flex;
  flex-direction: column;
}

.broadcast-item {
  position: relative;
  margin-bottom: 20px;
  overflow: hidden;
}

.broadcast-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 128, 0, 0.7);
  /* background-color:rgba(52, 121, 40,0.7); */
  /* background-color: rgba(0, 45, 85, 0.7); */
  color: #fff;
  padding: 10px;
  font-size: 18px;
  text-align: center;
}

.broadcast-right {
  list-style-type: none;
  padding: 0;
}

.broadcast-icon {
  font-size: 32px;
  color: #ff8000;
  margin-right: 15px;
}

.broadcast-link-text {
  font-weight: bold;
  color: #ff8000;
}

.broadcast-more {
  color: #ff8000;
  font-size: 14px;
  text-decoration: none;
}

.broadcast-more:hover {
  text-decoration: underline;
  color: #ff8000;
}

.broadcast-img {
  height: 250px;
  width: 100%;
  /* object-fit: cover; */
}

.card-style {
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  background-color: #fff;
  padding: 26px;
  margin: 0;
  border-bottom: 1px solid #ff8000;
}

.instiutions-tabs .nav-link.active,
.instiutions-tabs .show > .nav-link {
  background-color: transparent;
  border-bottom: 2px solid #219b9d; /* Your custom theme color */
  color: #219b9d; /* White text for active tab */
  /* font-weight: bold;         Make the active tab text bold */
  border-radius: 0px;
  font-size: 20px; /* Optional: Rounded corners for active tab */
}

.instiutions-tabs .nav-link:hover {
  /* background-color: rgba(35, 51, 123, 0.1); */
  color: #ff8000;
}

.instiutions-tabs .nav-link {
  color: #ff8000;
  font-size: 20px;
  border-radius: 0;
}

/* About us page css  start  *********************************/

/* .banner-img {
  height: 470px;
  width: 100%;
}

.banner-text {
  font-size: 40px;
  color: #fff;
  position: absolute;
  top: 45%;
  left: 0;
  right: 0;
  text-align: center;
} */

.font-style-2 {
  font-family: "Butler";
}

.text-style {
  font-family: "Source Sans Pro" !important;
  font-weight: 500;
}

.banner-container {
  position: relative;
}

.banner-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5); /* Black layer with opacity */
  z-index: 1; /* Ensure it appears above the image */
}

.banner-img {
  height: 470px;
  width: 100%;
  display: block;
  position: relative;
  z-index: 0; /* Ensure the image is below the overlay */
}

.banner-text {
  font-size: 40px;
  color: #fff;
  position: absolute;
  top: 45%;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 2; /* Ensure the text is above the overlay */
}

.unversity-seciton {
  padding: 100px 0;
  background-color: #fff;
}

.unversity-image {
  height: 470px;
  width: 100%;
}
.read-more {
  font-size: 17px;
  text-align: end;
  margin-left: auto;
  display: flex;
  font-family: "Butler";
  justify-content: end;
  align-items: center;
}

.vision-seciton {
  padding: 50px 0;
  background-color: #f6f6f6;
}

.vision-img {
  display: block;
  /* height: 20px; */
  max-width: 52px;
  margin: auto;
  margin-bottom: 8px;
}
.vision-seciton .card {
  height: 100%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.with-dot::before {
  content: "• ";
  color: #000;
}

.organogram-img {
  width: 100%;
}

.unversity-tab-section {
  padding: 50px 0;
  background-color: #fff;
  margin-bottom: 70px;
}

.accordion-button {
  font-size: 16px;
}
.pdf {
  width: 100%;
  height: 700px;
}

.minutes-card {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  height: 100%;
}

.minutes-card ul {
  display: flex;
  flex-wrap: wrap; /* Allows wrapping to the next line */
}

.minutes-card ul li {
  flex: 0 0 50%; /* Ensures two items per row */
  cursor: pointer;
  margin-bottom: 8px; /* Adds spacing between rows */
}

.minutes-card ul li:hover {
  color: #ff8000;
}
.minutes-heading {
  border-bottom: 1px solid #dedede;
}

.annual-card {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  height: 100%;
}

.annual-card ul {
  /* display: flex;
  flex-wrap: wrap; Allows wrapping to the next line */
}

.annual-card ul li {
  /* flex: 0 0 50%; Ensures two items per row */
  cursor: pointer;
  margin-bottom: 8px; /* Adds spacing between rows */
}

.annual-card ul li:hover {
  color: #ff8000;
}

.rules-section {
  padding: 50px 0;
  background-color: #fff;
  margin-bottom: 70px;
}

.rules-li {
  border: none;
  border-bottom: 1px solid #dedede;
  padding: 18px 10px 18px 10px;
  font-size: 18px;
}
.know-more-btn {
  font-size: 16px;
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease; /* Add transition */
}

.know-more-btn:hover {
  color: #ff8000;
  transform: scale(1.1);
}

.contact-card {
  font-size: 16px;
  color: #ff8000;
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); */
  padding: 14px 0;
  transition: all 0.3s ease; /* Smooth transition for all properties */
  cursor: pointer;
  /* height: 100%; */
  margin-bottom: 10px;
}

.contact-card i {
  font-size: 25px;
}

.contact-card:hover {
  font-size: 16px;
  color: #fff;
  background-color: #ff8000;
  /* box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); Slightly stronger shadow on hover */
  padding: 14px 0;
}

.contact-card-form {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 20px;
  margin-top: 20px;
}

.form-lable-contact {
  font-size: 16px;
  margin-bottom: 10px;
  display: block;
  text-transform: capitalize;
  font-weight: 500;
}

.form-input-custom-contact {
  font-size: 16px;
  padding: 8px 8px;
  display: block;
}

.contact-us-table td {
  padding: 24px 10px 20px 14px;
}

.contact-us-table th {
  padding: 15px 10px 20px 14px;
}

.contact-table td {
  padding: 14px 10px 14px 14px;
}

.text-white:hover {
  color: #fff !important;
}

.contact-section {
  padding: 40px 0;
  background-color: #219b9dab;
}

.contact-tab-section {
  padding: 18px 0;
  background-color: #f6f6f6;
  /* margin-bottom: 70px; */
}

/* Student page css *************************************************************/
.students-tab .nav-link.active,
.instiutions-tabs .show > .nav-link {
  background-color: transparent;
  border-bottom: 1px solid #219b9d;
  color: #219b9d;
  border-radius: 0px;
  font-size: 17px;
  text-transform: capitalize;
  width: 70%;
  text-align: left;
}

.students-tab .nav-link:hover {
  /* background-color: rgba(35, 51, 123, 0.1); */
  color: #ff8000;
}

.students-tab .nav-link {
  color: #ff8000;
  font-size: 17px;
  border-radius: 0;
  padding: 12px 0;
  border-bottom: 1px solid #dedede;
  display: block;
  width: 70%;
  text-align: left;
}

/* .students-tab li{
  border-bottom: 1px solid #dedede;
  width: 70%;
} */

.hostel-table {
  background-color: #fff;
  border-bottom: 1px solid #dedede;
}
.hostel-table th {
  color: #ff8000;
  background-color: #fff;
  font-weight: 400;
  font-family: "Butler";
}
.hostel-table td {
  vertical-align: top;
}
.hostel-table .highlight-row {
  /* background-color: #f2f2f2; */
  padding: 10px;
}

.ncc-image {
  width: 100%;
  height: 380px;
  object-fit: cover;
}
.ncc-image-second {
  width: 100%;
  height: 283px;
}

.Student-Union {
  color: #219b9d;
  text-decoration: none;
  display: block;
}

.Student-Union:hover {
  color: #219b9d;
  text-decoration: underline;
}

.placement-img {
  width: 100%;
  /* height: 200px; */
}

.download-table td {
  padding: 12px 0px;
}

.image-text{
  background-color: #ff8000;
  color: #fff;
  text-align: center;
  margin-bottom: 0;
  font-size: 15px;
  padding: 5px 0;
}
/* responsive screen media quier ________________________________________________________________ */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .navbar-nav li a {
    font-size: 15px;
  }

  .card-service-contianer {
    position: absolute;
    /* bottom: -4%; */
    left: 3%;
    margin-top: -92px;
}

  .imported-links {
    padding: 10px;
  }

  .new-image {
    padding: 10px;
  }

  .new-image-2 {
    padding: 10px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 480px) {
  .navbar-nav li a {
    padding-left: 6px !important;
  }

  .image-text {
    background-color: #ff8000;
    color: #fff;
    text-align: start;
    margin-bottom: 0;
    font-size: 14px;
    padding: 5px 0px 5px 12px;
}


.contact-tab-section{
  padding: 10px 0;
}

  .imported-links {
    padding: 0px;
  }

  .unversity-seciton {
    padding: 20px 0;
    background-color: #fff;
  }
  .contact-us-table td {
    padding: 8px 6px 10px 6px;
}
  .unversity-image {
    height: 240px;
    width: 100%;
}

.students-tab .nav-link.active, .instiutions-tabs .show > .nav-link {
  background-color: transparent;
  border-bottom: 1px solid #219b9d;
  color: #219b9d;
  border-radius: 0px;
  font-size: 15px;
  text-transform: capitalize;
  width: 100%;
  text-align: left;
  padding: 5px 4px;
}

.students-tab .nav-link {
  color: #ff8000;
  font-size: 15px;
  border-radius: 0;
  border-bottom: 1px solid #dedede;
  width: 100%;
  padding: 5px 4px;
}

.nav-item{
  margin: 0 5px;
}

  .new-image {
    padding: 0;
  }

  .new-image-2 {
    padding: 0;
  }

  .banner-img {
    height: 250px;
  }

  footer {
    padding: 30px 0 10px 0 !important;
  }
  .custom-card {
    border-bottom: 1px solid #dcdcdc !important;
  }

 
  .instiutions-tabs .nav-link {
    font-size: 14px;
  }

  .carousel-item img {
    height: 240px;
  }

  .instiutions-tabs .nav-link.active,
  .instiutions-tabs .show > .nav-link {
    font-size: 14px;
  }

  .heading-news {
    margin-top: 15px;
  }

  .news-tab-content {
    padding: 7px;
    font-size: 14px;
  }

  .contact-us-table th {
    padding: 0 5px;
    white-space: nowrap;
}

  .profile-img {
    width: 100%;
    height: 350px;
    border-radius: 8px;
    /* object-fit: contain; */
  }

  .students-tab .nav-link{
    width: 100%;
  }

  .contact-card-form{
    padding: 0;
  }

  .card-service-contianer {
    position: relative;
    bottom: 0;
    left: 0;
  }
  .footer-bottom {
    text-align: left;
  }
  .welcome-section {
    padding: 1px 0 40px 0;
  }
  .custom-input-div {
    width: 100%;
    border: 1px solid #ff8000;
  }

  .new-image {
    height: auto !important;
  }
  .footer-bottom {
    text-align: start;
  }
  .border-left-custom {
    border-left: none;
  }

  .navbar-nav
    > .nav-item.dropdown:last-child
    .dropdown-submenu
    > .dropdown-menu {
    left: 0 !important;
    right: 0 !important; /* Position the last submenu to the right */
  }

  .dropdown-item {
    white-space: normal;
  }
}

@media (min-width: 769px) {
  .dropdown-submenu:hover > .dropdown-menu {
    display: block;
    background-color: #fff; /* Change background color on hover */
  }
}

/* Mobile Specific Styles */
@media (max-width: 768px) {
  /* Mobile View: Adjust for smaller screens */
  .dropdown-menu {
    background-color: #fff;
    position: static;
    width: 100%;
  }

  .dropdown-item {
    padding: 10px;
  }

  .dropdown-submenu > .dropdown-menu {
    position: relative;
    top: 17px;
    left: 0;
    margin-left: 0;
    margin-top: 0;
    padding-left: 20px;
  }

  .dropdown-submenu.show > .dropdown-menu {
    display: block;
  }

  .submenu-toggle-icon {
    font-size: 12px;
    transition: transform 0.3s ease;
  }

  .submenu-toggle-icon.fa-minus {
    transform: rotate(180deg);
  }
}
