* {
        font-family: inherit ;
}

/*HEADER WRAPPER*/
.container{
	max-width: 100% !important;
    padding-left: 28px;
    padding-right: 28px;
	}

.auth-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
/*  LOGIN BUTTON  */
.main-button-login {
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 22px;
  height: 38px;
  border-radius: 8px;
  border: 1.5px solid rgba(2, 55, 96, 0.28);
  color: #023760;
  background: #fff;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
}

/* Continuous sweep shine */
.main-button-login::before {
  content: '';
  position: absolute;
  top: 0; left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(2, 55, 96, 0.07) 40%,
    rgba(255, 255, 255, 0.65) 50%,
    rgba(2, 55, 96, 0.07) 60%,
    transparent 100%
  );
  animation: login-shine 2.8s ease-in-out infinite;
}


@keyframes login-shine {
  0%   { left: -120%; }
  40%  { left:  130%; }
  100% { left:  130%; }
}

/* Top gloss line */
.main-button-login::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.9), transparent);
}

.main-button-login:hover {
  border-color: #023760;
  box-shadow: 0 4px 16px rgba(2, 55, 96, 0.15);
  transform: translateY(-1px);
}

/*SIGN UP BUTTON  */
.main-button-register{
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 22px;
  height: 38px;
  border-radius: 8px;
  border: none;
  background: #2C2B72;
  color: #fff;
  position: relative;
  overflow: hidden;
  transition: background 0.22s, transform 0.2s;
  white-space: nowrap;
}

/* Sweep shine on signup */
.main-button-register::before {
  content: '';
  position: absolute;
  top: 0; left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.08) 40%,
    rgba(255,255,255,0.22) 50%,
    rgba(255,255,255,0.08) 60%,
    transparent 100%
  );
  animation: signup-shine 2.8s ease-in-out infinite;
  animation-delay: 0.6s;
}

@keyframes signup-shine {
  0%   { left: -120%; }
  40%  { left:  130%; }
  100% { left:  130%; }
}

/* Top gloss */
.main-button-register::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
}

.main-button-register:hover {
  background: #034a82;
  transform: translateY(-1px);
  color: #fff;
}


