/* ===============================
   BRAND COLORS
================================= */
/* ===============================
   NEUTRALS & UI COLORS
================================= */
/* ===============================
   TYPOGRAPHY COLORS
================================= */
/* ===============================
   COLOR TONES GENERATOR
   (Example usage: color: mix($primary-clr, white, 20%))
================================= */
.principal-message-section {
  background-color: rgba(253, 158, 135, 0.15);
  border-top-right-radius: 100px;
  border-bottom-left-radius: 100px;
}
.principal-message-section .principal-meta p {
  text-align: center;
  color: #666 !important;
}
.principal-message-section .text-accent-orange {
  color: #ff7f50;
}
.principal-message-section .text-principal-name {
  color: #0E2245;
  font-size: 1.15rem;
}
.principal-message-section .dot-orange-large {
  position: absolute;
  top: -20px;
  left: -30px;
  width: 40px;
  height: 40px;
  background: #ff7f50;
  border-radius: 50%;
  animation: float-large 4s ease-in-out infinite;
}
.principal-message-section .dot-orange-small {
  position: absolute;
  top: 20px;
  right: -10px;
  width: 15px;
  height: 15px;
  background: #ff7f50;
  border-radius: 50%;
  animation: float-small 3s ease-in-out infinite;
}
.principal-message-section .message-content {
  transition: all 0.5s ease;
}
.principal-message-section .message-content.collapsed .extra-content {
  display: none;
  opacity: 0;
}
.principal-message-section .message-content:not(.collapsed) .extra-content {
  display: block;
  animation: fadeIn 0.5s ease forwards;
}
.principal-message-section .principal-image-wrapper {
  position: relative;
  max-width: 450px;
  padding: 20px;
}
.principal-message-section .principal-image-wrapper .frame-blue {
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  background-color: #1e5a7b;
  border-radius: 12px;
  z-index: 1;
  animation: slideIn-Float-Blue 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards, float-blue 5s ease-in-out 1.2s infinite;
}
.principal-message-section .principal-image-wrapper .frame-orange {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 120px;
  height: 120px;
  border-radius: 12px;
  z-index: -1;
  border: 4px solid #ff7f50;
  clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 70%, 70% 70%, 70% 0);
  animation: slideIn-Float-Orange 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards, float-orange 6s ease-in-out 1.2s infinite;
}
.principal-message-section .principal-image-wrapper .img-box {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: 1.5rem;
  transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
}
.principal-message-section .principal-image-wrapper .img-box img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.principal-message-section .principal-image-wrapper .img-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15) !important;
}
.principal-message-section .principal-image-wrapper .img-box:hover img {
  transform: scale(1.08);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes float-large {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-15px) scale(1.05);
  }
}
@keyframes float-small {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-10px, 10px);
  }
}
@keyframes slideIn-Float-Blue {
  from {
    opacity: 0;
    transform: translate(-20px, -20px);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes float-blue {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(8px, 8px) rotate(3deg);
  }
}
@keyframes slideIn-Float-Orange {
  from {
    opacity: 0;
    transform: translate(20px, 20px);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes float-orange {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-10px, -10px) scale(1.03);
  }
}
.approvals-section .text-primary-blue {
  color: #1e5a7b;
}
.approvals-section .text-accent-orange {
  color: #ff7f50;
}
.approvals-section .custom-approvals .accordion-item {
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.approvals-section .custom-approvals .accordion-item:hover {
  transform: translateY(-2px);
}
.approvals-section .custom-approvals .accordion-button {
  padding: 1.25rem 1.5rem;
  color: #1e5a7b;
  background-color: #f8f9fa;
  font-size: 1.1rem;
}
.approvals-section .custom-approvals .accordion-button:not(.collapsed) {
  background-color: #1e5a7b;
  color: white;
  box-shadow: none;
}
.approvals-section .custom-approvals .accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}
.approvals-section .custom-approvals .accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.1);
}
.approvals-section .custom-approvals .table th {
  background-color: #f8f9fa;
  color: #1e5a7b;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 15px;
}
.approvals-section .custom-approvals .table td {
  padding: 18px 15px;
  color: #444;
  font-weight: 500;
}
.approvals-section .custom-approvals .table tr {
  transition: background 0.3s ease;
}
.approvals-section .custom-approvals .table tr:hover {
  background-color: rgba(255, 127, 80, 0.03);
}
.approvals-section .custom-approvals .btn-download {
  background-color: transparent;
  border: 2px solid #ff7f50;
  color: #ff7f50;
  font-weight: 600;
  border-radius: 50px;
  padding: 6px 20px;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}
