.admission {
    position: relative;
    
}

.admission img {
    object-fit: cover;
    height: 100%; /* Full screen height */
}

.admission-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(91, 90, 90, 0.6); /* Full overlay */
    display: flex;
    align-items: end;
    
}

.admission-info {
    padding-left: 20px;
}
.admission-info h2{
    font-size: 2rem;
}
.admission-info h4 {
    font-size: 2rem;
    letter-spacing: 3px;
}
.admission-info h5{
    font-size: 1rem;
}
/* Registration form */
.registration-form {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    padding: 20px;
    width: 350px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.registration-form h5 {
    text-align: center;
    font-weight: bold;
    color: #3652A5;
}

/* Input fields */
.registration-form input,
.registration-form select {
    border-radius: 4px;
    border: 1px solid #ccc;
    padding: 8px;
}

/* Button Styling */
.btn-admission {
    background-color: #F5A425;
    color: #fff;
    font-weight: bold;
    border-radius: 4px;
    padding: 10px;
    transition: 0.3s ease-in-out;
}

.btn-admission:hover {
    background-color: #3652A5;
    color: #fff;
}

/* reCAPTCHA Alignment */
.recaptcha-container {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

/* Exam Details Section */
.exam-details {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.1);
}

/* Highlighting Key Info */
.exam-highlight {
    color: #F5A425;
    font-weight: 600;
}

.highlight {
    color: #3652A5;
    font-weight: 500;
}
.exam-card {
    margin: auto; /* Center alignment */
}

.exam-card p {
    color: var(--text-color);
}

.exam-card i {
    color: #d9534f; /* Bootstrap danger color (red) for icons */
    margin-right: 8px;
}

.exam-card .text-danger {
    font-size: 17px;
}
.table-head{
    background-color: #3652A5;
    color: white;
}
/* mini navbar */
/* Styling for the Side Navigation */
.nav-pills .nav-link {
    background: #f8f9fa;
    color: #3652A5;
    padding: 12px 15px;
    margin-bottom: 10px;
    text-align: left;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    border: 1px solid #3652A5;
    border-radius: 8px;  /* Smooth rounded corners */
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0px 0px 10px 0px rgb(164, 164, 164);
}

.nav-pills .nav-link i {
    font-size: 22px; /* Adjust icon size */
    transition: transform 0.3s ease-in-out;
}

.nav-pills .nav-link:hover {
    background: #3652A5;
    color: #fff;
}

.nav-pills .nav-link:hover i {
    transform: scale(1.1); /* Slight zoom effect on hover */
}

.nav-pills .nav-link.active {
    background: #3652A5;
    color: #fff;
    border-color: #3652A5;
}

.tab-pane-title{
    font-size: 20px;
}
/* Content Section */
.tab-content {
    background: #fff;
    padding: 20px;
    border: 1px solid #3652A5;
    min-height: 200px;
    box-shadow:0px 0px 10px 0px rgb(164, 164, 164);
}
.eligibility-subheading {
    font-size: 17px;
    color: var(--text-color);
;
    margin-bottom: 10px;
    font-weight: 600;
}

/* List Styling */
/* General List Styling */
.eligibility-list {
    padding-left: 0;
    list-style: none; /* Remove default bullets */
}
.eligibility-list p{
    display: block;
    font-size: 17px;
    color: #3652A5; /* Blue color */
    margin-bottom: 5px;
    padding-left: 10px;
}
.eligibility-list li {
    position: relative;
    padding-left: 30px; /* Space for tick mark */
    margin-bottom: 10px;
    font-size: 17px;
    color: var(--text-color);
;
}

.eligibility-list li::before {
    content: "\f00c"; /* Font Awesome check icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900; /* Ensures solid icon */
    font-size: 17px;
    color: #3652A5; /* Blue color */
    position: absolute;
    left: 0;
    top: 2px;
}

.eligibility-nested-list li {
    font-size: 14px;
    color: #555;
}

/* Pagination Button Styling */
.eligibility-pagination {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.eligibility-btn {
    padding: 10px 20px;
    font-size: 17px;
    font-weight: bold;
    border-radius: 50%;
    transition: 0.3s ease-in-out;
    border: none;
}

.eligibility-btn-primary {
    background: #3652A5;
    color: #fff;
}

.eligibility-btn-primary:hover {
    background: #F5A425;
}

.eligibility-btn-secondary {
    background: #3652A5;
    color: #fff;
}

.eligibility-btn-secondary:hover {
    background: #F5A425;
}
/* fee */
.eligibility-fee-table {
    width: 100%;
    border-collapse: collapse;
}

.eligibility-fee-table th, 
.eligibility-fee-table td {
    padding: 12px;
    text-align: center;
    border: 1px solid #ddd;
}

.eligibility-fee-table th {
    background-color: #3652A5;
    color: white;
}

.table-total {
    background-color: #f8f9fa;
    font-weight: bold;
}
.eligibility-note {
    background: #f8f9fa;
     padding: 18px;
    border-left: 6px solid #3652A5;
    font-size: 15px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
}

.eligibility-note h4 {
    font-size: 22px;
    font-weight: 600;
    color: #3652A5;
    margin-bottom: 10px;
}

.eligibility-note ul {
    list-style: none;
    padding: 0;
}

.eligibility-note ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 8px;
    line-height: 1.6;
}

.eligibility-note ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    position: absolute;
    left: 0;
    top: 3px;
    color: #3652A5;
    font-weight: bold;
    font-size: 17px;
}
.admission-procedure {
    max-width: 850px;
    margin: 40px auto;
    padding: 25px;
    background: #ffffff;
    border-radius: 50px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.12);
    border-left: 5px solid #3652A5;
}