@keyframes textColor {
    0%, 100% { color: #023760; }
    50%       { color: #e8750a; }
}

@keyframes arrowColor {
    0%, 100% { color: #e8750a; }
    50%       { color: #023760; }
}

@keyframes arrowRight {
    0%, 100% { transform: translateX(0px); }
    50%       { transform: translateX(7px); }
}

@keyframes arrowLeft {
    0%, 100% { transform: translateX(0px); }
    50%       { transform: translateX(-7px); }
}

@keyframes borderColor {
    0%, 100% { border-color: #266098; }
    50%       { border-color: #e8750a; }
}

#blinking-text {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    padding: 0 15px;
    height: 38px;
    border: 1.5px solid #266098;
    border-radius: 8px;
    animation: textColor 1.4s ease-in-out infinite,
    borderColor 1.4s ease-in-out infinite;
}

#blinking-text:hover {
    animation-play-state: paused;
}

#blinking-text:hover .arrow-right,
#blinking-text:hover .arrow-left {
    animation-play-state: paused;
}

.arrow-right {
    display: inline-block;
    animation: arrowColor 1.4s ease-in-out infinite,
    arrowRight 1.4s ease-in-out infinite;
}

.arrow-left {
    display: inline-block;
    animation: arrowColor 1.4s ease-in-out infinite,
    arrowLeft 1.4s ease-in-out infinite;
}

/* ---------------banner--------- */
.guest-banner {
    background: url(../img/guest-bannerBg.png) no-repeat center center;
    background-size: cover;
    padding: 40px 0 40px 0;
    position: relative;
    overflow: hidden;
    background-position: center;
}

/* LEFT TEXT */
.banner-left {
  padding: 10px 0 10px 0;
}

.banner-tag {
  color: #e8750a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.banner-title {
  font-size: 38px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 14px;
}

.banner-title span {
  color: #e8750a;
}

.banner-sub {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 28px;
}

/* BUTTONS */
.banner-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-primary-banner {
  background: #e8750a;
  color: #fff;
  padding: 11px 26px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: background 0.2s;
}
.btn-primary-banner:hover {
  background: #df8500;
  color: #fff;
}
.btn-outline-banner {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.6);
  padding: 11px 26px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: border-color 0.2s;
}
.btn-outline-banner:hover {
  border-color: #fff;
  color: #fff;
}

/* STATS BAR */
.banner-stats-grid {
display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: start;
    border-radius: 12px 12px 0 0;
    margin-top: 30px;
    gap: 15px;
    width: 650px;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 25px 25px;
  width: 100%;
  background: #fff;
  border-radius: 8px;
}

.stat-card-mid {
  border-left: 1px solid #e8e8e8;
  border-right: 1px solid #e8e8e8;
}
.stat-icon {
  width: 48px;
  height: 48px;
  background: #f0f2ff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #3b30c4;
  flex-shrink: 0;
}
.stat-text {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-size: 26px;
  font-weight: 800;
  color: #e8750a;
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: #888;
  font-weight: 600;
  margin-top: 3px;
}

/* HORIZONTAL TABS*/
.guest_facultyTab{
box-shadow: 0 4px 4px #0d1b3e1f;
}
.horizontal-tabs {
    background: #1a2a6c;
    padding: 0 28px !important;
    gap: 0;
    flex-wrap: nowrap;
    overflow-x: auto;
}

.horizontal-tabs .nav-item {
    padding: 0 !important;
}

.horizontal-tabs .nav-link {
    background: transparent !important;
    color: #ffffffb0 !important;
    border-radius: 0 !important;
    padding: 10px 18px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
    transition: all 0.2s;
    box-shadow: none !important;
}

.horizontal-tabs .nav-link:hover {
    color: #fff !important;
    background: rgba(255,255,255,0.08) !important;
}

.horizontal-tabs .nav-link.active {
    background: rgba(255,255,255,0.12) !important;
    color: #fff !important;
    border-bottom: 3px solid #e8750a !important;
}

.horizontal-tabs .nav-link i {
    color: inherit;
    font-size: 13px;
}

/* TAB CONTENT AREA*/
.container-inr {
    background: #F5F5F5;
    box-shadow: 0 4px 20px 1px rgba(0,0,0,.06), 0 1px 4px rgba(0,0,0,.08) !important;
    border-radius: 8px;
}

.tab-content.horizontal-tab-content {
    background: #fff;
    border-radius: 0 0 8px 8px;
    width: 100%;
    min-height: 450px;
    padding: 24px 20px !important;
}

.input-group-text {
    color: #fff;
    background-color: #2C2B72;
    border: 1px solid #2C2B72;
}
.table thead tr th {
    background: #2c2b72 !important;
    color: #fff;
}
/* ----apply section--- */
.guest_apply {
  background: #f4f6fa;
  padding: 40px 0 40px;
}

.apply-heading {
  text-align: center;
  font-size: 26px;
  font-weight: 800;
  color: #2c2b72;
  margin-bottom: 40px;
}


/* STEPS ROW */
.apply-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
}

/*SINGLE STEP*/
.apply-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* DASHED CONNECTOR */
 .step-connector {
    flex: 1;
    height: 68px;
    display: flex;
    align-items: center;
}
.step-connector img {
    width: 100%;
    object-fit: fill;
    opacity: 1;
}
/*CIRCLE*/
.step-circle-outer {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px dashed #7f77dd;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.step-circle-outer.step-active {
  border-style: solid;
  border-color: #4a3fbf;
}

.step-circle-inner {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(90deg, #402fa1 0%, #1a2a6c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}

/* TEXT */
.step-title {
    font-size: 14px;
    font-weight: 600;
    color: #2c2b72;
    margin: 14px 0 6px;
    line-height: 1.3;
}

.step-desc {
  font-size: 12px;
  color: #666;
  line-height: 1.6;
  margin: 0 auto;
}
/* -----about us--- */
 .about_guest {
    background: #fff;
    padding: 50px 0px;
  }

  .about_guest .row {
    display: flex;
    align-items: center;
    gap: 40px;
  }

  /* LEFT */
  .about-left {
    flex: 0 0 500px;
    max-width: 500px;
  }

  .about-tag {
    font-size: 12px;
    font-weight: 700;
    color: #e8750a;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
  }

  .about-heading {
    font-size: 28px;
    font-weight: 800;
    color: #2c2b72;
    line-height: 1.25;
    margin-bottom: 16px;
  }

  .about-desc {
    font-size: 13px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 28px;
  }

  .feature-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
  }

  .feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ede9fe, #dbeafe);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(99, 102, 241, 0.2);
  }

  .feature-icon svg {
    width: 20px;
    height: 20px;
  }

  .feature-text h4 {
    font-size: 13px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 4px;
  }

  .feature-text p {
    font-size: 12px;
    color: #64748b;
    line-height: 1.55;
  }

  /* RIGHT */
  .about-right {
    flex: 1;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
  }

  .about-right img.main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    display: block;
  }

  .stat-badge {
    position: absolute;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 12px 18px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  }

  .stat-badge .stat-number {
    font-size: 22px;
    font-weight: 900;
    color: #0f172a;
    line-height: 1;
  }

  .stat-badge .stat-label {
    font-size: 11px;
    color: #64748b;
    font-weight: 600;
    margin-top: 3px;
  }

  .badge-top-left { top: 16px; left: 16px; }

  .badge-bottom-right {
    bottom: 16px;
    right: 16px;
    background: #3730a3;
  }

  .badge-bottom-right .stat-number { color: #fff; }
  .badge-bottom-right .stat-label { color: #c7d2fe; }

/* ----apply section----- */

  .latest_vacancies { background: #f0f4f8; padding: 40px 0; }

  .section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
  }

  .section-title {
    font-size: 22px;
    font-weight: 800;
    color: #2c2b72; 
    }

  .view-all-btn {
    border: 1.5px solid #d1d5db;
    background: #fff;
    color: #0f172a;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 8px;
    cursor: pointer;
  }

  .vacancies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .vacancy-card {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    min-height: 225px;
    
  }

  .card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px;
  }

  .badge-new {
    background: #fff4e0;
    color: #d97706;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
  }

  .card-subject {
    font-size: 12px;
    color: #2c2b72;
    font-weight: 700;
  }
  .card-title { font-size: 15px; font-weight: 900; color: #0f172a; margin-bottom: 4px; }
  .card-university { font-size: 12px; color: #64748b; font-weight: 600; margin-bottom: 14px; }

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.card-tags .tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    transition: all 0.3s ease;
}

.card-tags .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

/* Vacancy Tag */
.tag-posts {
    background: #eef7ff;
    color: #0d6efd;
    border: 1px solid #cfe2ff;
}

.tag-posts .dot {
    background: #0d6efd;
}

/* Staff Type Tag */
.tag-teaching {
    background: #ecfdf3;
    color: #198754;
    border: 1px solid #cdeed9;
}

.tag-teaching .dot {
    background: #198754;
}

/* Hover Effect */
.card-tags .tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

  .card-divider { border: none; border-top: 1.5px solid #8a8d8f; margin-bottom: 14px; }

  .cards-footer { display: flex; align-items: center; justify-content: space-between; }
  .closes-label { font-size: 12px; color: #ef4444; font-weight: 700; }

  .apply-btnn {
    background: #3730a3;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 9px 22px;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
  }
#cmpled_sec_main_sldr .owl-carousel {
    position: relative;
}

#cmpled_sec_main_sldr .owl-nav {
    position: absolute;
    top: -50px;           /* adjust based on your layout */
    right: 0;
    display: flex;
    gap: 10px;
}

#cmpled_sec_main_sldr .owl-nav button {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #e8750a !important;
    color: #fff !important;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

#cmpled_sec_main_sldr .owl-nav button:hover {
    background: #e8750a !important;
}
#cmpled_sec_main_sldr .carousel-inner>.item>img, #cmpled_sec_main_sldr .carousel-inner>.item>a>img {
	display: block;
	height: auto;
	max-width: 100%;
	line-height: 1;
	width: 100%;

}