.approvals-section .custom-approvals .btn-download:hover {
  background-color: #ff7f50;
  color: white;
  transform: scale(1.05);
}

@media (max-width: 576px) {
  .btn-download {
    padding: 5px 12px;
    font-size: 0.75rem;
  }
  .accordion-button {
    font-size: 0.95rem;
  }
}
.infra-alternating-section .text-accent-orange {
  color: #ff7f50;
}
.infra-alternating-section h2 {
  font-size: 32px !important;
  line-height: 1.3;
}
.infra-alternating-section h2 span {
  font-size: 32px !important;
}
.infra-alternating-section .content-box {
  animation: fadeIn 1.2s ease-out forwards;
}
.infra-alternating-section .image-wrapper {
  position: relative;
  padding: 25px;
  z-index: 1;
  max-width: 500px;
  margin: 0 auto;
}
.infra-alternating-section .image-wrapper img {
  position: relative;
  z-index: 2;
  background: #ccc;
  height: 380px;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.infra-alternating-section .image-wrapper .decorative-shape {
  position: absolute;
  width: 75px;
  height: 75px;
  border-radius: 15px;
  z-index: 0;
}
.infra-alternating-section .image-wrapper .shape-blue-top {
  background-color: #1e5a7b;
  top: 0;
  left: 0;
  animation: slideIn-Float-Blue 1s ease-out, float-blue 6s ease-in-out 1s infinite;
}
.infra-alternating-section .image-wrapper .shape-orange-bottom {
  background-color: #ff7f50;
  bottom: 0;
  right: 0;
  animation: slideIn-Float-Orange 1s ease-out, float-orange 5.5s ease-in-out 1s infinite;
}
.infra-alternating-section .floating-dot {
  position: absolute;
  border-radius: 50% !important;
  z-index: -1;
  opacity: 0.8;
  aspect-ratio: 1/1;
}
.infra-alternating-section .floating-dot.dot-orange {
  width: 40px;
  height: 40px;
  background: #ff7f50;
  top: -15px;
  left: -5%;
  animation: float-large 7s ease-in-out infinite;
}
.infra-alternating-section .floating-dot.dot-blue-large {
  width: 35px;
  height: 35px;
  background: #1e5a7b;
  bottom: 15%;
  right: 2%;
  animation: float-large 8s ease-in-out infinite reverse;
}
.infra-alternating-section .floating-dot.dot-blue-small {
  width: 15px;
  height: 25px;
  background: #1e5a7b;
  bottom: 20%;
  right: 12%;
  animation: float-small 4.5s ease-in-out infinite;
}
.infra-alternating-section p {
  line-height: 1.8;
  font-size: 1rem;
}

/* Animations remain same as provided */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes float-large {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-15px) scale(1.05);
  }
}
@keyframes float-small {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-10px, 10px);
  }
}
@keyframes slideIn-Float-Blue {
  from {
    opacity: 0;
    transform: translate(-20px, -20px);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes float-blue {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(8px, 8px) rotate(3deg);
  }
}
@keyframes slideIn-Float-Orange {
  from {
    opacity: 0;
    transform: translate(20px, 20px);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes float-orange {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-10px, -10px) scale(1.03);
  }
}
@media (max-width: 991px) {
  .infra-alternating-section h2 {
    font-size: 28px !important;
  }
  .infra-alternating-section .image-wrapper {
    max-width: 100%;
  }
  .infra-alternating-section .image-wrapper img {
    height: 300px;
  }
  .infra-alternating-section .image-wrapper .decorative-shape {
    width: 60px;
    height: 60px;
  }
  .infra-alternating-section .content-box {
    text-align: center;
    padding: 0 !important;
  }
  .infra-alternating-section .floating-dot {
    display: none;
  }
}
.course-details-section .text-primary-blue {
  color: black;
}
.course-details-section .text-accent-orange {
  color: #ff7f50;
}
.course-details-section .course-sidebar {
  background-color: #f8f9fa;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 100px;
}
.course-details-section .course-sidebar .highlight-list li {
  font-size: 0.9rem;
  margin-bottom: 12px;
  color: #444;
  display: flex;
  align-items: start;
}
.course-details-section .course-sidebar .highlight-list li i {
  color: #ff7f50;
  margin-right: 10px;
  font-size: 1.1rem;
}
.course-details-section .row .col-md-4:nth-last-child(odd) .syllabus-tab {
  background-color: #1e5a7b;
  border-color: #1e5a7b;
  color: white;
}
.course-details-section .row .col-md-4:nth-last-child(odd) .syllabus-tab:hover:not(.active) {
  background-color: #ff7f50;
  border-color: #ff7f50;
  color: white;
  transform: translateY(-3px);
}
.course-details-section .syllabus-tab {
  background: #f8f9fa;
  border: 1px solid #ff7f50;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.course-details-section .syllabus-tab:hover:not(.active) {
  background-color: #ff7f50;
  border-color: #ff7f50;
  color: white;
  transform: translateY(-3px);
}
.course-details-section .career-card {
  background-color: #f8f9fa;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}
.course-details-section .career-card:hover {
  background-color: white;
  border-color: #ff7f50;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

@media (max-width: 991px) {
  .course-sidebar {
    margin-top: 40px;
    position: static !important;
  }
}
.admission-procedure .text-primary-blue {
  color: black;
}
.admission-procedure h4 {
  letter-spacing: 0.5px;
}
.admission-procedure .admission-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 20px;
  font-weight: 500;
  color: #444;
  display: flex;
  align-items: start;
  min-height: 24px;
  font-size: 1rem;
}
.admission-procedure .admission-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 20px;
  height: 20px;
  border: 1.5px solid #ff7f50;
  border-radius: 50%;
  background: transparent;
}
.admission-procedure .admission-list li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ff7f50;
  transform: scale(0.5);
}
.admission-procedure .admission-list li {
  transition: all 0.3s ease;
}
.admission-procedure .admission-list li:hover {
  transform: translateX(8px);
  color: black;
}
.admission-procedure .admission-list li:hover::before {
  background: rgba(255, 127, 80, 0.05);
}