.admission-procedure h2 {
    font-size: 26px;
    font-weight: 700;
    color: #3652A5;
    text-align: center;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.admission-procedure h4 {
    font-size: 20px;
    color: #E29420;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.admission-timeline {
    list-style: none;
    padding: 0;
    position: relative;
}

.admission-timeline::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #3652A5;
}

.admission-timeline li {
    position: relative;
    padding: 15px 20px 15px 55px;
    margin-bottom: 15px;
    background: #F3F5FA;
    transition: all 0.3s ease-in-out;
}

.admission-timeline li:hover {
    background: #E0E5F6;
    transform: translateX(5px);
}

.admission-timeline li::before {
    content: "✔";
    position: absolute;
    left: 10px;
    top: 18px;
    font-size: 17px;
    color: #3652A5;
    font-weight: bold;
    background: #fff;
    padding: 5px;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.admission-timeline li strong {
    color: #2A3B8F;
    font-weight: 600;
    display: block;
    font-size: 17px;
    margin-bottom: 5px;
}

.admission-timeline li a {
    color: #3652A5;
    font-weight: 600;
    text-decoration: none;
}

.admission-timeline li a:hover {
    text-decoration: underline;
}
/* General Button Styling */
.btn-admiss{
    display: inline-block;
    padding: 12px 24px;
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 6px;
    transition: all 0.3s ease-in-out;
    border: none;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.btn-admiss {
    background: linear-gradient(135deg, #3652A5, #2A3F7E);
    color: #fff;
    clip-path: polygon(10% 0%, 90% 0%, 100% 10%, 100% 90%, 90% 100%, 10% 100%, 0% 90%, 0% 10%);
    box-shadow: 0px 4px 10px rgba(54, 82, 165, 0.4);
}
.btn-admiss:hover {
    background:transparent;
    color: #3652A5;
    border: 2px solid #3652A5;

}
.btn-prospectus {
  background: linear-gradient(135deg, #3652A5, #2A3F7E);
  box-shadow: 0px 4px 10px rgba(54, 82, 165, 0.4);
}
.btn-prospectus:hover {
  background: transparent;
  color: #3652A5;
  border: 2px solid #3652A5;
}

.btn-form {
  background: linear-gradient(135deg, #0F9D58, #0B703C);
  box-shadow: 0px 4px 10px rgba(15, 157, 88, 0.4);
}
.btn-form:hover {
  background: transparent;
  color: #0F9D58;
  border: 2px solid #0F9D58;
}

.btn-calendar {
  background: linear-gradient(135deg, #F4A261, #E76F51);
  box-shadow: 0px 4px 10px rgba(244, 162, 97, 0.4);
}
.btn-calendar:hover {
  background: transparent;
  color: #E76F51;
  border: 2px solid #E76F51;
}

.btn-brochure {
  background: linear-gradient(135deg, #8338EC, #3A0CA3);
  box-shadow: 0px 4px 10px rgba(131, 56, 236, 0.4);
}
.btn-brochure:hover {
  background: transparent;
  color: #8338EC;
  border: 2px solid #8338EC;
}


@media (max-width: 768px) {
    .admission-overlay {
        position: relative !important;
        height: auto !important;
        background-color: transparent;
    }
    
    .admission-info {
        padding-left: 0px;
    }
    .admission-info h2{
        padding: 10px;
        font-size: 17px;
        color: var(--primary-color);
    }
    .admission-info h4, .admission-info h5 {
        padding-bottom: 4px;
        font-size: 12px;
        letter-spacing: 1px;
        color: var(--text-color);
    }
    .registration-form{
        padding: 10px;
    }
    .eligibility-btn {
        width: 48%;
    }
    .nav-pills .nav-link {
        text-align: center;
        padding: 10px;
    }
    .admission-timeline li {
        padding: 10px 10px 1px 42px;
        font-size: 12px;
    }
    .admission-timeline li::before{
        font-size: 10px;
    }
    .admission-procedure h4{
        font-size: 15px;
    }
    .admission-procedure h2{
        font-size: 17px;
    }
    .heading-style-phd{
    font-size: 1rem !important;
}

}
.recaptcha-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .error-message {
    color: red;
    font-size: 12px;
    display: block;
  }
  
.heading-style-phd{
    font-size: 1.7rem;
    color: var(--primary-color);
    letter-spacing: 2px;
    font-weight: 700;
}