/* -----contact Us---- */

  .contact_support { background: #fff; padding: 40px 0; }

  .contact-header { text-align: center; margin-bottom: 36px; }
  .contact-header h2 { font-size: 24px; font-weight: 800; color: #2c2b72; margin-bottom: 8px; }
 /*  .contact-header p { font-size: 13.5px; color: #64748b; font-weight: 500; } */

  .contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }

  .contact-card {
    background: #f4f6fa;
    border-radius: 14px;
    padding: 15px 20px;
    border: 1.5px solid #dde3ee;
  }

  .card-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
  }

  .card-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: linear-gradient(135deg, #ede9fe, #dbeafe);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(99, 102, 241, 0.2);
  }

  .card-icon svg { width: 20px; height: 20px; }
  .card-label { font-size: 13.5px; font-weight: 800; color: #0f172a; }
  .card-content { font-size: 12.5px; color: #475569; line-height: 1.7; font-weight: 500; }

  .card-link {
    display: inline-block;
    margin-top: 10px;
    font-size: 12.5px;
    font-weight: 700;
    color: #f97316;
    text-decoration: none;
    cursor: pointer;
  }
 /*  ----footer--- */
 
      .module_text span {
        font-size: 17px;
        color: #fff;
        padding: 0;
        border-radius: 5px;
        font-family: "Roboto", sans-serif;
        margin-bottom: 1px;
    }
     .logoText p {
         border-top: 2px solid #eb8300;
         font-family: "Roboto", sans-serif;
         font-size: 16px;
     }
      .logo-content img {
         height: 60px;
         position: relative;
          filter: invert(0) brightness(500);
     }
.footer::before {
    content: ""; /* REQUIRED */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../img/clear-5.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: .1;
    z-index: 0; 
}
.new_user p {
    display: flex;
    align-items: center;
}
.guest_reg{
	background: #fff;
    border-radius: 8px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
    padding: 30px 30px;
    max-width: 1070px;
    margin: 0 auto;
}

/* --------loggedin pages----- */
.candidate-corner-section{
	background: #F7F9FE;
}

/* === LEFT SIDEBAR === */


.tabs-width h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    width: 100%;
    margin-bottom: 16px;
}

.tabs-width h4 span {
    display: flex;
    align-items: center;
    gap: 8px;
}


.notice-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    text-align: center;
    color: #888;
    font-size: 13px;
}

/* === RIGHT CONTENT PANEL === */
.tab-content {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.tabs-content-width {
    width: 100%;
}

/* === DETAIL STEPS HEADER === */
.section-names-style-1 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 0;
}

.tab-content-inr-style > h4 {
    background: #1a3fad !important;
    border-radius: 8px 8px 0 0;
    padding: 14px 20px !important;
}

.tab-content-inr-style > h4 span {
    color: #fff !important;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.3px;
}



/* ROWS  */
.rows-style {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 16px;
    border-bottom: 1px solid #f0f0f0;
    background: #fff;
    transition: background 0.2s;
    counter-increment: step-counter;
}