@media (max-width: 768px) {
  .admission-procedure .admission-list li {
    font-size: 0.95rem;
    margin-bottom: 15px;
  }
}
.contact-section .text-primary-blue {
  color: #1e5a7b;
}
.contact-section .icon-box {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 127, 80, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff7f50;
}
.contact-section .map-form-wrapper {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #eee;
}
.contact-section .contact-form-overlay {
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  background: white;
  width: 100%;
  max-width: 500px;
  padding: 50px;
  border-radius: 12px;
  border: 2px solid #3fa9f5;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
  z-index: 10;
}
.contact-section .custom-input-group {
  display: flex;
  align-items: center;
  border-bottom: 1.5px solid #ccc;
  transition: all 0.3s ease;
}
.contact-section .custom-input-group i {
  margin-right: 15px;
  color: #1e5a7b;
  font-size: 1.1rem;
}
.contact-section .custom-input-group .form-floating {
  flex-grow: 1;
}
.contact-section .custom-input-group .form-floating .form-control {
  border: none;
  background: transparent;
  padding-left: 0;
}
.contact-section .custom-input-group .form-floating .form-control:focus {
  box-shadow: none;
}
.contact-section .custom-input-group .form-floating label {
  padding-left: 0;
  color: #888;
}
.contact-section .custom-input-group:focus-within {
  border-bottom-color: #ff7f50;
}
.contact-section .custom-input-group:focus-within i {
  color: #ff7f50;
}
.contact-section .btn-orange {
  background-color: #ff7f50;
  color: white;
  font-weight: bold;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(255, 127, 80, 0.3);
  transition: 0.3s;
}
.contact-section .btn-orange:hover {
  background-color: rgb(255, 89.6971428571, 29);
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .contact-form-overlay {
    position: relative;
    top: 0;
    right: 0;
    transform: none;
    margin: -60px auto 40px;
    width: 95%;
    padding: 30px;
  }
  .map-container iframe {
    height: 400px;
  }
}
.event-details-section .text-primary-blue {
  color: black !important;
}
.event-details-section .bg-accent-orange {
  background-color: #ff7f50 !important;
}
.event-details-section .event-header h2 {
  font-size: 28px !important;
  line-height: 1.4;
  letter-spacing: -0.3px;
  font-weight: 700;
}
.event-details-section .infra-zoom-card {
  position: relative;
}
.event-details-section .infra-zoom-card .btn-back-home {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  padding: 8px 18px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}
.event-details-section .infra-zoom-card .btn-back-home:hover {
  background: #fff;
  color: black;
  transform: translateX(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.event-details-section .event-sub-img {
  height: 220px;
}
.event-details-section .event-sub-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.event-details-section .event-sub-img:hover img {
  transform: scale(1.05);
}
.event-details-section .event-data-card {
  background: #ff7f50;
}
.event-details-section .event-data-card .stat-item {
  font-size: 0.95rem;
}
.event-details-section .event-data-card .stat-item .text-white-50 {
  color: rgba(255, 255, 255, 0.75) !important;
}

.event-details-section .sub-img-content {
  padding-left: 5px;
}
.event-details-section .sub-img-content h5 {
  transition: color 0.3s ease;
}
.event-details-section .sub-img-content p {
  line-height: 1.5;
  opacity: 0.85;
}
.event-details-section .col-md-6:hover .sub-img-content h5 {
  color: #ff7f50 !important;
}
.event-details-section .col-md-6:hover .event-sub-img img {
  transform: scale(1.05);
}

@media (max-width: 991px) {
  .event-header h2 {
    font-size: 24px !important;
  }
  .event-sidebar {
    position: static !important;
    margin-top: 40px;
  }
}
@media (max-width: 576px) {
  .event-header h2 {
    font-size: 22px !important;
  }
  .event-sub-img {
    height: auto;
  }
}
.jicm-vision-mission .sub-headline {
  background-color: rgba(253, 158, 135, 0.1490196078);
  color: #ff7043;
  font-weight: 600;
  border-radius: 50px;
}
.jicm-vision-mission .milestone-img-wrapper {
  overflow: hidden;
}
.jicm-vision-mission .milestone-img-wrapper img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}
.jicm-vision-mission .milestone-img-wrapper img:hover {
  transform: scale(1.05);
}
.jicm-vision-mission .milestone-img-wrapper.tall {
  height: 400px;
}
.jicm-vision-mission .milestone-img-wrapper.small {
  height: 190px;
}
.jicm-vision-mission .info-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: rgba(253, 158, 135, 0.1490196078);
  border-radius: 30px;
  padding: 40px 30px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.jicm-vision-mission .info-card .card-title {
  font-weight: 800;
  color: #002147;
  letter-spacing: 2px;
  margin-bottom: 30px;
  font-size: 1.5rem;
  text-transform: uppercase;
}
.jicm-vision-mission .info-card .icon-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
  padding: 12px;
}
.jicm-vision-mission .info-card .icon-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px dashed #ff7043;
  border-radius: 50%;
}
.jicm-vision-mission .info-card .icon-circle {
  width: 110px;
  height: 110px;
  background-color: #ff7043;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.jicm-vision-mission .info-card .icon-circle img {
  width: 55px;
  filter: brightness(0) invert(1);
}
.jicm-vision-mission .info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 112, 67, 0.1);
}
.jicm-vision-mission .info-card .card-text {
  color: #4a4a4a;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 480px;
}

@media (max-width: 768px) {
  .jicm-vision-mission .milestone-img-wrapper.tall,
  .jicm-vision-mission .milestone-img-wrapper.small {
    height: 250px;
  }
}
.section-title {
  font-size: 28px;
  color: #002147;
  letter-spacing: -0.5px;
}

.sub-headline {
  background-color: rgba(253, 158, 135, 0.1490196078);
  color: #ff7043;
  font-weight: 600;
  border-radius: 50px;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.admission-list li {
  position: relative;
  padding-left: 40px !important;
  font-weight: 500;
  color: #444;
  display: flex;
  align-items: flex-start;
  font-size: 0.95rem;
  line-height: 1.4;
  transition: all 0.3s ease;
}
.admission-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  border: 2px solid #ff7043;
  border-radius: 50%;
}
.admission-list li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff7043;
}
.admission-list li:hover {
  color: #ff7043;
  transform: translateX(5px);
}

.bg-light {
  background-color: #f8f9fa !important;
}

.jicm-custom-table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  background-color: #fff;
}
.jicm-custom-table thead th {
  padding: 18px 25px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  border: none;
  background-color: #ff7043;
  color: #fff;
}
.jicm-custom-table thead th:first-child {
  border-top-left-radius: 12px;
}
.jicm-custom-table thead th:last-child {
  border-top-right-radius: 12px;
}
.jicm-custom-table tbody tr {
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
}
.jicm-custom-table tbody tr td {
  padding: 15px 25px;
  vertical-align: middle;
  color: #444;
  border-bottom: 1px solid #eee;
  font-weight: 500;
  transition: color 0.3s ease;
}
.jicm-custom-table tbody tr:hover:not(.table-footer) {
  background-color: rgba(253, 158, 135, 0.1490196078);
  transform: translateX(5px);
  cursor: pointer;
}
.jicm-custom-table tbody tr:hover:not(.table-footer) td {
  color: #000;
}
.jicm-custom-table tbody tr:hover:not(.table-footer) td:first-child {
  box-shadow: inset 4px 0 0 #ff7043;
}
.jicm-custom-table .table-footer td {
  background-color: black !important;
  color: #fff !important;
  font-size: 1.1rem;
  padding: 18px 25px;
  border: none;
}
.jicm-custom-table .table-footer td:first-child {
  border-bottom-left-radius: 12px;
}
.jicm-custom-table .table-footer td:last-child {
  border-bottom-right-radius: 12px;
}
.jicm-custom-table .table-footer:hover {
  transform: none !important;
}