.rows-style:hover {
    background: #f5f8ff;
}

/* Hide original arrow icon */
.rows-style .svg-inline--fa {
    display: none;
}

/* Numbered blue circle */
.rows-style::before {
    content: counter(step-counter, decimal-leading-zero);
    min-width: 34px;
    height: 34px;
    background: #1a3fad;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

/* Arrow on right */
.rows-style::after {
    content: '›';
    font-size: 22px;
    color: #1a3fad;
    font-weight: 700;
    margin-left: auto;
    padding-left: 12px;
}

.tab-content-inr-style {
    counter-reset: step-counter;
    border-radius: 0 0 8px 8px;
    overflow: hidden;
    border: 1px solid #e8eaf0;
    border-top: none;
}

.rows-style .data {
    margin: 0;
    font-size: 13.5px;
    color: #333;
    line-height: 1.5;
    flex: 1;
}
.tabs-width .section-names-style-1 div {
    width: 36px;
    height: 36px;
    background: #d2e2ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tabs-width .section-names-style-1 div img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* -----apply section---- */


/* ── Glass Card ── */
#vacancyList .card {
  background: #fff !important;
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
  border: 1px solid rgba(255, 255, 255, 0.78) !important;
  border-radius: 20px !important;
  box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 15px 15px;
}
#vacancyList .col-xl-4,
#vacancyList .col-lg-4,
#vacancyList .col-md-6,
#vacancyList .col-sm-12 {
  display: flex;
}



#vacancyList .card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

#vacancyList .card-body .mt-2 {
  margin-top: auto !important;
}

#vacancyList .card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 10px 36px rgba(80, 120, 200, 0.16),
    0 2px 10px rgba(80, 120, 200, 0.10) !important;
}

/* ── Coloured Top Accent Stripe (cycles through 4 colours) ── */
#vacancyList .card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0450d1, #7b5cf5);
}



/* ── Card Body ── */
#vacancyList .card-body {
  padding: .5rem;
}

/* ── College Name (card-title) ── */
#vacancyList .card-title {
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 13px !important;
  font-weight: 500 !important;
}

#vacancyList .card-title .text-success {
  background: rgba(16, 160, 120, 0.12);
  color: #0a7a5a !important;
  padding: 3px 11px;
  border-radius: 30px;
  display: inline-block;
}

#vacancyList .card-title .text-primary {
  background: rgba(90, 110, 160, 0.10);
  color: #5a6a8a !important;
  padding: 3px 11px;
  border-radius: 30px;
  display: inline-block;
  font-style: italic;
}

#vacancyList .card-title .text-primary::before {
  content: "Institution TBD";
}

/* ── Table inside card ── */
#vacancyList .card table {
  width: 100%;
  font-size: 13px;
  border-collapse: separate;
  border-spacing: 0 5px;
}

#vacancyList .card table th {
  font-weight: 400;
  color: #6a7a9a;
  vertical-align: middle;
  padding: 1px 0;
}

#vacancyList .card table td {
  color: #1a2a4a;
  font-weight: 500;
  vertical-align: middle;
  padding: 1px 4px;
}

/* ── Row icons ── */
#vacancyList .card table svg {
  width: 15px;
  height: 15px;
  vertical-align: middle;
  opacity: 0.55;
}

/* ── Icon background pills per row ── */
#vacancyList .card table tr:nth-child(1) svg { color: #3a6fd4; }
#vacancyList .card table tr:nth-child(2) svg { color: #7b5cf5; }
#vacancyList .card table tr:nth-child(3) svg { color: #7b5cf5; }
#vacancyList .card table tr:nth-child(4) svg { color: #0a8f6e; }
#vacancyList .card table tr:nth-child(5) svg { color: #b57a10; }
#vacancyList .card table tr:nth-child(6) svg { color: #b57a10; }
#vacancyList .card table tr:nth-child(7) svg { color: #c0392b; }

/* ── View Document link ── */
#vacancyList .card table a {
  color: #c0392b !important;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none !important;
  background: rgba(230, 80, 70, 0.08);
  border: 1px solid rgba(230, 80, 70, 0.25);
  padding: 3px 12px;
  border-radius: 20px;
  transition: background 0.15s;
}

#vacancyList .card table a:hover {
  background: rgba(230, 80, 70, 0.16);
}

/* ── Divider between table and button ── */
#vacancyList .card .mt-2 {
  border-top: 1px solid rgba(180, 190, 220, 0.35);
  padding-top: 0.85rem;
  margin-top: 0.85rem !important;
}

/* ── Apply Now Button ── */
#vacancyList .card .btn-success {
    /* background: linear-gradient(90deg, #0450d1, #0a3080) !important; */
    border: 1px solid #0450d1;
    border-radius: 30px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    letter-spacing: 0.2px;
    padding: 9px 0 !important;
    color: #0450d1 !important;
    box-shadow: none !important;
    transition: opacity 0.15s ease;
}

#vacancyList .card .btn-success:hover {
 background: linear-gradient(90deg, #0450d1, #0a3080) !important;
 color: #fff !important;
}