.section-title {
  font-size: 28px;
  color: black;
}

.jicm-custom-table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  background-color: #fff;
}
.jicm-custom-table thead th {
  padding: 15px 25px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
  border: none;
  background-color: #ff7043;
  color: #fff;
}
.jicm-custom-table tbody tr {
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.jicm-custom-table tbody tr td {
  padding: 12px 25px;
  vertical-align: middle;
  color: #444;
  border-bottom: 1px solid #eee;
  font-weight: 500;
}
.jicm-custom-table tbody tr:hover:not(.table-footer) {
  background-color: rgba(253, 158, 135, 0.1490196078);
  transform: translateX(5px);
  cursor: pointer;
}
.jicm-custom-table tbody tr:hover:not(.table-footer) td {
  color: #125875;
}
.jicm-custom-table tbody tr:hover:not(.table-footer) td:first-child {
  box-shadow: inset 4px 0 0 #ff7043;
}
.jicm-custom-table .table-footer td {
  background-color: #125875 !important;
  color: #fff !important;
  font-size: 0.9rem;
  padding: 10px 25px;
  border: none;
  font-style: italic;
}
.jicm-custom-table .table-footer:hover {
  transform: none !important;
}

.jicm-custom-table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  background-color: #fff;
}
.jicm-custom-table thead th {
  padding: 15px 25px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
  border: none;
  background-color: #ff7043;
  color: #fff;
}
.jicm-custom-table tbody tr {
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.jicm-custom-table tbody tr td {
  padding: 12px 25px;
  vertical-align: middle;
  color: #444;
  border-bottom: 1px solid #eee;
  font-weight: 500;
}
.jicm-custom-table tbody tr:hover:not(.table-footer) {
  background-color: rgba(253, 158, 135, 0.1490196078);
  transform: translateX(5px);
  cursor: pointer;
}
.jicm-custom-table tbody tr:hover:not(.table-footer) td {
  color: #125875;
}
.jicm-custom-table tbody tr:hover:not(.table-footer) td:first-child {
  box-shadow: inset 4px 0 0 #ff7043;
}
.jicm-custom-table .table-footer td {
  background-color: #125875 !important;
  color: #fff !important;
  font-size: 1rem;
  padding: 15px 25px;
  border: none;
}
.jicm-custom-table .table-footer:hover {
  transform: none !important;
}

.jicm-custom-table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  background-color: #fff;
}
.jicm-custom-table thead th {
  background-color: #ff7043;
  color: #fff;
  padding: 18px 25px;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
}
.jicm-custom-table tbody tr {
  transition: all 0.3s ease;
}
.jicm-custom-table tbody tr td {
  padding: 15px 25px;
  vertical-align: middle;
  border-bottom: 1px solid #eee;
}
.jicm-custom-table tbody tr:hover:not(.table-footer) {
  background-color: rgba(253, 158, 135, 0.1490196078);
  transform: translateX(5px);
}
.jicm-custom-table tbody tr:hover:not(.table-footer) td:first-child {
  box-shadow: inset 4px 0 0 #ff7043;
}
.jicm-custom-table .table-footer td {
  background-color: #125875 !important;
  color: #fff !important;
  padding: 15px;
  font-weight: 600;
}
.jicm-custom-table .visit-btn {
  display: inline-block;
  padding: 6px 16px;
  background-color: #125875;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-size: 0.85rem;
  transition: background 0.3s ease;
}
.jicm-custom-table .visit-btn:hover {
  background-color: #ff7043;
  color: white;
}