#vacancyList .card .btn-success:active {
  transform: scale(0.98);
}

#vacancyList .card .btn-secondary{
	border-radius: 30px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    letter-spacing: 0.2px;
    padding: 9px 0 !important;
    box-shadow: none !important;
}


/* all responsive css start */

@media only screen and (min-width: 1024px) and (max-width: 1199px){
.logo-section h3 {
    font-size: 17px;
}	
.logo-section p {
    & small {
        font-size: 12px;
    }
}
.main-button-login {
    padding: 4px 16px;
    font-size: 13px;
}
.main-button-register {
    padding: 4px 16px;
    font-size: 13px;
}
#blinking-text {
    padding: 4px 16px;
    font-size: 13px;
}

.banner-stats-grid {
    gap: 15px;
    width: auto;
}	
.stat-card {
    padding: 15px 15px;
}
.btn-primary-banner {
    padding: 10px 22px;
    font-size: 13px;
}
.btn-outline-banner {
    padding: 10px 22px;
    font-size: 13px;
}
.banner-title {
    font-size: 34px;
}
.tab-content-inr-style h3 {
    font-size: 18px;
}
.apply-heading {
    font-size: 24px;
}
.about-heading {
    font-size: 24px;
}
.apply-btnn {
    padding: 8px 18px;
    font-size: 12px;
}
.footer-logo-section img {
    height: 70px;
}
.logo-content img {
    height: 45px;
}
.module_text span {
    font-size: 16px;
}
.logoText p {
    font-size: 14px;
}
.para_graph{
	font-size: 14px !important;
}
.single_footer h4 {
    font-size: 18px;
}
.single_footer ul li a {
    font-size: 14px;
}
.copyright {
    padding-top: 15px;
    font-size: 14px;
}
}


@media only screen and (min-width: 768px) and (max-width: 1023px) {

.tab-content-inr-styleHeader {
    padding: 10px 10px;
}
.tab-content-inr-style h3 {
    font-size: 17px;
}
.instruction-heading {
    font-size: 18px !important;
}
.span-text {
    font-size: 11px;
}
    .logo-section h3 {
    font-size: 12px;
}
.logo-section p {
    & small {
        font-size: 10px;
    }
}
	.main-button-login {
    padding: 3px 14px;
    font-size: 12px;
    height: 35px;
}
.main-button-register {
    padding: 3px 14px;
    font-size: 12px;
     height: 35px;
}
    #blinking-text{
    padding: 3px 14px;
    font-size: 12px;
     height: 35px;
}
	
	body.sidebar_collapsed .sidebar .nav-links {
    overflow: visible;
    pointer-events: none;
}
	.login-box {
	top:57% !important;
	}
	.table tbody {
    font-size: 12px !important;
	}
	.table thead tr th {
    font-size: 12px !important;
	}
	
	div.dataTables_wrapper {
    position: relative;
	}
	.profile-pic {
    height: 122px;
    width: 129px;
    transition: all .3s ease;
    position: relative;
}

.avatar-wrapper {
    position: relative;
    height: fit-content;
    width: fit-content;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0px 0px 8px 3px #00000029;
    transition: all 0.3s ease;
    left: 0%;
}
.wel-come-card-asset h1 {
    background: #ffffffc7;
    padding: 15px;
    border-radius: 10px;
    position: absolute;
    font-size: 30px;
    width: inherit !important;
    margin:auto;
}

.fa-arrow-circle-up {
    font-size: 150px;
}
.file-message {
    font-size: 9px !important;
    color: red;
    font-weight: bold;
    letter-spacing: -0.1px;
}
	
	.profile-pic:after {
    font-family: FontAwesome;
    content: "\f007";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    font-size: 110px;
    background: #ecf0f1;
    color: #34495e;
    text-align: center;
}
	
	.logo-box .img_con {
    position: relative;
    float: left;
    width: 35px !important;
    height: 39px;
    border-radius: 50%;
    padding: 2px;
    margin-right: 0px;
}
.logo-box .img_con.logo {
    border-radius: 5px;
    width: auto;
    height: 39px;
}
    .logo-box .module_text {
        /* border-left: 2px solid #ffffff6b; */
        height: 40px;
        padding: 0 0 0 50px;
    }
.logo-box .module_text span {
    font-size: 12px;
    color: #fff;
    padding: 0;
    border-radius: 5px;
    font-family: "Roboto", sans-serif;
    margin-bottom: 1px;
}
.logo-box .module_text p small {
    font-size: 11px;
    color: #ffffffe3;
    text-shadow: none;
}
.btn-back, a.btn-back {
    font-size: 12px !important;
    vertical-align: inherit;
    padding: 5px 20px !important;
}
.btn-submit, .btn.btn-submit, .btn.btn-success, a.btn-submit {
    font-size: 12px !important;
    vertical-align: initial;
}
div.dt-buttons {
    margin-left: 24% !important;
}
.studentprofile .user-image {
	order: 1;
    margin:10px auto;
}
.studentprofile .student-section{
	order: 2;
}