.jicm-custom-table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  background-color: #fff;
}
.jicm-custom-table thead th {
  background-color: #ff7043;
  color: #fff;
  padding: 18px 25px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  border: none;
}
.jicm-custom-table tbody tr {
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.jicm-custom-table tbody tr td {
  padding: 15px 25px;
  vertical-align: middle;
  color: #444;
  border-bottom: 1px solid #eee;
  font-weight: 500;
}
.jicm-custom-table tbody tr:hover:not(.table-footer) {
  background-color: rgba(253, 158, 135, 0.1490196078);
  transform: translateX(5px);
}
.jicm-custom-table tbody tr:hover:not(.table-footer) td {
  color: #000;
}
.jicm-custom-table tbody tr:hover:not(.table-footer) td:first-child {
  box-shadow: inset 4px 0 0 #ff7043;
}
.jicm-custom-table .table-footer td {
  background-color: #125875 !important;
  color: #fff !important;
  padding: 15px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
}
.jicm-custom-table .visit-btn {
  display: inline-block;
  padding: 8px 20px;
  background-color: #125875;
  color: white !important;
  text-decoration: none;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
}
.jicm-custom-table .visit-btn:hover {
  background-color: #ff7043;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.principal-message-section {
  background-color: rgba(253, 158, 135, 0.1);
  border-top-right-radius: 100px;
  border-bottom-left-radius: 100px;
}
.principal-message-section .text-accent-orange {
  color: #ff7043;
}
.principal-message-section .text-principal-name {
  color: #0E2245;
  font-size: 1.15rem;
}
.principal-message-section .librarian-img-size {
  max-width: 380px;
}
.principal-message-section .librarian-img-size .img-box img {
  max-height: 450px;
  object-fit: cover;
}
.principal-message-section .dot-orange-large {
  position: absolute;
  top: -20px;
  left: -30px;
  width: 40px;
  height: 40px;
  background: #ff7043;
  border-radius: 50%;
  animation: float-large 4s ease-in-out infinite;
}
.principal-message-section .dot-orange-small {
  position: absolute;
  top: 20px;
  right: -10px;
  width: 15px;
  height: 15px;
  background: #ff7043;
  border-radius: 50%;
  animation: float-small 3s ease-in-out infinite;
}
.principal-message-section .message-content {
  transition: all 0.5s ease;
}
.principal-message-section .message-content.collapsed .extra-content {
  display: none;
  opacity: 0;
}
.principal-message-section .message-content:not(.collapsed) .extra-content {
  display: block;
  animation: fadeIn 0.5s ease forwards;
}
.principal-message-section .principal-image-wrapper {
  position: relative;
  padding: 20px;
}
.principal-message-section .principal-image-wrapper .frame-blue {
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  background-color: #125875;
  border-radius: 12px;
  z-index: 1;
  animation: slideIn-Float-Blue 1.2s forwards, float-blue 5s ease-in-out 1.2s infinite;
}
.principal-message-section .principal-image-wrapper .frame-orange {
  position: absolute;
  bottom: 60px;
  right: 0;
  width: 90px;
  height: 90px;
  border-radius: 12px;
  z-index: -1;
  border: 4px solid #ff7043;
  clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 70%, 70% 70%, 70% 0);
  animation: slideIn-Float-Orange 1.2s forwards, float-orange 6s ease-in-out 1.2s infinite;
}
.principal-message-section .principal-image-wrapper .img-box {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: 1.5rem;
  transition: all 0.4s ease-in-out;
}
.principal-message-section .principal-image-wrapper .img-box:hover {
  transform: translateY(-5px);
}
.principal-message-section .principal-image-wrapper .img-box:hover img {
  transform: scale(1.08);
}
.principal-message-section .principal-image-wrapper .img-box img {
  transition: transform 0.6s ease;
}

@media (min-width: 992px) {
  .sports-amenities .sticky-column {
    position: relative;
    height: 100%;
  }
}
@media (min-width: 992px) {
  .sports-amenities .sticky-wrapper {
    position: sticky;
    top: 100px;
    z-index: 10;
  }
}
.sports-amenities .sports-img-box {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.sports-amenities .sports-img-box.tall {
  height: 350px;
}
.sports-amenities .sports-img-box.small-sub {
  height: 200px;
}
.sports-amenities .sports-img-box img {
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  object-fit: cover;
}
.sports-amenities .sports-img-box img:hover {
  transform: scale(1.05);
}
.sports-amenities .sports-info-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.sports-amenities .sports-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.06) !important;
}
.sports-amenities .dashed-circle {
  width: 80px;
  height: 80px;
  border: 2px dashed;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
}
.sports-amenities .solid-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-details-section {
  background-color: #fff;
}
.blog-details-section .blog-title {
  font-weight: 800;
  color: #000;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.blog-details-section .blog-meta-strip {
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 15px 0;
  margin-bottom: 30px;
}
.blog-details-section .blog-meta-strip span {
  font-size: 0.85rem;
  color: #666;
  display: flex;
  align-items: center;
}
.blog-details-section .blog-meta-strip span i {
  color: #ff7f50;
  font-size: 1rem;
}
.blog-details-section .blog-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
  z-index: 10;
}
.blog-details-section .blog-sidebar .recent-posts-card {
  background-color: #ff7f50;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(255, 127, 80, 0.2);
}
.blog-details-section .blog-sidebar .recent-posts-card h5 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 15px;
  margin-bottom: 20px;
}
.blog-details-section .posts-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.blog-details-section .posts-list .recent-post-item {
  display: block;
  text-decoration: none;
  padding: 15px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.blog-details-section .posts-list .recent-post-item .post-cat {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 5px;
  letter-spacing: 0.5px;
}
.blog-details-section .posts-list .recent-post-item .post-title {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.blog-details-section .posts-list .recent-post-item:hover {
  background: #fff;
  transform: translateX(8px) translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.blog-details-section .posts-list .recent-post-item:hover .post-title {
  color: #000;
}
.blog-details-section .posts-list .recent-post-item:hover .post-cat {
  color: #ff7f50;
}
.blog-details-section .infra-zoom-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.blog-details-section .infra-zoom-card .btn-back-blog {
  position: absolute;
  top: 25px;
  left: 25px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.8rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 5;
}
.blog-details-section .infra-zoom-card .btn-back-blog:hover {
  background: #fff;
  color: #000;
  transform: translateX(-5px);
}

@media (max-width: 991px) {
  .blog-details-section .blog-sidebar {
    position: relative;
    top: 0;
    margin-top: 50px;
  }
}
#committeeAccordion {
  border-radius: 12px;
  overflow: hidden;
}
#committeeAccordion .accordion-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
#committeeAccordion .accordion-item:last-child {
  border-bottom: none;
}
#committeeAccordion .accordion-item .accordion-header .accordion-button {
  padding: 1.25rem;
  font-size: 1.1rem;
  color: #2c3e50;
  background-color: white;
  box-shadow: none;
}
#committeeAccordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  background-color: rgba(253, 158, 135, 0.05);
  color: #FD9E87;
}
#committeeAccordion .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  filter: sepia(100%) hue-rotate(190deg) saturate(500%);
}
#committeeAccordion .accordion-item .accordion-header .accordion-button:focus {
  box-shadow: none;
  border-color: rgba(253, 158, 135, 0.1);
}
#committeeAccordion .accordion-item .accordion-body {
  background-color: white;
  padding: 1.5rem;
  line-height: 1.6;
}
#committeeAccordion .accordion-item .accordion-body p {
  margin-bottom: 1rem;
}
#committeeAccordion .accordion-item .accordion-body strong {
  color: rgb(25.9032258065, 36.5, 47.0967741935);
}
#committeeAccordion .accordion-item .accordion-body ul {
  padding-left: 1.25rem;
  margin-bottom: 1.5rem;
}
#committeeAccordion .accordion-item .accordion-body ul li {
  margin-bottom: 0.5rem;
}
#committeeAccordion .member-table {
  margin-top: 0.5rem;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
}
#committeeAccordion .member-table thead {
  background-color: #f8f9fa;
}
#committeeAccordion .member-table thead th {
  border-bottom: 2px solid #dee2e6;
  color: #2c3e50;
  font-weight: 600;
  padding: 10px 15px;
}
#committeeAccordion .member-table tbody tr {
  transition: all 0.3s ease;
}
#committeeAccordion .member-table tbody tr:hover {
  background-color: rgba(253, 158, 135, 0.02);
}
#committeeAccordion .member-table tbody tr td {
  padding: 8px 15px;
  vertical-align: middle;
  color: rgb(62.0967741935, 87.5, 112.9032258065);
}