.banner-title {
    font-size: 28px;
}
.banner-tag {
    font-size: 9px;
}
.banner-sub {
    font-size: 11px;
}
.btn-primary-banner {
    padding: 8px 12px;
    font-size: 12px;
}
.btn-outline-banner {
    padding: 8px 12px;
    font-size: 12px;
}
.banner-stats-grid {
    gap: 10px;
    width: 560px;
}
.stat-card {
    padding: 15px 15px;
}
.stat-icon {
    width: 40px;
    height: 40px;
    font-size: 12px;
}
.stat-num {
    font-size: 18px;
}
.apply-heading {
    font-size: 18px;
    margin-bottom: 20px;
}
.about-heading {
    font-size: 18px;
}
.section-title {
    font-size: 18px;
}
.contact-header h2 {
    font-size: 20px;
}
.step-circle-inner {
    width: 40px;
    height: 40px;
    font-size: 12px;
}
.step-circle-outer {
    width: 56px;
    height: 56px;
}
.apply-btnn {
    padding: 6px 8px;
    font-size: 11px;
    font-weight: 700;
}
.card-title {
    font-size: 12px;
}
.copyright {
    margin-top: 0px;
    font-size: 13px;
}
.footer-logo-section img {
    height: 45px;
}
.logo-content img {
    height: 30px;
}
.module_text span {
    font-size: 12px;
}
.logoText p {
    font-size: 13px;
}
.para_graph{
	font-size: 13px !important;
}
.single_footer h4 {
    font-size: 17px;
}
.single_footer ul li a {
    font-size: 13px;
}
.single_footer .align-items-center{
	gap: 10px !important;
}
.about-left {
    flex: 0 0 100%;
    max-width: 100%;
}
.about_guest {
    padding: 40px 0px;
}
.footer-logo-section .logo-style {
    padding-bottom: 10px;
}
.vacancy-card {
    padding: 10px;
}
.card-subject {
    font-size: 11px;
}
.closes-label {
    font-size: 11px;
}
.step-title {
    font-size: 12px;
}
.step-desc {
    font-size: 11px;
}
.contact-card {
    padding: 10px 10px;
}
.card-icon {
    width: 35px;
    height: 35px;
}
.card-icon svg {
    width: 15px;
    height: 15px;
}
.card-label {
    font-size: 11.5px;
}
.card-content {
    font-size: 11.5px;
}
.navbar_responsive{
	align-items: baseline !important;
}
.tab_res_ch{
	height: auto !important;
    display: block !important;
}
.tab_res_ch .tabs-width{
	width: 100%;
	height: auto !important;
    margin-bottom: 15px;
}
.tab_res_ch .tabs-content-width {
    height: auto !important;
}
}


@media only screen and (min-width: 425px) and (max-width: 767px){

.tab-content-inr-styleHeader {
    padding: 10px 10px;
}
.tab-content-inr-style h3 {
    font-size: 17px;
}
.instruction-heading {
    font-size: 18px !important;
}
.span-text {
    font-size: 11px;
}
    .logo-section h3 {
    font-size: 14px;
}
.logo-section p {
    & small {
        font-size: 10px;
    }
}

.main-button-register {
    padding: 3px 14px;
    font-size: 12px;
    height: 35px;
}
	.main-button-login {
    padding: 3px 14px;
    font-size: 12px;
    height: 35px;
}
    #blinking-text {
    padding: 3px 14px;
    font-size: 12px;
    height: 35px;
}

.new_user span{
	    font-size: 12px;
} 
	

.instruction-heading {
    font-size: 15px !important;
}
.span-text {
    font-size: 10px;
}
.logoText{
	display: none;
}
.footer .ps-5{
	padding-left: 0.5rem !important;
}
.single_footer h4 {
    font-size: 17px;
}
.single_footer ul li a {
    line-height: 28px;
    font-size: 14px;
}
.footer-logo-section img {
    height: 70px;
}
.logo-content img {
    height: 40px;
}
.para_graph{
	font-size: 14px !important;
}
.footer-logo-section .logo-style {
    padding-bottom: 10px;
}
.about-left {
    flex: 0 0 100%;
    max-width: 100%;
}
.contact-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
}
.step-connector {
    display: none;
}
.apply-steps {
    flex-direction: column;
    align-items: center;
}
    .apply-step {
        margin-bottom: 10px;
        width: 243px;
    }
.vacancy_filter{
	display: block !important;
}
.vacancy_filter .search_bar{
	margin-bottom: 10px;
}
.vacancy_serach{
	display: block !important;
}
.guest-banner {
    padding: 20px 0 20px 0;
    background-position: left;
}
.banner-tag {
    font-size: 9px;
}
.banner-title {
    font-size: 26px;
}
.banner-sub {
    font-size: 11px;
    margin-bottom: 18px;
}
.btn-primary-banner {
    padding: 8px 12px;
    font-size: 12px;
}
.btn-outline-banner {
    padding: 8px 12px;
    font-size: 12px;
}
.banner-stats-grid {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 20px;
    gap: 0px;
    width: auto;
}
.stat-card {
    gap: 16px;
    padding: 10px 0px;
    width: 100%;
    background: #1a010100;
}
.stat-icon {
    font-size: 20px;
    color: #fdfdff;
    background: #f0f2ff2b;
    backdrop-filter: blur(15px);
}
.stat-card-mid {
    border-left: inherit;
    border-right: inherit;
}
.container {
    padding-left: 15px;
    padding-right: 15px;
}
.horizontal-tabs {
    padding: 0 15px !important;
}
.tab-content {
    padding: 10px 15px !important;
}
.guest_apply {
    padding: 30px 0 30px;
}
.apply-heading {
    font-size: 19px;
    margin-bottom: 20px;
}
.step-circle-inner {
    width: 40px;
    height: 40px;
    font-size: 12px;
}
.step-circle-outer {
    width: 56px;
    height: 56px;
}
.about_guest {
    padding: 30px 0px;
}
.about-heading {
    font-size: 19px;;
}
.latest_vacancies {
    padding: 30px 0;
}
.section-title {
    font-size: 19px;
}
.apply-btnn {
    padding: 8px 12px;
    font-size: 12px;
}
.contact_support {
    padding: 30px 0;
}
.contact-header {
    margin-bottom: 20px;
}
.contact-header h2 {
    font-size: 19px;
}
.modal.show .modal-dialog {
    width: auto !important;
}
.modal-header h5{
    font-size: 17px !important;
}
#captchaImage {
    height: auto !important;
    width: auto !important; 
}
.captcha{
	margin-top: 14px !important;
	justify-content: center;
}
.re_label{
	text-align: center;
}
.tab_res_ch{
	height: auto !important;
    display: block !important;
}
.tab_res_ch .tabs-width{
	width: 100%;
	height: auto !important;
    margin-bottom: 15px;
}
.tab_res_ch .tabs-content-width {
    height: auto !important;
}
.navbar_responsive{
	    align-items: baseline !important;
} 
}
@media only screen and (min-width: 320px) and (max-width: 424px) {
	.main-button-login {
    padding: 3px 14px;
    font-size: 12px;
    height: 35px;
}
.main-button-register{
	    padding: 3px 14px;
    font-size: 12px;
    height: 35px;
}
  #blinking-text{
	    padding: 3px 14px;
    font-size: 12px;
    height: 35px;
}
.auth-links {
    gap: 3px;
    margin-top: 5px;
}

.new_user span{
	    font-size: 11px;
} 


.instruction-heading {
    font-size: 15px !important;
}
.span-text {
    font-size: 10px;
}

	.logo-box .module_text {
    display: none !important;
}
.content {
    overflow-y: scroll !important;
}
.breadcrumb{
	display:none !important;
}

h5{
	font-size:14px !important;
}

.card {
    padding: 10px 5px;
}
.tab-responsive{
	flex-direction:column;
	row-gap:10px;
}

.card .card-header .card-title {
    font-size: 12px !important;
    margin: 0;
    color: #000;
    font-weight: 500;
    margin-bottom: 10px;
}

.studentprofile{
	display:flex;
	flex-direction:column;
}

.studentprofile .user-image {
	order: 1;
    margin:10px auto;
}
.studentprofile .student-section{
	order: 2;
}

.header_right {
    margin: 0;
    padding: 0 0px 0 0px !important;
    list-style: none;
    margin-left: 5px;
    display: flex;
    align-items: center;
    position: relative;
    top: 0px;
}
.logo-box .img_con {
    position: relative;
    float: left;
    width: 35px;
    height: 38px;
    border-radius: 50%;
    padding: 2px;
    margin-right: 0px ;
}
.logo-box .img_con.logo {
    border-radius: 5px;
    width: auto;
    height: 40px;
}
.breadcrumb {
    float: right;
    font-size: 9px;
    margin: 0 0 0 0;
}
.table thead tr th {
    font-size: 12px !important;
}
.table tbody {
    font-size: 9px;
}
.btn-back, a.btn-back, .btn-submit{
	font-size:10px !important;
}

button.dt-button {
    font-size: 7px !important;
    padding: 3px 10px !important;
}
.content {
    position: relative;
    height: calc(100vh - 100px);
    width: 100%;
    transition: all 0.5s ease;
    padding: 5px 18px 10px;
    overflow-y: auto;
    overflow-x: hidden;
}

div.dataTables_wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
}

.card .card-body label {
    display: block;
    font-size: 9px;
    font-weight: 500;
    margin: 0;
    line-height: 17px;
    text-align: left;
}

div.dt-buttons {
    float: left !important;
    margin-left: calc(50% - 73px) !important;
    text-align: center !important;
    position: unset !important;
}
.dataTables_wrapper .dataTables_info {
    clear: both;
    float: left;
    font-size: 9px;
    margin-left: 0px;
    font-weight: 500;
    padding-top: 0.5em;
    margin-bottom: 5px;
    color: #0093ff !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.next, .dataTables_wrapper .dataTables_paginate .paginate_button.previous {
    color: #0b5a65 !important;
    font-size: 12px;
    font-weight: 500;
}
div#DataTables_Table_0_info {
    font-size: 10px;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    /* background: linear-gradient(129deg, rgba(0, 13, 177, 1) 0%, rgba(0, 204, 255, 1) 100%); */
    color: #ffffff !important;
    border: 0px;
    padding:0px;
}
.dataTables_wrapper .dataTables_paginate .paginate_button {
	padding:0px;
}
.avatar-wrapper {
    height: 145px;
    width: 145px;
    margin: auto;
    left:0;
}