@media (max-width: 768px) {
  #committeeAccordion .accordion-button {
    font-size: 1rem;
  }
}
.campus-life-section {
  background-color: #fdfdfd;
  padding: 80px 0;
}
.campus-life-section .facility-card {
  background: linear-gradient(145deg, #ffffff 0%, #f9f9f9 100%);
  border-radius: 16px;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.campus-life-section .facility-card .card-content {
  padding: 40px 30px;
  position: relative;
  flex-grow: 1;
}
.campus-life-section .facility-card .icon-box {
  width: 50px;
  height: 50px;
  background-color: white;
  color: #ff7f50;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  z-index: 10;
}
.campus-life-section .facility-card .category-tag {
  display: inline-block;
  background: #125875;
  color: #fff;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}
.campus-life-section .facility-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #000000;
  margin-bottom: 12px;
  line-height: 1.4;
}
.campus-life-section .facility-card .card-image img {
  width: 100%;
  margin-bottom: -80px;
  border: 10px solid white;
  border-radius: 25px;
  z-index: 0;
  position: relative;
}
.campus-life-section .facility-card .card-image {
  position: relative;
}
.campus-life-section .facility-card .card-image::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 200%;
  top: 100%;
  right: 0;
  border: 1px solid rgba(255, 127, 80, 0.4);
  background: linear-gradient(145deg, #ffffff, hsl(16, 88%, 77%));
  transform: rotate(45deg);
  z-index: 0;
  opacity: 0.2;
  border-radius: 60px;
}
.campus-life-section .facility-card p {
  color: #555;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 30px;
  padding-right: 20px;
}
.campus-life-section .facility-card .read-more-btn {
  position: absolute;
  bottom: 25px;
  right: 25px;
  width: 45px;
  height: 45px;
  background-color: #125875;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-size: 0.9rem;
}
.campus-life-section .facility-card .read-more-btn:hover {
  background: #ff7f50;
  color: #fff;
  transform: scale(1.1);
}
.campus-life-section .facility-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border-color: rgba(255, 127, 80, 0.3);
}
.campus-life-section .facility-card:hover .icon-box {
  background: #ff7f50;
  color: #fff;
  transform: rotateY(180deg);
}
.campus-life-section .facility-card:hover .read-more-btn {
  color: white;
  background: #ff7f50;
}
.campus-life-section .facility-card.highlight {
  border: 1px dashed rgba(255, 127, 80, 0.4);
  background: linear-gradient(145deg, #ffffff, #fff7f4);
}

@media (max-width: 768px) {
  .campus-life-section {
    padding: 50px 0;
  }
  .campus-life-section .facility-card .card-content {
    padding: 30px 20px;
  }
}
.career-development-section {
  background-color: #fff5f3;
  padding: 60px 0;
}
.career-development-section .program-card {
  background-color: #ffffff;
  border: 1px solid rgba(255, 115, 80, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
  height: 100%;
}
.career-development-section .program-card .icon-wrapper {
  background-color: #fff5f3;
  color: #ff7350;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}
.career-development-section .program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(255, 115, 80, 0.15);
  border-color: #ff7350;
}
.career-development-section .program-card:hover .icon-wrapper {
  background-color: #ff7350;
  color: #ffffff;
}
.career-development-section .program-card .card-title {
  font-weight: 600;
  color: #333;
  font-size: 1.15rem;
}
.career-development-section .program-card .card-text {
  color: #666;
  line-height: 1.6;
}

.placement-stats-section {
  background-color: #fcfcfc;
}
.placement-stats-section .text-blue {
  color: #1e5a7b;
}
.placement-stats-section .text-coral {
  color: #ff7f50;
}
.placement-stats-section .border-coral {
  border-color: #ff7f50 !important;
}
.placement-stats-section .stat-item {
  background: #fff;
  border-left: 3px solid #1e5a7b;
  transition: transform 0.2s ease;
}
.placement-stats-section .stat-item:hover {
  transform: translateX(5px);
  background-color: #fafafa;
}
.placement-stats-section .contact-card {
  background: #fff;
}
.placement-stats-section .contact-card .icon-box {
  width: 32px;
  height: 32px;
  background-color: rgba(30, 90, 123, 0.08);
  color: #1e5a7b;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 0.9rem;
}

.sticky-contact-sidebar {
  position: fixed;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sticky-contact-sidebar .contact-item {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  color: #fff;
  text-decoration: none;
  border-radius: 8px 0 0 8px;
  transition: all 0.3s ease;
  min-width: 55px;
  width: 100%;
  transform: translateX(calc(100% - 55px));
}
.sticky-contact-sidebar .contact-item:hover {
  transform: translateX(0);
  padding-right: 20px;
}
.sticky-contact-sidebar .contact-item.bg-blue {
  background-color: #1e5a7b;
}
.sticky-contact-sidebar .contact-item.bg-teal {
  background-color: #1a8a81;
}
.sticky-contact-sidebar .contact-item.bg-orange {
  background-color: #ff7f50;
}
.sticky-contact-sidebar .contact-item.bg-dark-teal {
  background-color: #0e7069;
}
.sticky-contact-sidebar .contact-item.bg-whatsapp {
  background-color: #25d366;
}
.sticky-contact-sidebar .contact-item .details {
  margin-left: 15px;
  white-space: nowrap;
}
.sticky-contact-sidebar .contact-item .details span {
  font-weight: 600;
  font-size: 0.85rem;
}

/*# sourceMappingURL=inner-page.css.map */