.fa-arrow-circle-up {
    position: absolute;
    font-size: 178px;
    top: -17px;
    left: 0;
    text-align: center;
    opacity: 0;
    transition: all .3s ease;
    color: #34495e;
}

.student-info li {
    font-size: 11px !important;
}
.span-name {
    font-size: 11px !important;
}
.profile-pic {
    height: 125%;
    top: -34px;
}
.btn-res{
	margin-top: 100px;
}
.file-message {
    font-size: 9px !important;
}

.wel-come-card-asset h1 {
    background: #ffffffc7;
    padding: 15px;
    border-radius: 10px;
    position: absolute;
    top: 15px;
    left: 10px;
    right: 10px;
    bottom: 15px;
    font-size: 24px;
}

.instruction-heading {
    font-size: 15px !important;
}
.span-text {
    font-size: 10px;
}
.logoText{
	display: none;
}
.footer .ps-5{
	padding-left: 0.5rem !important;
}
.single_footer h4 {
    font-size: 17px;
}
.single_footer ul li a {
    line-height: 28px;
    font-size: 14px;
}
.footer-logo-section img {
    height: 70px;
}
.logo-content img {
    height: 40px;
}
.para_graph{
	font-size: 14px !important;
}
.footer-logo-section .logo-style {
    padding-bottom: 10px;
}
.about-left {
    flex: 0 0 100%;
    max-width: 100%;
}
.contact-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
}
.step-connector {
    display: none;
}
.apply-steps {
    flex-direction: column;
    align-items: center;
}
    .apply-step {
        margin-bottom: 10px;
        width: 243px;
    }
.vacancy_filter{
	display: block !important;
}
.vacancy_filter .search_bar{
	margin-bottom: 10px;
}
.vacancy_serach{
	display: block !important;
}
.guest-banner {
    padding: 20px 0 20px 0;
    background-position: left;
}
.banner-tag {
    font-size: 9px;
}
.banner-title {
    font-size: 26px;
}
.banner-sub {
    font-size: 11px;
    margin-bottom: 18px;
}
.btn-primary-banner {
    padding: 8px 12px;
    font-size: 12px;
}
.btn-outline-banner {
    padding: 8px 12px;
    font-size: 12px;
}
.banner-stats-grid {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 20px;
    gap: 0px;
    width: auto;
}
.stat-card {
    gap: 16px;
    padding: 10px 0px;
    width: 100%;
    background: #1a010100;
}
.stat-icon {
    font-size: 20px;
    color: #fdfdff;
    background: #f0f2ff2b;
    backdrop-filter: blur(15px);
}
.stat-card-mid {
    border-left: inherit;
    border-right: inherit;
}
.container {
    padding-left: 15px;
    padding-right: 15px;
}
.horizontal-tabs {
    padding: 0 15px !important;
}
.tab-content {
    padding: 10px 15px !important;
}
.guest_apply {
    padding: 30px 0 30px;
}
.apply-heading {
    font-size: 19px;
    margin-bottom: 20px;
}
.step-circle-inner {
    width: 40px;
    height: 40px;
    font-size: 12px;
}
.step-circle-outer {
    width: 56px;
    height: 56px;
}
.about_guest {
    padding: 30px 0px;
}
.about-heading {
    font-size: 19px;;
}
.latest_vacancies {
    padding: 30px 0;
}
.section-title {
    font-size: 19px;
}
.apply-btnn {
    padding: 8px 12px;
    font-size: 12px;
}
.contact_support {
    padding: 30px 0;
}
.contact-header {
    margin-bottom: 20px;
}
.contact-header h2 {
    font-size: 19px;
}
.modal.show .modal-dialog {
    width: auto !important;
}
.modal-header h5{
    font-size: 17px !important;
}
#captchaImage {
    height: auto !important;
    width: auto !important; 
}
.captcha{
	margin-top: 14px !important;
	justify-content: center;
}
.re_label{
	text-align: center;
}
.tab-content-inr-style h3 {
    font-size: 16px;
}
.tab-content-inr-styleHeader {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
}
.logo-section h3 {
    font-size: .7rem;
}
.logo-section p small {
    font-size: 9px;
}
.tab-content-outer {
    padding: 24px 0px !important;
}
.acc-header-btn {
    padding: 10px 10px !important;
}
.tab_res_ch{
	height: auto !important;
    display: block !important;
}
.tab_res_ch .tabs-width{
	width: 100%;
	height: auto !important;
    margin-bottom: 15px;
}
.tab_res_ch .tabs-content-width {
    height: auto !important;
}
.tab_res_ch .tab-content{
	    padding: 10px 10px !important;
}
.navbar_responsive{
	    align-items: baseline !important;
} 
}
/* all responsive css end */
